    /* =========================================================
       GreenHub Mobile App — Dark Glassmorphism Theme
       Matches web.html's dark aesthetic
    ========================================================= */
    :root {
      --bg-canvas: #0e1f16;
      --forest: #1b3d2f;
      --forest-light: #2c5946;
      --forest-dark: #0f2219;
      --leaf: #628f48;
      --leaf-bright: #7ab55c;
      --leaf-pale: rgba(98,143,72,0.15);
      --terracotta: #bf562e;
      --terracotta-pale: rgba(191,86,46,0.15);
      --gold: #caa028;
      --ink: rgba(255,255,255,0.9);
      --ink-muted: rgba(255,255,255,0.5);
      --border: rgba(255,255,255,0.12);
      --bg-panel: rgba(255,255,255,0.07);
      --bg-card: rgba(255,255,255,0.08);
      --shadow-sm: 0 4px 16px rgba(0,0,0,0.25);
      --shadow-md: 0 12px 32px rgba(0,0,0,0.35);
      --shadow-lg: 0 24px 64px rgba(0,0,0,0.45);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      outline: none;
      -webkit-tap-highlight-color: transparent;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      background-color: var(--bg-canvas);
      color: var(--ink);
      font-family: 'Hind Siliguri', sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    html {
      height: -webkit-fill-available;
    }

    /* Animated background (matches web.html) */
    body {
      display: flex;
      justify-content: center;
      min-height: 100vh;
      min-height: 100dvh;
      min-height: -webkit-fill-available;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(98,143,72,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(27,61,47,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(15,34,25,0.8) 0%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: radial-gradient(circle, rgba(98,143,72,0.06) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
      z-index: 0;
    }

    /* Core App Container */
    .app {
      width: 100%;
      max-width: 480px;
      min-height: 100vh;
      min-height: 100dvh;
      min-height: -webkit-fill-available;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
      overflow: hidden; /* prevent stage-track overflow */
    }

    @media (min-width: 481px) {
      body {
        align-items: center;
        padding: 40px 16px;
      }

      .app {
        min-height: 0;
        height: min(860px, 90vh);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255,255,255,0.12);
        overflow: hidden;
        background: rgba(14,31,22,0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
      }

      .screen {
        overflow-y: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }
      .screen::-webkit-scrollbar { display: none; }
    }

    /* Header */
    header.top {
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(14,31,22,0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
      position: relative;
      z-index: 10;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      filter: drop-shadow(0 0 8px rgba(122,181,92,0.4));
    }

    .brand-name {
      font-family: 'Tiro Bangla', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--leaf-bright);
      line-height: 1.2;
    }

    .brand-sub {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.4);
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* Progress bar segments */
    .stage-track {
      display: flex;
      gap: 6px;
      padding: 8px 20px 6px;
      flex-shrink: 0;
      background: rgba(14,31,22,0.5);
      width: 100%;
      box-sizing: border-box;
    }

    .stage-track .seg {
      flex: 1;
      height: 4px;
      border-radius: 10px;
      background: rgba(255,255,255,0.1);
      transition: var(--transition);
      overflow: hidden;
      position: relative;
    }

    .stage-track .seg.done {
      background: var(--leaf);
    }

    .stage-track .seg.active {
      background: var(--leaf);
      box-shadow: 0 0 8px rgba(122,181,92,0.5);
    }

    /* Screen fills remaining space so buttons go to bottom correctly — merged below */

    /* Screens */
    .screen {
      display: none;
      flex: 1 1 0%;
      flex-direction: column;
      padding: 20px 24px 0;
      overflow-x: hidden;
    }

    .screen.visible {
      display: flex;
    }

    .screen.visible.slide-forward {
      animation: slideInRight 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .screen.visible.slide-backward {
      animation: slideInLeft 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(28px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-28px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ── SCREEN 1: WELCOME ── */
    .hero-title {
      font-family: 'Tiro Bangla', serif;
      font-size: 1.85rem;
      color: white;
      margin: 16px 0 10px;
      line-height: 1.3;
    }

    .hero-title span { color: var(--leaf-bright); }

    .hero-sub {
      color: rgba(255,255,255,0.55);
      font-size: 0.92rem;
      line-height: 1.65;
      margin-bottom: 24px;
    }

    /* Feature steps */
    .steps {
      display: flex;
      flex-direction: column;
      margin-bottom: 24px;
      flex-shrink: 0;
      gap: 4px;
    }

    .step {
      display: flex;
      gap: 16px;
      position: relative;
    }

    .step-rail {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
    }

    .step-leaf {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(98,143,72,0.15);
      color: var(--leaf-bright);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      border: 1px solid rgba(98,143,72,0.3);
    }

    .step:hover .step-leaf {
      background: rgba(98,143,72,0.3);
      box-shadow: 0 0 16px rgba(122,181,92,0.3);
    }

    .step-thread {
      width: 1px;
      flex: 1;
      background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.1) 0 4px, transparent 4px 8px);
      margin: 6px 0;
    }

    .step-body {
      padding-bottom: 20px;
    }

    .step:last-child .step-body { padding-bottom: 0; }

    .step-body h3 {
      margin: 4px 0 4px;
      font-size: 0.98rem;
      font-weight: 700;
      color: white;
    }

    .step-body p {
      margin: 0;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.55;
    }

    /* ── BUTTONS ── */
    .btn {
      border: none;
      cursor: pointer;
      font-family: 'Hind Siliguri', sans-serif;
      font-weight: 700;
      font-size: 0.98rem;
      border-radius: var(--radius-md);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: var(--transition);
      user-select: none;
      flex-shrink: 0;
    }

    .btn:active { transform: scale(0.96); }

    .btn-primary {
      background: var(--leaf);
      color: white;
      box-shadow: 0 4px 20px rgba(98,143,72,0.35);
    }

    .btn-primary:hover {
      background: var(--leaf-bright);
      box-shadow: 0 6px 28px rgba(122,181,92,0.5);
    }

    .btn-primary:disabled {
      opacity: 0.4;
      box-shadow: none;
      cursor: not-allowed;
    }

    .btn-outline {
      background: rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.8);
      border: 1.5px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
    }

    .btn-outline:hover { background: rgba(255,255,255,0.12); color: white; }

    .btn-ghost {
      background: rgba(98,143,72,0.12);
      color: var(--leaf-bright);
      border: 1px solid rgba(98,143,72,0.25);
    }

    .btn-ghost:hover { background: rgba(98,143,72,0.22); }

    .btn-full { width: 100%; }

    .screen-actions {
      margin-top: auto;
      padding: 16px 0 env(safe-area-inset-bottom, 20px);
      padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
    }

    /* ── SCREEN 2: UPLOAD ── */
    .capture-title {
      font-family: 'Tiro Bangla', serif;
      font-size: 1.45rem;
      color: white;
      margin: 8px 0 6px;
    }

    .capture-sub {
      color: rgba(255,255,255,0.5);
      font-size: 0.88rem;
      margin-bottom: 18px;
      line-height: 1.5;
    }

    .form-group {
      margin-bottom: 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex-shrink: 0;
    }

    .form-label {
      font-size: 0.84rem;
      font-weight: 700;
      color: rgba(255,255,255,0.65);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .input-control {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      border: 1.5px solid rgba(255,255,255,0.12);
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 0.95rem;
      background: rgba(255,255,255,0.07);
      color: white;
      transition: var(--transition);
      backdrop-filter: blur(8px);
    }

    .input-control::placeholder { color: rgba(255,255,255,0.25); }

    .input-control:focus {
      border-color: var(--leaf);
      box-shadow: 0 0 0 3px rgba(98,143,72,0.2);
    }

    .capture-actions {
      margin-top: auto;
      padding: 14px 0 24px;
      width: 100%;
      flex-shrink: 0;
    }

    /* Upload Frame */
    .frame {
      border: 1.5px dashed rgba(98,143,72,0.35);
      border-radius: var(--radius-lg);
      background: rgba(98,143,72,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      margin-bottom: 16px;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .frame.empty {
      min-height: 140px;
      flex: 1;
      cursor: pointer;
    }

    .frame.empty:hover {
      border-color: var(--leaf-bright);
      background: rgba(98,143,72,0.12);
      box-shadow: 0 0 24px rgba(122,181,92,0.12);
    }

    .frame:not(.empty) {
      padding: 12px;
      align-items: stretch;
    }

    .frame-hint-icon {
      margin-bottom: 10px;
      color: var(--leaf-bright);
      opacity: 0.7;
      transition: var(--transition);
    }

    .frame.empty:hover .frame-hint-icon {
      transform: translateY(-3px);
      opacity: 1;
    }

    .frame .hint {
      color: rgba(255,255,255,0.45);
      font-size: 0.95rem;
      text-align: center;
      padding: 0 20px;
      line-height: 1.5;
    }

    /* Scan overlay */
    .scanline {
      position: absolute;
      left: 4%;
      right: 4%;
      height: 3px;
      border-radius: 4px;
      background: linear-gradient(90deg, transparent, var(--leaf-bright), transparent);
      box-shadow: 0 0 10px var(--leaf-bright);
      animation: scan 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
      display: none;
      z-index: 10;
    }

    .frame.scanning .scanline { display: block; }

    @keyframes scan {
      0%   { top: 8%; }
      50%  { top: 92%; }
      100% { top: 8%; }
    }

    /* Gallery Grid */
    .gallery-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 1 / 1;
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-item button {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(0,0,0,0.7);
      border: none;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      transition: var(--transition);
    }

    .gallery-item button:hover { background: var(--terracotta); }

    .gallery-add {
      aspect-ratio: 1 / 1;
      width: 100%;
      border-radius: var(--radius-md);
      border: 1.5px dashed rgba(122,181,92,0.3);
      background: rgba(98,143,72,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
      color: var(--leaf-bright);
      font-size: 0.72rem;
      font-weight: 700;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .gallery-add:hover {
      border-color: var(--leaf-bright);
      background: rgba(98,143,72,0.14);
    }

    .gallery-note {
      background: rgba(98,143,72,0.1);
      border: 1px solid rgba(98,143,72,0.2);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      color: var(--leaf-bright);
      font-size: 0.78rem;
      font-weight: 600;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      line-height: 1.4;
      flex-shrink: 0;
    }

    .gallery-note-text {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .gallery-note-badge {
      background: var(--leaf);
      color: white;
      padding: 2px 8px;
      border-radius: 12px;
      font-size: 0.72rem;
      white-space: nowrap;
    }

    /* ── SCREEN 3: RESULTS ── */
    .result-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--leaf-bright);
      opacity: 0.85;
      margin-bottom: 6px;
    }

    .result-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
    }

    .result-title {
      font-family: 'Tiro Bangla', serif;
      font-size: 1.45rem;
      color: white;
      margin: 0;
    }

    .thumb-strip {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-md);
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.2);
      box-shadow: var(--shadow-sm);
    }

    .thumb-strip img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slip-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 12px;
      margin-bottom: 14px;
      border-bottom: 1.5px dashed rgba(255,255,255,0.12);
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
    }

    /* Loading animation */
    .loading-box {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 30px 10px;
    }

    .loading-text {
      color: rgba(255,255,255,0.65);
      font-size: 0.95rem;
      text-align: center;
    }

    .scan-wrap {
      position: relative;
      width: 120px;
      height: 150px;
    }

    .scan-leaf {
      width: 100%;
      height: 100%;
      transform-origin: center;
      animation: floatLeaf 3s ease-in-out infinite;
    }

    @keyframes floatLeaf {
      0%   { transform: translateY(0px) rotate(-3deg) scale(1); }
      50%  { transform: translateY(-8px) rotate(3deg) scale(1.03); }
      100% { transform: translateY(0px) rotate(-3deg) scale(1); }
    }

    .scan-outline  { stroke: #f2641a; stroke-width: 2; stroke-linejoin: round; }
    .scan-stem     { stroke: #d6490f; stroke-width: 3.5; stroke-linecap: round; fill: none; }
    .scan-spine    { stroke: #d6490f; stroke-width: 2.2; stroke-linecap: round; fill: none; }
    .scan-vein     { stroke: #f07830; stroke-width: 1.8; stroke-linecap: round; opacity: 0.8; fill: none; }

    .scan-sweep {
      animation: sweepMove 2.6s ease-in-out infinite;
    }

    @keyframes sweepMove {
      0%   { transform: translateY(-10px); opacity: 0; }
      15%  { opacity: 1; }
      85%  { opacity: 1; }
      100% { transform: translateY(112px); opacity: 0; }
    }

    .magnifier {
      transform-box: view-box;
      transform-origin: 0 0;
      animation: magnifierMove 3.6s ease-in-out infinite;
    }

    .magnifier-lens   { fill: rgba(255,255,255,0.15); stroke: var(--leaf-bright); stroke-width: 2.6; }
    .magnifier-glint  { stroke: rgba(255,255,255,0.8); stroke-width: 2; stroke-linecap: round; fill: none; }
    .magnifier-handle { stroke: var(--leaf-bright); stroke-width: 4; stroke-linecap: round; }

    @keyframes magnifierMove {
      0%, 12%   { transform: translate(60px, 40px) rotate(-6deg) scale(1); }
      22%, 32%  { transform: translate(60px, 40px) rotate(-6deg) scale(1.1); }
      42%       { transform: translate(85px, 60px) rotate(8deg) scale(1); }
      55%, 65%  { transform: translate(85px, 60px) rotate(8deg) scale(1.1); }
      75%       { transform: translate(35px, 85px) rotate(-4deg) scale(1); }
      88%, 96%  { transform: translate(35px, 85px) rotate(-4deg) scale(1.1); }
      100%      { transform: translate(60px, 40px) rotate(-6deg) scale(1); }
    }

    .detect-ring {
      fill: none;
      stroke: #fb923c;
      stroke-width: 1.6;
      opacity: 0;
      transform-box: fill-box;
      transform-origin: center;
      animation: detectRing 3.6s ease-in-out infinite;
    }

    .detect-dot {
      fill: #fb923c;
      opacity: 0;
      transform-box: fill-box;
      transform-origin: center;
      animation: detectPulse 3.6s ease-in-out infinite;
    }

    @keyframes detectPulse {
      0%, 19% { opacity: 0; transform: scale(0.5); }
      25%     { opacity: 1; transform: scale(1.2); }
      30%     { opacity: 1; transform: scale(1); }
      38%, 51%{ opacity: 0; transform: scale(0.5); }
      58%     { opacity: 1; transform: scale(1.2); }
      63%     { opacity: 1; transform: scale(1); }
      71%, 84%{ opacity: 0; transform: scale(0.5); }
      91%     { opacity: 1; transform: scale(1.2); }
      96%     { opacity: 1; transform: scale(1); }
      100%    { opacity: 0; transform: scale(0.5); }
    }

    @keyframes detectRing {
      0%, 19% { opacity: 0; transform: scale(0.6); }
      25%     { opacity: 0.85; transform: scale(1); }
      35%     { opacity: 0; transform: scale(2.2); }
      51%     { opacity: 0; transform: scale(0.6); }
      58%     { opacity: 0.85; transform: scale(1); }
      68%     { opacity: 0; transform: scale(2.2); }
      84%     { opacity: 0; transform: scale(0.6); }
      91%     { opacity: 0.85; transform: scale(1); }
      100%    { opacity: 0; transform: scale(2.2); }
    }

    /* Result Cards — glass style */
    .card {
      border-radius: var(--radius-md);
      padding: 18px;
      margin-bottom: 14px;
      position: relative;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      transition: var(--transition);
    }

    .card:hover { border-color: rgba(255,255,255,0.18); }

    .card-problem {
      background: rgba(191,86,46,0.1);
      border-color: rgba(191,86,46,0.28);
      padding-right: 90px;
    }

    .card-problem::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 16px;
      right: 16px;
      height: 6px;
      background-image: radial-gradient(circle at 4px 3px, rgba(255,255,255,0.08) 3px, transparent 3.5px);
      background-size: 12px 6px;
      background-repeat: repeat-x;
    }

    .card-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.77rem;
      letter-spacing: 0.06em;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .card-problem .card-label { color: #fb923c; }

    .card-problem .card-text {
      color: rgba(255,255,255,0.85);
      font-size: 0.95rem;
      line-height: 1.65;
      font-weight: 500;
    }

    /* Stamp */
    .dx-stamp {
      position: absolute;
      top: 18px;
      right: 12px;
      width: 66px;
      height: 66px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 2px solid currentColor;
      transform: rotate(-10deg);
      font-family: 'Tiro Bangla', serif;
      font-weight: 700;
      font-size: 0.68rem;
      line-height: 1.15;
      text-align: center;
      opacity: 0.9;
      user-select: none;
      box-shadow: inset 0 0 0 1px currentColor;
      background: rgba(255,255,255,0.02);
    }

    .dx-stamp::after {
      content: "";
      position: absolute;
      inset: 3px;
      border: 1px dashed currentColor;
      border-radius: 50%;
    }

    .dx-stamp span {
      position: relative;
      z-index: 2;
      font-size: 0.68rem;
      font-weight: 700;
    }

    .dx-stamp.sev-high { color: #f87171; }
    .dx-stamp.sev-mid  { color: #fbbf24; }
    .dx-stamp.sev-low  { color: var(--leaf-bright); }

    .card-solution {
      background: rgba(98,143,72,0.09);
      border-color: rgba(98,143,72,0.25);
    }

    .card-solution .card-label { color: var(--leaf-bright); }

    .sol-block { margin-bottom: 18px; }
    .sol-block:last-child { margin-bottom: 0; }

    .sol-name {
      font-weight: 700;
      color: var(--leaf-bright);
      font-size: 0.98rem;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.15);
    }

    .tag-best { background: var(--leaf); color: white; border: none; }

    .env-harm-box {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      background: rgba(191,86,46,0.15);
      border: 1px solid rgba(191,86,46,0.28);
      color: #fb923c;
      font-size: 0.85rem;
      line-height: 1.5;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .env-harm-box svg   { flex-shrink: 0; margin-top: 2px; }
    .env-harm-box strong{ font-weight: 700; }
    .env-harm-box span  { color: rgba(255,255,255,0.75); }

    .steps-list {
      margin: 0;
      padding-left: 20px;
      font-size: 0.9rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.8);
    }

    .steps-list li { margin-bottom: 4px; }

    .plain-text {
      font-size: 0.9rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.75);
    }

    .error-box {
      background: rgba(191,86,46,0.12);
      border: 1px solid rgba(191,86,46,0.28);
      border-radius: var(--radius-sm);
      padding: 14px;
      font-size: 0.88rem;
      color: #fb923c;
      line-height: 1.5;
      margin-top: 14px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
