    :root {
      --bg-primary: #f7f5f2;
      --bg-secondary: #f0ede8;
      --bg-elevated: #fdfcfa;
      --gold-primary: #1c3a2a;
      --gold-light: #3d7a58;
      --gold-dark: #2d5a40;
      --gold-glow: rgba(28, 58, 42, 0.06);
      --text-primary: #1a1a18;
      --text-secondary: #4a4a44;
      --text-muted: #8a8a80;
      --border-subtle: rgba(28, 58, 42, 0.12);
      --accent-rose: #b84040;
      --accent-sage: #2d7a5a;
      --accent-blue: #3d7a58;
      --accent-purple: #2d5a40;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      font-size: 18px;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      min-height: 100vh;
      line-height: 1.7;
    }

    /* Ambient glow */
    .ambient {
      position: fixed;
      top: -30%;
      left: 50%;
      transform: translateX(-50%);
      width: 140%;
      height: 80vh;
      background: radial-gradient(ellipse at center, rgba(28, 58, 42, 0.04) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    /* ====== NEW HERO + INPUT SECTION ====== */
    .hero-input-section {
      padding: 120px 40px 60px;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* 金色荧光背景 */
    .hero-glow {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 150%;
      height: 70vh;
      background: radial-gradient(ellipse at center top, rgba(28, 58, 42, 0.06) 0%, rgba(28, 58, 42, 0.03) 30%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    /* ====== FLOW SECTION (第二屏) ====== */
    .flow-section {
      width: 100%;
      max-width: 920px;
      margin-top: 80px;
      z-index: 1;
      text-align: center;
    }
    .flow-section-title {
      font-family: 'Lora', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 400;
      font-style: italic;
      color: var(--text-primary);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .flow-section-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.2rem;
      color: var(--text-secondary);
      opacity: 0.5;
      margin-bottom: 16px;
    }
    .flow-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      text-align: left;
    }
    .flow-step {
      display: flex;
      gap: 24px;
      padding: 32px 0;
      position: relative;
    }
    .flow-step:first-child {
      padding-top: 0;
    }
    .flow-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 79px;
      bottom: 0;
      width: 1px;
      border-left: 1px dashed rgba(28, 58, 42, 0.15);
      height: 28px;
      transform: translateY(100%);
      z-index: 0;
    }
    .flow-step-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      width: 160px;
      gap: 10px;
    }
    .flow-step-num {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(28, 58, 42, 0.25);
      color: #1c3a2a;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      background: var(--bg-primary);
      z-index: 1;
    }
    .flow-step-right {
      flex: 1;
    }
    .flow-step-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #1c3a2a;
      margin-bottom: 0;
      text-align: center;
      line-height: 1.3;
    }
    .flow-bubble {
      background: var(--bg-elevated);
      border-radius: 14px;
      padding: 20px 24px;
      font-size: 1.1rem;
      line-height: 1.65;
      color: var(--text-primary);
    }
    .flow-analysis {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .flow-analysis-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 1.05rem;
      line-height: 1.55;
      color: var(--text-secondary);
    }
    .flow-analysis-item .emoji {
      flex-shrink: 0;
      font-size: 1.15rem;
    }
    .flow-note {
      margin-top: 12px;
      font-size: 0.95rem;
      color: var(--text-muted);
      font-style: italic;
    }
    .flow-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }
    .flow-tag {
      font-size: 0.88rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 20px;
      background: rgba(138, 184, 138, 0.08);
      color: #8ab88a;
      border: 1px solid rgba(138, 184, 138, 0.2);
    }
    .flow-tag-warn {
      background: rgba(232, 124, 124, 0.1);
      color: #e87c7c;
      border: 1px solid rgba(232, 124, 124, 0.25);
    }
    .flow-bubble-typing {
      display: inline-flex;
      padding: 16px 24px;
    }
    .flow-typing {
      display: flex;
      gap: 5px;
      align-items: center;
    }
    .flow-typing .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--text-muted);
      animation: flowTypingBounce 1.4s ease-in-out infinite;
    }
    .flow-typing .dot:nth-child(2) { animation-delay: 0.2s; }
    .flow-typing .dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes flowTypingBounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30% { transform: translateY(-4px); opacity: 1; }
    }
    /* Desktop: hide mobile-only elements */
    .flow-mobile-only { display: none; }
    .flow-title-mobile { display: none; }

    @media (max-width: 768px) {
      /* Show/hide toggles */
      .flow-desktop-only { display: none !important; }
      .flow-mobile-only { display: flex !important; }
      .flow-title-desktop { display: none; }
      .flow-title-mobile {
        display: inline;
        font-family: 'DM Sans', sans-serif !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 0.75rem !important;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255,255,255,0.3) !important;
      }

      .flow-section {
        max-width: 100%;
        margin-top: 40px;
      }
      .flow-section-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
      }
      .flow-section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
      }

      /* Compact rows */
      .flow-step {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 5px 0;
      }
      .flow-step:not(:last-child)::after {
        display: none;
      }

      /* Left: number + label inline */
      .flow-step-left {
        width: 100px;
        min-width: 100px;
        flex-direction: row;
        gap: 6px;
        align-items: center;
        flex-shrink: 0;
      }
      .flow-step-num {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.65rem;
      }
      .flow-step-label {
        font-size: 0.68rem;
        margin-bottom: 0;
        text-align: left;
        line-height: 1.25;
      }
      .flow-step:nth-child(3) .flow-step-label {
        font-size: 0.48rem;
      }
      .flow-step-label .label-small {
        font-size: 0.52rem;
      }

      /* Right: content cards with color coding */
      .flow-step-right {
        flex: 1;
        border-radius: 12px;
        padding: 10px 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      /* ROW 1 - warm amber/gold */
      .flow-step:nth-child(1) .flow-step-num {
        background: rgba(201,165,92,0.2);
        color: #2d5a40;
        border-color: rgba(201,165,92,0.3);
      }
      .flow-step:nth-child(1) .flow-step-label { color: #2d5a40; }
      .flow-step:nth-child(1) .flow-step-right {
        background: rgba(201,165,92,0.05);
        border: 1px solid rgba(201,165,92,0.1);
      }

      /* ROW 2 - cool silver/white */
      .flow-step:nth-child(2) .flow-step-num {
        background: rgba(200,200,210,0.15);
        color: #b0b0b8;
        border-color: rgba(200,200,210,0.2);
      }
      .flow-step:nth-child(2) .flow-step-label { color: #b0b0b8; }
      .flow-step:nth-child(2) .flow-step-right {
        background: rgba(200,200,210,0.04);
        border: 1px solid rgba(200,200,210,0.1);
      }
      .flow-tag-orange {
        background: rgba(200,200,210,0.1) !important;
        color: #b0b0b8 !important;
      }

      /* ROW 3 - muted sage green */
      .flow-step:nth-child(3) .flow-step-num {
        background: rgba(120,160,120,0.15);
        color: #8aab8a;
        border-color: rgba(120,160,120,0.2);
      }
      .flow-step:nth-child(3) .flow-step-label { color: #8aab8a; }
      .flow-step:nth-child(3) .flow-step-right {
        background: rgba(120,160,120,0.04);
        border: 1px solid rgba(120,160,120,0.1);
      }
      .flow-tags-step3 .flow-tag {
        background: rgba(120,160,120,0.1) !important;
        color: #8aab8a !important;
      }

      /* Bubble & tags compact */
      .flow-bubble {
        font-size: 0.75rem;
        padding: 0;
        line-height: 1.45;
        border-radius: 0;
        background: transparent;
        font-style: italic;
        color: #ccc;
      }
      .flow-tags {
        gap: 5px;
        margin-top: 0;
      }
      .flow-tag {
        font-size: 0.62rem;
        padding: 3px 8px;
      }
      /* Hide step 1 warning tag on mobile */
      .flow-tag-warn { display: none; }
    }

    .hero-header-new {
      text-align: center;
      margin-bottom: 16px;
      margin-top: 120px;
      z-index: 1;
    }

    .main-title-new {
      font-family: 'Lora', serif;
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 12px;
      line-height: 1.1;
      letter-spacing: -1px;
      max-width: 800px;
      white-space: nowrap;
      margin: 0 auto 12px;
    }
    .main-title-new .mobile-br { display: none; }
    @media (max-width: 600px) {
      .main-title-new { white-space: normal; }
      .main-title-new .mobile-br { display: inline; }
    }
    .hero-subtitle {
      font-size: clamp(1.15rem, 2.5vw, 1.4rem);
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      max-width: 620px;
      margin: 0 auto 8px;
      line-height: 1.45;
    }
    .hero-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin: 40px 0 80px;
    }
    .hero-step-card {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-step-num {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 2px solid #1c3a2a;
      color: #1c3a2a;
      font-size: 1.3rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-step-text {
      font-size: 1.45rem;
      color: rgba(74,74,68,0.8);
      font-weight: 500;
    }
    .hero-step-arrow {
      color: #1c3a2a;
      opacity: 0.5;
      font-size: 1.5rem;
    }
    @media (max-width: 600px) {
      .hero-step-arrow { display: none; }
      .hero-steps { gap: 14px; margin: 24px 0 45px; }
      .hero-step-num { width: 32px; height: 32px; font-size: 0.9rem; }
      .hero-step-text { font-size: 0.95rem; }
    }

    .main-tagline-new {
      font-size: clamp(0.9rem, 2vw, 1.1rem);
      color: var(--text-secondary);
      font-weight: 300;
      line-height: 1.6;
      text-align: center;
      max-width: 500px;
      margin: 0 auto;
    }

    /* 主输入卡片 — 宽度与 carousel slides 对齐 */
    .main-input-card {
      width: 100%;
      max-width: 720px;
      margin: 0 auto;
      z-index: 1;
      position: relative;
    }

    /* Step 标签 — 上方多留空(与上一区域分开)，下方紧贴(与自己的内容靠近) */
    .step-label {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: none;
      color: #1c3a2a;
      margin-bottom: 8px;
      margin-top: 28px;
      text-align: left;
    }

    /* 第一个 step-label 不需要顶部间距 */
    .main-input-card > .step-label:first-of-type {
      margin-top: 0;
    }

    .step-subtext {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 2px;
      line-height: 1.3;
    }

    .section-separator {
      width: 100%;
      max-width: 1100px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(28, 58, 42, 0.15), transparent);
      margin: 60px 0 12px 0;
    }

    .examples-section-title {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      color: rgba(74, 74, 68, 0.25);
      text-transform: uppercase;
      text-align: center;
      margin: 80px 0 16px 0;
    }

    .step-inline {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      opacity: 0.7;
      margin-right: 6px;
    }

    /* 左侧浮动提示 - 跟随滚动动画 */
    .steps-guide {
      position: fixed;
      left: 30px;
      top: 200px;
      width: 160px;
      background: rgba(28, 58, 42, 0.03);
      border: 1px solid rgba(28, 58, 42, 0.08);
      border-radius: 12px;
      padding: 14px;
      opacity: 0.5;
      transition: top 0.4s ease-out, opacity 0.3s ease;
      z-index: 100;
    }

    .steps-guide:hover {
      opacity: 0.85;
    }

    .steps-guide-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #1c3a2a;
      margin-bottom: 12px;
    }

    .steps-guide-item {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .steps-guide-item span {
      color: #1c3a2a;
      font-weight: 600;
    }

    .steps-guide-link:hover {
      text-decoration: underline;
      opacity: 0.8;
    }

    @media (max-width: 1400px) {
      .steps-guide {
        display: none;
      }
    }

    /* 主输入框 */
    .main-input-wrapper {
      width: 100%;
    }

    .main-textarea {
      width: 100%;
      min-height: 120px;
      max-height: 260px;
      overflow-y: auto;
      padding: 22px;
      background: var(--bg-elevated);
      border: 2px solid rgba(28, 58, 42, 0.20);
      border-radius: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.35rem;
      line-height: 1.6;
      color: var(--text-primary);
      resize: none;
      box-shadow: 0 0 20px rgba(28, 58, 42, 0.06);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .main-textarea:focus {
      outline: none;
      border-color: #1c3a2a;
      box-shadow: 0 0 30px rgba(28, 58, 42, 0.12);
    }

    .main-textarea::placeholder {
      color: rgba(28, 58, 42, 0.12);
    }

    /* ====== STEP 4 - DEEPER ANALYSIS (整个卡片可点击) ====== */
    .step4-section {
      margin-top: 24px;
      padding-top: 0;
    }

    .step4-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 24px;
      background: linear-gradient(135deg, rgba(28, 58, 42, 0.05), rgba(28, 58, 42, 0.02));
      border: 1px solid rgba(28, 58, 42, 0.12);
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .step4-card:hover {
      border-color: #1c3a2a;
      background: linear-gradient(135deg, rgba(28, 58, 42, 0.09), rgba(28, 58, 42, 0.04));
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(28, 58, 42, 0.08);
    }

    .step4-card-content {
      flex: 1;
    }

    .step4-card-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: #1c3a2a;
      margin-bottom: 2px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .optional-badge {
      font-size: 0.6rem;
      padding: 2px 8px;
      background: rgba(28, 58, 42, 0.10);
      border-radius: 10px;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 500;
    }

    .step4-card-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .step4-arrow {
      flex-shrink: 0;
      font-size: 1.3rem;
      color: #1c3a2a;
      opacity: 0.6;
      transition: all 0.2s ease;
    }

    .step4-card:hover .step4-arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    /* Steps guide optional tag */
    .steps-optional-tag {
      font-size: 0.55rem;
      padding: 1px 5px;
      background: rgba(28, 58, 42, 0.12);
      border-radius: 6px;
      color: #1c3a2a !important;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 400 !important;
    }


    .context-textarea {
      width: 100%;
      min-height: 80px;
      padding: 14px;
      background: transparent;
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--text-primary);
      resize: vertical;
    }

    .context-textarea:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    .upload-area-small {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 50px 20px;
      background: transparent;
      border: 2px dashed rgba(28, 58, 42, 0.25);
      border-radius: 16px;
      cursor: pointer;
      color: var(--text-muted);
      transition: all 0.2s ease;
    }

    .upload-area-small:hover {
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .preview-image-small {
      max-width: 200px;
      max-height: 150px;
      border-radius: 8px;
    }

    .btn-remove {
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 0.85rem;
      cursor: pointer;
      margin-left: 12px;
    }

    .btn-remove:hover {
      color: #e74c3c;
    }

    /* Tab 切换按钮 */
    .input-tabs-new {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .tab-btn-new {
      padding: 14px 32px;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .tab-btn-new:hover {
      color: var(--text-secondary);
      border-color: rgba(28, 58, 42, 0.15);
    }

    .tab-btn-new.active {
      background: rgba(28, 58, 42, 0.08);
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .tab-btn-new svg {
      stroke: currentColor;
    }

    /* Context Row 新样式 */
    .context-row-new {
      display: flex;
      gap: 20px;
      margin-top: 12px;
      justify-content: center;
    }

    .context-item-new {
      flex: 1;
      max-width: 300px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .context-label-inline {
      font-size: 0.8rem;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      flex-shrink: 0;
      min-width: auto;
    }

    .context-label-new {
      display: none;
    }

    .context-item-new select {
      flex: 1;
      padding: 14px 44px 14px 20px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      font-size: 1rem;
      color: var(--text-primary);
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      transition: all 0.3s ease;
    }

    .context-item-new select:focus {
      outline: none;
      border-color: #2d5a40;
    }

    /* Analyze 按钮 */
    .submit-section-new {
      text-align: center;
      margin-top: 16px;
    }

    .cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .try-example-banner {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      background: rgba(28, 58, 42, 0.08);
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 30px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: #1c3a2a;
      white-space: nowrap;
      animation: bannerBreath 2.5s ease-in-out infinite;
      transition: opacity 0.3s ease;
    }

    @keyframes bannerBreath {
      0%, 100% { opacity: 0.7; transform: translateX(0); }
      50% { opacity: 1; transform: translateX(4px); }
    }

    .btn-analyze {
      padding: 16px 60px;
      background: #1c3a2a;
      border: none;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(28, 58, 42, 0.15);
    }

    .btn-analyze:hover {
      background: #2d5a40;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(28, 58, 42, 0.20);
    }

    .promise-hint {
      margin-top: 12px;
      font-size: 1.05rem;
      color: #8a8a80;
      letter-spacing: 0.03em;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
    }
    .textarea-wrapper {
      position: relative;
      width: 100%;
    }
    .textarea-bg-hint {
      position: absolute;
      bottom: 10px;
      right: 12px;
      font-size: 0.82rem;
      color: rgba(28, 58, 42, 0.25);
      font-family: 'DM Sans', sans-serif;
      pointer-events: none;
    }

    .screenshot-direct-link {
      margin-top: 20px;
      font-size: 0.95rem;
      color: #1c3a2a;
      cursor: pointer;
      transition: all 0.2s ease;
      padding: 12px 20px;
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 24px;
      display: inline-block;
    }

    .screenshot-direct-link:hover {
      background: rgba(28, 58, 42, 0.06);
      border-color: #1c3a2a;
    }

    /* ====== STATIC PHONE COMPARISON (Hero) ====== */
    .phone-comparison-static {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 30px;
      padding: 8px 20px 16px;
      width: 100%;
      max-width: 1000px;
      margin-top: 0;
      z-index: 1;
      transform: scale(0.8);
      transform-origin: top center;
    }

    /* Each side: phone + annotations */
    .ba-side {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }
    .ba-phone-row {
      display: flex;
      gap: 6px;
      align-items: flex-start;
    }
    .ba-phone-col { flex-shrink: 0; text-align: center; }

    /* Mobile stickers — hidden on desktop */
    .ba-stickers { display: none; }

    /* Sticker styles */
    .ba-stk {
      padding: 4px 8px;
      border-radius: 8px;
      border-left: 3px solid;
      background: rgba(255,255,255,0.03);
    }
    .ba-stk-t {
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1px;
      white-space: nowrap;
    }
    .ba-stk-d {
      font-size: 0.45rem;
      line-height: 1.2;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      text-align: left;
    }
    .ba-stk.red { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); }
    .ba-stk.red .ba-stk-t { color: rgba(255, 255, 255, 0.9); }
    .ba-stk.grn { border-color: rgba(28, 58, 42, 0.35); background: rgba(28, 58, 42, 0.05); }
    .ba-stk.grn .ba-stk-t { color: rgba(28, 58, 42, 0.55); }
    .ba-phone-label {
      display: block;
      margin-top: 18px;
      font-family: 'Lora', serif;
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .ba-phone-label.before { color: rgba(255, 255, 255, 0.9); }
    .ba-phone-label.after { color: rgba(28, 58, 42, 0.55); }

    .ba-ann-sublabel {
      display: inline-block;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 16px;
      padding: 14px 32px 14px 28px;
      border-radius: 4px 0 0 4px;
      position: relative;
      margin-left: auto;
      margin-right: 0;
      width: fit-content;
      clip-path: polygon(0 50%, 20px 0, 100% 0, 100% 100%, 20px 100%);
      animation: sublabel-float 3s ease-in-out infinite;
    }
    .ba-ann-sublabel.before {
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.12);
    }
    .ba-ann-sublabel.after {
      color: #1a1a1a;
      background: linear-gradient(90deg, #c9a86a, #e3c07b);
      filter: brightness(1.1);
      box-shadow: 0 0 20px rgba(227, 192, 123, 0.25);
    }

    @keyframes sublabel-float {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50% { transform: translateY(-4px); opacity: 1; }
    }

    /* iPhone 15 Pro frame */
    .ba-device {
      width: 230px;
      height: 497px;
      position: relative;
    }
    .ba-device-frame {
      position: absolute;
      inset: 0;
      border-radius: 48px;
      background: linear-gradient(145deg, #3d3529 0%, #2a2520 30%, #1e1b17 60%, #2a2520 100%);
      border: 1px solid rgba(28, 58, 42, 0.15);
      box-shadow:
        0 0 0 0.5px rgba(28, 58, 42, 0.06),
        0 2px 4px rgba(0,0,0,0.3),
        0 12px 40px rgba(0,0,0,0.4),
        0 0 30px rgba(28, 58, 42, 0.04),
        inset 0 0.5px 0 rgba(28, 58, 42, 0.08);
    }
    .ba-btn-power {
      position: absolute; right: -2px; top: 140px;
      width: 3px; height: 52px;
      background: linear-gradient(to right, #352f28, #4a4238);
      border-radius: 0 2px 2px 0;
    }
    .ba-btn-silent {
      position: absolute; left: -2px; top: 110px;
      width: 3px; height: 18px;
      background: linear-gradient(to left, #352f28, #4a4238);
      border-radius: 2px 0 0 2px;
    }
    .ba-btn-vol-up {
      position: absolute; left: -2px; top: 145px;
      width: 3px; height: 36px;
      background: linear-gradient(to left, #352f28, #4a4238);
      border-radius: 2px 0 0 2px;
    }
    .ba-btn-vol-down {
      position: absolute; left: -2px; top: 190px;
      width: 3px; height: 36px;
      background: linear-gradient(to left, #352f28, #4a4238);
      border-radius: 2px 0 0 2px;
    }
    .ba-screen {
      position: absolute;
      top: 6px; left: 6px; right: 6px; bottom: 6px;
      border-radius: 42px;
      background: #1a1916;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .ba-island {
      width: 76px; height: 22px;
      background: #000;
      border-radius: 20px;
      position: absolute;
      top: 16px; left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      box-shadow: 0 0 0 2px #000;
    }
    .ba-island::before {
      content: '';
      position: absolute;
      top: 7px; right: 16px;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: radial-gradient(circle, #1a1a2e 30%, #0d0d15 70%);
      box-shadow: inset 0 0 1px rgba(28, 58, 42, 0.08);
    }
    .ba-statusbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 24px 0;
      height: 48px;
      font-size: 0.58rem;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      flex-shrink: 0;
    }
    .ba-statusbar .ba-clock { font-size: 0.62rem; font-weight: 700; }
    .ba-status-right { display: flex; align-items: center; gap: 3px; }
    .ba-signal-bars { display: flex; align-items: flex-end; gap: 1px; height: 10px; }
    .ba-signal-bars .bar {
      width: 2.5px; border-radius: 0.5px;
      background: rgba(255,255,255,0.85);
    }
    .ba-signal-bars .bar:nth-child(1) { height: 3px; }
    .ba-signal-bars .bar:nth-child(2) { height: 5px; }
    .ba-signal-bars .bar:nth-child(3) { height: 7px; }
    .ba-signal-bars .bar:nth-child(4) { height: 9px; }
    .ba-battery {
      width: 20px; height: 9px;
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 2px;
      position: relative;
      display: flex; align-items: center; padding: 1px;
    }
    .ba-battery::after {
      content: '';
      position: absolute; right: -3px; top: 2px;
      width: 2px; height: 4px;
      background: rgba(255,255,255,0.4);
      border-radius: 0 1px 1px 0;
    }
    .ba-battery-fill {
      width: 70%; height: 100%;
      background: rgba(255,255,255,0.85);
      border-radius: 1px;
    }
    .ba-msgnav {
      display: flex; align-items: center;
      padding: 2px 12px 6px; gap: 8px;
      flex-shrink: 0;
      border-bottom: 0.5px solid rgba(28, 58, 42, 0.06);
    }
    .ba-msgnav .ba-back { color: #0a84ff; font-size: 1.1rem; font-weight: 300; line-height: 1; }
    .ba-msgnav .ba-ava {
      width: 30px; height: 30px; border-radius: 50%;
      background: linear-gradient(135deg, #5856d6, #af52de);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 700; color: #fff;
    }
    .ba-msgnav .ba-cname { font-size: 0.72rem; font-weight: 600; color: #fff; flex: 1; }
    .ba-msgnav .ba-vid { color: #0a84ff; font-size: 0.8rem; }
    .ba-chatarea {
      padding: 4px 8px;
      display: flex; flex-direction: column; gap: 3px;
      flex: 1; overflow: hidden;
      text-align: left;
    }
    .ba-bub {
      max-width: 82%; padding: 7px 11px;
      border-radius: 18px;
      font-size: 0.95rem; line-height: 1.3;
      word-wrap: break-word;
      text-align: left;
      font-family: 'DM Sans', -apple-system, sans-serif;
      color: transparent !important;
      user-select: none;
    }
    .ba-bub.s {
      align-self: flex-end;
      background: #007aff;
      text-shadow: 0 0 2.5px rgba(255,255,255,0.92);
      border-bottom-right-radius: 4px;
      filter: saturate(0.92);
    }
    .ba-bub.r {
      align-self: flex-start;
      background: #28261f;
      text-shadow: 0 0 2.5px rgba(255,255,255,0.82);
      border-bottom-left-radius: 4px;
    }
    .ba-meta {
      font-size: 0.42rem;
      color: rgba(255,255,255,0.2);
      margin: 1px 0;
      text-align: left;
    }
    .ba-meta.right { align-self: flex-end; text-align: right; }
    .ba-typing, .bamo-typing {
      align-self: flex-start;
      background: #28261f;
      border-radius: 18px; border-bottom-left-radius: 4px;
      padding: 8px 14px;
      display: flex; gap: 4px; align-items: center;
    }
    .bamo-typing { border-radius: 10px; border-bottom-left-radius: 3px; padding: 5px 10px; gap: 3px; }
    .ba-typing .dot, .bamo-typing .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.45);
      animation: typingBounce 1.4s infinite ease-in-out;
    }
    .bamo-typing .dot { width: 4px; height: 4px; }
    .ba-typing .dot:nth-child(2), .bamo-typing .dot:nth-child(2) { animation-delay: 0.2s; }
    .ba-typing .dot:nth-child(3), .bamo-typing .dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes typingBounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30% { transform: translateY(-4px); opacity: 1; }
    }
    .ba-meta.center { align-self: center; text-align: center; margin: 4px 0; }
    .ba-inputbar {
      display: flex; align-items: center; gap: 6px;
      padding: 4px 8px 18px; flex-shrink: 0;
    }
    .ba-inputbar .ba-plus {
      width: 24px; height: 24px; border-radius: 50%;
      background: #302c24;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; color: rgba(255,255,255,0.5); flex-shrink: 0;
    }
    .ba-inputbar .ba-field {
      flex: 1; height: 30px; border-radius: 18px;
      border: 0.5px solid #3a352c; background: transparent;
      padding: 0 12px; font-size: 0.55rem; color: rgba(28, 58, 42, 0.25);
      display: flex; align-items: center;
    }
    .ba-inputbar .ba-mic { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
    .ba-home-ind {
      width: 100px; height: 4px;
      background: rgba(255,255,255,0.2); border-radius: 3px;
      position: absolute; bottom: 12px; left: 50%;
      transform: translateX(-50%);
    }

    /* Annotations */
    .ba-annotations {
      display: flex; flex-direction: column; gap: 10px;
      padding-top: 30px; max-width: 280px;
      max-height: 540px;
      overflow: visible;
    }
    .phone-comparison-static > .ba-side:first-child > .ba-annotations { padding-top: 160px !important; }
    .phone-comparison-static > .ba-side:last-child > .ba-annotations {
      padding-top: 200px !important;
      position: relative;
    }
    .phone-comparison-static > .ba-side:last-child > .ba-annotations::before {
      content: '';
      position: absolute;
      top: 80px; right: -30px; bottom: -20px; left: -40px;
      background: radial-gradient(circle at right center, rgba(255, 215, 160, 0.1), transparent 65%);
      pointer-events: none;
      z-index: -1;
    }
    .ba-ann {
      border-left: 3.5px solid; padding: 8px 12px;
      border-radius: 0 8px 8px 0;
      background: rgba(255,255,255,0.02);
    }
    .ba-ann-t {
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
      margin-bottom: 3px;
      display: flex; align-items: center; gap: 6px;
    }
    .ba-ann-d {
      font-size: 0.72rem; line-height: 1.45;
      color: rgba(255,255,255,0.65); font-weight: 300;
    }
    .ba-ann.red { border-color: rgba(255, 255, 255, 0.5); }
    .ba-ann.red .ba-ann-t { color: rgba(255, 255, 255, 0.9); }
    .ba-ann.grn { border-color: rgba(212, 175, 100, 0.75); filter: saturate(1.1) brightness(1.05); }
    .ba-ann.grn .ba-ann-t { color: rgba(212, 175, 100, 1); }

    /* Center divider */
    .ba-divider {
      width: 1px; min-height: 520px;
      background: linear-gradient(to bottom, transparent, rgba(28, 58, 42, 0.12), transparent);
      flex-shrink: 0;
    }

    /* ====== MOBILE OVERLAP — hidden on desktop ====== */
    .ba-mobile-overlap { display: none; font-size: 16px; line-height: 1.2; }

    /* Mobile overlap phone base styles */
    .bamo-phones {
      position: relative;
      width: 100%;
      height: 460px;
      margin-bottom: 16px;
    }
    .bamo-phone-before {
      position: absolute;
      top: 15px; left: 2%;
      transform: rotate(-9deg);
      z-index: 1;
    }
    .bamo-phone-after {
      position: absolute;
      top: 55px; right: 2%;
      transform: rotate(14deg);
      z-index: 2;
    }
    .bamo-label {
      font-family: 'Lora', serif;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 4px;
    }
    .bamo-label.before { color: rgba(255, 255, 255, 0.9); }
    .bamo-label.after { color: rgba(28, 58, 42, 0.50); }

    /* Device */
    .bamo-device {
      width: 130px; height: 282px;
      position: relative;
    }
    .bamo-frame {
      position: absolute; inset: 0;
      border-radius: 24px;
      background: linear-gradient(145deg, #3d3529 0%, #2a2520 30%, #1e1b17 60%, #2a2520 100%);
      border: 1px solid rgba(28, 58, 42, 0.20);
      box-shadow:
        0 0 0 0.5px rgba(28, 58, 42, 0.12),
        0 6px 24px rgba(0,0,0,0.6),
        0 0 35px rgba(28, 58, 42, 0.12),
        0 0 70px rgba(28, 58, 42, 0.08),
        0 0 100px rgba(28, 58, 42, 0.04),
        inset 0 0.5px 0 rgba(28, 58, 42, 0.11);
    }
    .bamo-btn-power { position: absolute; right: -1.5px; top: 72px; width: 2px; height: 26px; background: linear-gradient(to right, #352f28, #4a4238); border-radius: 0 2px 2px 0; }
    .bamo-btn-silent { position: absolute; left: -1.5px; top: 56px; width: 2px; height: 8px; background: linear-gradient(to left, #352f28, #4a4238); border-radius: 2px 0 0 2px; }
    .bamo-btn-vol-up { position: absolute; left: -1.5px; top: 72px; width: 2px; height: 18px; background: linear-gradient(to left, #352f28, #4a4238); border-radius: 2px 0 0 2px; }
    .bamo-btn-vol-down { position: absolute; left: -1.5px; top: 96px; width: 2px; height: 18px; background: linear-gradient(to left, #352f28, #4a4238); border-radius: 2px 0 0 2px; }

    .bamo-screen {
      position: absolute;
      top: 3px; left: 3px; right: 3px; bottom: 3px;
      border-radius: 21px;
      background: #1a1916;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .bamo-island {
      width: 38px; height: 11px;
      background: #000; border-radius: 8px;
      position: absolute; top: 6px; left: 50%;
      transform: translateX(-50%); z-index: 10;
    }
    .bamo-statusbar {
      display: flex; justify-content: space-between; align-items: center;
      padding: 6px 10px 0; height: 22px;
      font-size: 0.3rem; font-weight: 600;
      color: rgba(255,255,255,0.85); flex-shrink: 0;
    }
    .bamo-statusbar .bamo-clock { font-size: 0.32rem; font-weight: 700; }
    .bamo-status-right { display: flex; align-items: center; gap: 1.5px; }
    .bamo-signal { display: flex; align-items: flex-end; gap: 0.7px; height: 5px; }
    .bamo-signal .bar { width: 1.2px; border-radius: 0.5px; background: rgba(255,255,255,0.85); }
    .bamo-signal .bar:nth-child(1) { height: 1.5px; }
    .bamo-signal .bar:nth-child(2) { height: 2.5px; }
    .bamo-signal .bar:nth-child(3) { height: 3.5px; }
    .bamo-signal .bar:nth-child(4) { height: 4.5px; }
    .bamo-battery { width: 10px; height: 4px; border: 0.8px solid rgba(201,165,92,0.3); border-radius: 1px; position: relative; display: flex; align-items: center; padding: 0.5px; }
    .bamo-battery::after { content: ''; position: absolute; right: -1.5px; top: 0.6px; width: 1px; height: 2px; background: rgba(255,255,255,0.4); border-radius: 0 1px 1px 0; }
    .bamo-batt-fill { width: 70%; height: 100%; background: rgba(255,255,255,0.85); border-radius: 0.3px; }

    .bamo-msgnav {
      display: flex; align-items: center;
      padding: 0 6px 2px; gap: 3px; flex-shrink: 0;
      border-bottom: 0.5px solid rgba(28, 58, 42, 0.06);
    }
    .bamo-msgnav .bamo-back { color: #0a84ff; font-size: 0.55rem; font-weight: 300; }
    .bamo-msgnav .bamo-ava {
      width: 14px; height: 14px; border-radius: 50%;
      background: linear-gradient(135deg, #5856d6, #af52de);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.3rem; font-weight: 700; color: #fff;
    }
    .bamo-msgnav .bamo-cname { font-size: 0.38rem; font-weight: 600; color: #fff; flex: 1; }
    .bamo-msgnav .bamo-vid { color: #0a84ff; font-size: 0.38rem; }

    .bamo-chatarea {
      padding: 2px 4px;
      display: flex; flex-direction: column; gap: 2px;
      flex: 1; overflow: hidden;
      text-align: left;
    }
    .bamo-bub {
      max-width: 85%; padding: 4px 7px;
      border-radius: 10px;
      font-size: 0.58rem; line-height: 1.25;
      word-wrap: break-word; text-align: left;
      color: transparent !important;
      user-select: none;
    }
    .bamo-bub.s {
      align-self: flex-end;
      background: #007aff;
      text-shadow: 0 0 2px rgba(255,255,255,0.92);
      border-bottom-right-radius: 3px;
      filter: saturate(0.92);
    }
    .bamo-bub.r {
      align-self: flex-start;
      background: #28261f;
      text-shadow: 0 0 2px rgba(255,255,255,0.82);
      border-bottom-left-radius: 3px;
    }
    .bamo-meta {
      font-size: 0.22rem; color: rgba(255,255,255,0.2); margin: 0.5px 0; text-align: left;
    }
    .bamo-meta.right { align-self: flex-end; text-align: right; }
    .bamo-meta.center { align-self: center; text-align: center; margin: 1.5px 0; }

    .bamo-inputbar {
      display: flex; align-items: center; gap: 3px;
      padding: 2px 4px 8px; flex-shrink: 0;
    }
    .bamo-inputbar .bamo-plus {
      width: 12px; height: 12px; border-radius: 50%;
      background: #302c24;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.42rem; color: rgba(255,255,255,0.5);
    }
    .bamo-inputbar .bamo-field {
      flex: 1; height: 14px; border-radius: 8px;
      border: 0.5px solid #3a352c; background: transparent;
      padding: 0 5px; font-size: 0.28rem; color: rgba(28, 58, 42, 0.25);
      display: flex; align-items: center;
    }
    .bamo-inputbar .bamo-mic { font-size: 0.35rem; color: rgba(255,255,255,0.35); }
    .bamo-home-ind {
      width: 42px; height: 2px;
      background: rgba(255,255,255,0.2); border-radius: 3px;
      position: absolute; bottom: 4px; left: 50%;
      transform: translateX(-50%);
    }

    /* Stickers — all stacked in center gap */
    .bamo-stickers-all {
      position: absolute;
      z-index: 5;
      display: flex;
      flex-direction: column;
      gap: 10px;
      top: 33px;
      left: calc(2% + 130px + 10px);
      width: 115px;
    }
    .bamo-stk {
      padding: 4px 6px;
      border-radius: 5px;
      border-left: 2px solid;
    }
    .bamo-stk-t {
      font-size: 0.4rem;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 1px;
      white-space: nowrap;
    }
    .bamo-stk-d {
      font-size: 0.3rem;
      line-height: 1.2;
      font-weight: 600;
    }
    /* Red group — white, tilted toward left phone */
    .bamo-red-group {
      display: flex;
      flex-direction: column;
      gap: 3px;
      transform: rotate(-6deg);
      width: 82px;
      margin-left: -15px;
    }
    .bamo-stk.red {
      border-color: rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.12);
    }
    .bamo-stk.red .bamo-stk-t { color: rgba(255, 255, 255, 0.95); }
    .bamo-stk.red .bamo-stk-d { color: rgba(255, 255, 255, 0.55); }
    /* Green group — gold, tilted toward right phone */
    .bamo-grn-group {
      display: flex;
      flex-direction: column;
      gap: 3px;
      transform: rotate(15deg);
      width: 82px;
      margin-left: 18px;
    }
    .bamo-stk.grn {
      border-color: rgba(28, 58, 42, 0.40);
      background: rgba(28, 58, 42, 0.10);
    }
    .bamo-stk.grn .bamo-stk-t { color: rgba(201, 165, 92, 1); }
    .bamo-stk.grn .bamo-stk-d { color: rgba(28, 58, 42, 0.38); }
    .bamo-stk-divider {
      height: 1px;
      background: rgba(28, 58, 42, 0.08);
      margin: 2px 0;
    }

    /* Vertical reply tags — upward arrows below each phone */
    .bamo-vtag {
      position: absolute;
      z-index: 6;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: 58px;
      height: 56px;
      padding-bottom: 5px;
    }
    .bamo-vtag::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: 6px;
    }
    .bamo-vtag-txt {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.55rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.3;
    }
    /* Rare — white, below left phone */
    .bamo-vtag.rare {
      bottom: 15px;
      left: calc(2% + 70px);
      color: #fff;
      animation: bamoFloat 3s ease-in-out infinite;
    }
    .bamo-vtag.rare::before {
      background: rgba(255, 255, 255, 0.18);
      border: 1.5px solid rgba(255, 255, 255, 0.5);
      clip-path: polygon(50% 0%, 100% 18%, 100% 100%, 92% 100%, 8% 100%, 0% 100%, 0% 18%);
    }
    /* Active — gold, below right phone */
    .bamo-vtag.active {
      bottom: 15px;
      right: calc(2% + 60px);
      color: #d4af64;
      animation: bamoFloat 3s ease-in-out infinite 1.5s;
      filter: brightness(1.1);
    }
    .bamo-vtag.active::before {
      background: rgba(212, 175, 100, 0.26);
      border: 1.5px solid rgba(212, 175, 100, 0.65);
      clip-path: polygon(50% 0%, 100% 18%, 100% 100%, 92% 100%, 8% 100%, 0% 100%, 0% 18%);
    }
    @keyframes bamoFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    /* Mobile responsive for BA phone mockups */
    @media (max-width: 960px) {
      /* Hide desktop phones, show overlapping version */
      .phone-comparison-static { display: none; }
      .ba-mobile-overlap {
        display: block;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        overflow-x: hidden;
        transform: scale(0.85);
        transform-origin: top center;
      }
    }

    @media (max-width: 600px) {
      .ba-device {
        width: 155px;
        height: 335px;
      }
      .ba-device-frame { border-radius: 38px; }
      .ba-screen { border-radius: 33px; }
      .ba-phone-label { font-size: 1.2rem; }
      .ba-bub {
        font-size: 0.5rem; line-height: 1.3;
        padding: 5px 9px;
        max-width: 85%;
      }
      .ba-chatarea { padding: 5px 8px; gap: 2px; }
      .ba-meta { font-size: 0.38rem; }
      .ba-msgnav { padding: 1px 10px 4px; }
      .ba-msgnav .ba-ava { width: 24px; height: 24px; font-size: 0.52rem; }
      .ba-msgnav .ba-cname { font-size: 0.6rem; }
      .ba-statusbar { padding: 12px 18px 0; height: 38px; font-size: 0.48rem; }
      .ba-statusbar .ba-clock { font-size: 0.52rem; }
      .ba-inputbar { padding: 3px 6px 14px; }
      .ba-inputbar .ba-plus { width: 20px; height: 20px; font-size: 0.75rem; }
      .ba-inputbar .ba-field { height: 24px; border-radius: 14px; font-size: 0.45rem; }
      .ba-stk-t { font-size: 0.55rem; }
      .ba-stk-d { font-size: 0.45rem; }
      .ba-stk { padding: 5px 8px; }
      .ba-stickers { gap: 6px; padding-top: 32px; }
    }

    /* Guide links — subtle anchor links below suggestion */
    .guide-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 12px;
    }
    .guide-link {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #1c3a2a;
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(28, 58, 42, 0.20);
      border-radius: 40px;
      padding: 14px 36px;
      cursor: pointer;
      opacity: 0.85;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    .guide-link:hover {
      opacity: 1;
      background: rgba(255, 255, 255, 0.1);
      border-color: #1c3a2a;
    }
    .guide-arrow {
      display: inline-block;
      animation: guideArrowBounce 2s ease-in-out infinite;
    }
    @keyframes guideArrowBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(3px); }
    }

    /* ====== TRY YOUR OWN MESSAGE SECTION ====== */
    .try-message-section {
      width: 100%;
      max-width: 920px;
      margin-top: 28px;
      z-index: 1;
      padding: 0;
      box-sizing: border-box;
    }

    .try-message-title {
      font-family: 'Lora', serif;
      font-size: clamp(2.6rem, 6vw, 4.2rem);
      font-weight: 500;
      color: #1c3a2a;
      text-align: center;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .underline-word {
      position: relative;
      display: inline-block;
    }

    .underline-word::after {
      content: '';
      position: absolute;
      left: -5%;
      bottom: -8px;
      width: 110%;
      height: 0.35em;
      background: url('/static/underline-clean.png') no-repeat center;
      background-size: 100% 100%;
    }

    .try-message-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--text-secondary);
      text-align: center;
      margin-bottom: 16px;
    }

    .scenario-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
      padding: 0 10px;
    }
    .scenario-pill {
      background: transparent;
      border: 1px solid rgba(28,58,42,0.12);
      border-radius: 20px;
      padding: 8px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      color: #4a4a44;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .scenario-pill:hover {
      background: rgba(28, 58, 42, 0.04);
      border-color: rgba(28, 58, 42, 0.20);
      color: #2a2a24;
    }
    .scenario-pill.active {
      background: rgba(28, 58, 42, 0.10);
      border-color: rgba(28, 58, 42, 0.25);
      color: #1c3a2a;
      font-weight: 600;
    }

    /* Scenario pills — mobile responsive */
    @media (max-width: 640px) {
      .scenario-pills {
        gap: 6px;
        margin-bottom: 14px;
        padding: 0 6px;
      }
      .scenario-pill {
        padding: 5px 12px;
        font-size: 0.7rem;
        border-radius: 16px;
      }
    }
    @media (max-width: 420px) {
      .scenario-pills {
        gap: 5px;
        margin-bottom: 12px;
        padding: 0 4px;
      }
      .scenario-pill {
        padding: 4px 10px;
        font-size: 0.65rem;
        border-radius: 14px;
      }
    }

    /* ====== WHY IT MATTERS — STATIC ====== */
    .why-it-matters-static {
      width: 100%;
      max-width: 920px;
      margin-top: 20px;
      z-index: 1;
    }

    /* ====== EXAMPLES CAROUSEL (legacy) ====== */
    .examples-carousel {
      width: 100%;
      max-width: 920px;
      margin-top: 0;
      z-index: 1;
    }

    .carousel-container {
      position: relative;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .carousel-arrow {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      color: var(--text-secondary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .carousel-arrow:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
      background: rgba(28, 58, 42, 0.06);
    }

    .hero-carousel-slides {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    /* 统一 Slide 高度 */
    .carousel-slide {
      display: none;
      animation: fadeIn 0.4s ease;
      min-height: 500px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .carousel-slide.active {
      display: flex;
    }

    .carousel-hook {
      font-size: 1.05rem;
      color: var(--text-secondary);
      text-align: center;
      line-height: 1.6;
      margin-top: 0;
      margin-bottom: 20px;
      font-style: italic;
      opacity: 0.7;
    }

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

    /* Slide 1: Comparison Card - 拉长 */
    .comparison-card {
      display: flex;
      background: var(--bg-secondary);
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid rgba(28, 58, 42, 0.25);
      min-height: 500px;
      width: 100%;
      box-shadow: 0 0 30px rgba(28, 58, 42, 0.06);
    }

    .comparison-side {
      flex: 1;
      padding: 50px 48px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .dont-send {
      background: transparent;
    }

    .send-instead {
      background: linear-gradient(180deg, rgba(28, 58, 42, 0.03) 0%, transparent 100%);
    }

    .comparison-divider {
      width: 1px;
      background: rgba(255,255,255,0.1);
    }

    .comparison-title {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 28px;
    }

    .dont-title {
      color: rgba(255,255,255,0.7);
    }

    .gold-title {
      color: #1c3a2a;
    }

    .message-bubble {
      padding: 24px 28px;
      border-radius: 18px;
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 24px;
      flex: 1;
    }

    .blue-bubble {
      background: rgba(180, 180, 190, 0.10);
      color: rgba(74, 74, 68, 0.85);
      border-bottom-left-radius: 6px;
    }

    .gold-bubble {
      background: rgba(28, 58, 42, 0.08);
      color: #1c3a2a;
      border-bottom-right-radius: 6px;
    }

    .comparison-tag {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-top: auto;
    }

    .red-tag {
      background: rgba(212, 132, 122, 0.2);
      color: #d4847a;
    }

    .green-tag {
      background: rgba(138, 184, 138, 0.2);
      color: #8ab88a;
    }

    /* Mini tags for comparison */
    .comparison-tags-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 12px;
    }

    .mini-tag {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .red-list .mini-tag {
      color: rgba(212, 132, 122, 0.6);
    }

    .green-list .mini-tag {
      color: rgba(138, 184, 138, 0.6);
    }

    /* Slide 2: Phone Comparison - 裁剪图片 */
    .phone-comparison {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 36px 60px 44px;
      min-height: 520px;
      width: 100%;
      background: var(--bg-secondary);
      border: 2px solid rgba(28, 58, 42, 0.25);
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(28, 58, 42, 0.06);
    }

    .phone-side {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .phone-img {
      width: 260px;
      height: 420px;
      object-fit: cover;
      object-position: center center;
      border-radius: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }

    .phone-caption {
      font-family: 'Lora', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(74, 74, 68, 0.7);
      margin-top: 16px;
      max-width: 260px;
      text-align: center;
    }

    .phone-caption-gold {
      color: #1c3a2a;
    }

    .caption-label {
      font-family: 'DM Sans', sans-serif;
      font-style: normal;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: rgba(74, 74, 68, 0.5);
      margin-right: 10px;
    }

    .caption-label-gold {
      color: #1c3a2a;
    }

    .phone-subtitle {
      font-size: 0.85rem;
      color: rgba(74, 74, 68, 0.5);
      margin-top: 8px;
      text-align: center;
    }

    .phone-subtitle-gold {
      color: rgba(28, 58, 42, 0.60);
    }

    .transform-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 4px;
      align-self: center;
      margin-bottom: 60px;
      flex-shrink: 0;
    }

    .transform-arrow span {
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      background: #1c3a2a;
      padding: 10px 20px;
      border-radius: 24px;
      border: 1px solid rgba(28, 58, 42, 0.30);
    }

    /* Carousel Dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 16px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot:hover {
      border-color: #2d5a40;
    }

    .dot.active {
      background: #1c3a2a;
      border-color: #1c3a2a;
    }

    /* ====== HOW IT WORKS ====== */
    .how-it-works {
      width: 100%;
      max-width: 900px;
      margin-top: 80px;
      padding: 0 24px;
      text-align: center;
    }

    .hiw-title {
      font-family: 'Lora', serif;
      font-size: 2.2rem;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 40px;
    }

    .hiw-steps {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .hiw-card {
      flex: 1;
      background: rgba(28, 58, 42, 0.04);
      border: 1px solid rgba(28, 58, 42, 0.08);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: left;
    }

    .hiw-number {
      display: inline-block;
      font-family: 'Lora', serif;
      font-size: 2rem;
      font-weight: 600;
      color: #1c3a2a;
      margin-bottom: 12px;
    }

    .hiw-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .hiw-card-desc {
      font-size: 0.9rem;
      color: rgba(74, 74, 68, 0.6);
      line-height: 1.5;
      font-weight: 400;
    }

    /* ====== DEMO PREVIEW ====== */
    .demo-preview {
      width: 100%;
      max-width: 680px;
      margin-top: 30px;
    }

    .demo-card {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 32px;
    }

    .demo-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }

    .demo-column {
      display: flex;
      flex-direction: column;
    }

    .demo-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1c3a2a;
      margin-bottom: 12px;
    }

    .demo-label-gold {
      color: #1c3a2a;
    }

    .demo-box {
      flex: 1;
      padding: 20px;
      border-radius: 12px;
      font-size: 1.05rem;
      line-height: 1.7;
      min-height: 120px;
    }

    .draft-box {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      color: var(--text-primary);
    }

    .suggestion-box {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      color: #9ECD8A;
    }

    .demo-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #9ECD8A, #7AB369);
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #000;
      cursor: pointer;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .demo-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(158, 205, 138, 0.3);
    }

    .demo-explanation {
      background: rgba(28, 58, 42, 0.05);
      border: 1px solid rgba(28, 58, 42, 0.12);
      border-radius: 12px;
      padding: 20px;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      box-shadow: 0 0 30px rgba(28, 58, 42, 0.06), inset 0 0 20px rgba(28, 58, 42, 0.02);
    }

    /* ====== FEATURES SHOWCASE ====== */
    .features-section{max-width:1000px;margin:0 auto;padding:60px 24px 50px}
    .features-header{text-align:center;margin-bottom:44px}
    .features-label{font-size:.68rem;letter-spacing:2.5px;text-transform:uppercase;color:#2d5a40;margin-bottom:12px}
    .features-title{font-family:'Lora',serif;font-size:2.1rem;font-weight:500;color:var(--text-primary);line-height:1.35}
    .features-title em{font-style:italic;color:#1c3a2a}
    .features-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px}
    .feature-card{background:var(--bg-secondary);border:1px solid var(--border-subtle);border-radius:16px;overflow:hidden;transition:border-color .3s}
    .feature-card:hover{border-color:rgba(28,58,42,.15)}
    .feature-img{position:relative;width:100%;height:360px;overflow:hidden;border-bottom:1px solid var(--border-subtle);background:var(--bg-elevated);display:flex;align-items:flex-start;justify-content:center}
    .feature-img img{width:100%;height:auto;display:block}
    .feature-card--clickable{cursor:pointer}
    .feature-card--clickable:active{transform:scale(0.98)}
    .feature-card--popular{position:relative;border-color:rgba(28,58,42,.20);box-shadow:0 0 24px rgba(28,58,42,.06)}
    .feature-card--popular:hover{border-color:rgba(28,58,42,.30)}
    .popular-stamp{position:absolute;bottom:14px;right:14px;z-index:2;font-size:.6rem;letter-spacing:2px;font-weight:700;color:#1c3a2a;border:2.5px solid #1c3a2a;border-radius:6px;padding:5px 10px;transform:rotate(-8deg);background:rgba(253,252,250,.95);backdrop-filter:blur(6px);box-shadow:0 2px 12px rgba(28,58,42,.12)}
    .feature-text{padding:18px 18px 20px}
    .feature-badge{display:inline-block;font-size:.55rem;letter-spacing:1.2px;text-transform:uppercase;padding:3px 10px;border-radius:20px;margin-bottom:10px}
    .feature-badge.free{color:#8ab88a;background:rgba(138,184,138,.1)}
    .feature-badge.pro{color:#1c3a2a;background:rgba(28,58,42,.08)}
    .feature-name{font-family:'Lora',serif;font-size:1.2rem;font-weight:500;color:var(--text-primary);margin-bottom:6px;line-height:1.3}
    .feature-desc{font-size:.76rem;color:var(--text-muted);line-height:1.6}
    .feature-bonus{color:#1c3a2a;font-weight:600;font-size:.7rem}
    @media(max-width:740px){
      .features-section{padding:40px 0 40px}
      .features-header{padding:0 20px}
      .features-title{font-size:1.6rem}
      .features-grid{display:flex;gap:14px;padding:0 20px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none;max-width:100vw;width:100%}
      .features-grid::-webkit-scrollbar{display:none}
      .feature-card{flex-shrink:0;width:78vw;max-width:300px;scroll-snap-align:center}
      .feature-img{height:240px}
      .feature-img img.risk-img{width:100%;max-width:none}
      .feature-name{font-size:1.05rem}
      .feature-desc{font-size:.7rem}
    }

    /* ====== STATS BAR ====== */
    .stats-bar{display:flex;justify-content:center;gap:56px;padding:36px 20px 52px;max-width:780px;margin:0 auto}
    .stat-item{text-align:center}
    .stat-number{font-family:'Lora',serif;font-size:2.5rem;font-weight:600;color:#1c3a2a;line-height:1}
    .stat-label{font-size:.75rem;color:var(--text-muted);margin-top:8px}
    @media(max-width:600px){.stats-bar{gap:20px;padding:24px 16px 36px}.stat-number{font-size:1.7rem}.stat-label{font-size:.62rem}}

    /* ====== TESTIMONIALS ====== */
    .testimonials-section{padding:0 0 70px;max-width:1200px;margin:0 auto}
    .testimonials-header{text-align:center;margin-bottom:36px;padding:0 24px}
    .testimonials-label{font-size:.68rem;letter-spacing:2.5px;text-transform:uppercase;color:#2d5a40;margin-bottom:12px}
    .testimonials-title{font-family:'Lora',serif;font-size:2rem;font-weight:500;color:var(--text-primary);line-height:1.35}
    .testimonials-title em{font-style:italic;color:#1c3a2a}
    @media(max-width:600px){.testimonials-title{font-size:1.5rem}}
    .testimonials-rows{display:flex;flex-direction:column;gap:12px}
    .testimonials-track-wrapper{width:100%;overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent 0%,black 3%,black 97%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 3%,black 97%,transparent 100%)}
    .testimonials-track{display:flex;gap:12px;padding:0 20px;width:max-content;will-change:transform}
    .track-row-1{animation:scroll-left 120s linear infinite}
    .track-row-2{animation:scroll-right 135s linear infinite}
    @keyframes scroll-left{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
    @keyframes scroll-right{0%{transform:translateX(-50%)}100%{transform:translateX(0)}}
    .testimonials-track:hover{animation-play-state:paused}
    .testimonials-track:active{animation-play-state:paused}
    .testimonial-card{flex-shrink:0;width:290px;background:var(--bg-secondary);border:1px solid var(--border-subtle);border-radius:14px;padding:20px 18px;transition:border-color .3s}
    .testimonial-card.short{width:190px}
    .testimonial-card:hover{border-color:rgba(212,173,94,.18)}
    .testimonial-quote{font-size:.82rem;color:var(--text-secondary);line-height:1.6;margin-bottom:14px}
    .testimonial-footer{display:flex;align-items:center;gap:9px}
    .testimonial-avatar{width:26px;height:26px;border-radius:50%;background:var(--bg-elevated);display:flex;align-items:center;justify-content:center;font-size:.56rem;color:#2d5a40;font-weight:500;border:1px solid rgba(28,58,42,.06)}
    .testimonial-id{font-size:.74rem;color:var(--text-primary);font-weight:500}
    .testimonial-context{font-size:.64rem;color:var(--text-muted);margin-top:1px}
    .testimonial-feature{display:inline-block;font-size:.56rem;color:#2d5a40;background:rgba(28,58,42,.07);padding:2px 7px;border-radius:10px;margin-top:2px}
    @media(max-width:600px){
      .testimonial-card{width:230px;padding:14px 12px}
      .testimonial-card.short{width:145px}
      .testimonial-quote{font-size:.75rem;margin-bottom:10px}
      .testimonials-track{gap:10px;padding:0 10px}
      .testimonial-id{font-size:.68rem}
      .testimonial-avatar{width:22px;height:22px;font-size:.5rem}
    }
    .section-sep{width:50px;height:1px;background:var(--border-subtle);margin:0 auto}

    /* ====== CTA SECTION ====== */
    .cta-section {
      width: 100%;
      max-width: 700px;
      margin-top: 80px;
      padding: 20px 40px 40px;
      text-align: center;
    }

    .cta-title {
      font-family: 'Lora', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 24px;
      line-height: 1.3;
    }

    .cta-title em {
      font-style: italic;
      color: #1c3a2a;
    }

    .cta-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }

    .cta-btn {
      display: inline-block;
      padding: 18px 60px;
      background: #1c3a2a;
      border: none;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(28, 58, 42, 0.15);
      margin-bottom: 20px;
    }

    .cta-btn:hover {
      background: #2d5a40;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(28, 58, 42, 0.20);
    }

    .cta-note {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .cta-btn {
        padding: 14px 40px;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 768px) {
      .demo-columns {
        grid-template-columns: 1fr;
      }
      .cta-title {
        font-size: 1.8rem;
      }
      .step-label {
        font-size: 0.95rem;
      }
      .section-separator {
        margin: 32px 0;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hiw-steps {
        flex-direction: column;
        gap: 16px;
      }
      .hiw-card {
        padding: 24px 20px;
      }
      .comparison-card {
        flex-direction: column;
      }
      .comparison-divider {
        width: 100%;
        height: 1px;
      }
      .phone-comparison, .phone-comparison-static {
        flex-direction: column;
        gap: 30px;
        padding: 24px 16px;
      }
      .transform-arrow {
        transform: rotate(90deg);
      }
      .phone-img {
        width: 220px;
      }
      .try-message-title {
        font-size: 1.3rem;
      }
    }

    /* 保留旧的 landing-page 样式以防万一 */
    .landing-page {
      display: none;
    }

    /* 顶部标题区 - 绝对置顶 */
    .hero-header {
      position: absolute;
      top: 100px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 100;
    }

    .title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .logo-large {
      display: none;
    }

    .main-title {
      font-family: 'Lora', serif;
      font-size: 4.5rem;
      letter-spacing: 0.2em;
      color: #FFFFFF;
      text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    .main-tagline {
      font-size: 1.3rem;
      color: rgba(255,255,255,0.7);
      font-weight: 300;
      letter-spacing: 0.1em;
      margin-top: 6px;
    }

    .main-tagline em {
      font-family: 'Lora', serif;
      font-style: italic;
      color: #E8B84A;
    }

    /* 中间连接箭头 */
    .transform-connector {
      position: absolute;
      left: 50%;
      top: 55%;
      transform: translate(-50%, -50%);
      z-index: 50;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .curve-arrow {
      width: 120px;
      height: 60px;
      filter: drop-shadow(0 0 10px rgba(28, 58, 42, 0.25));
    }

    .transform-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: #1c3a2a;
      background: rgba(0, 0, 0, 0.6);
      padding: 6px 16px;
      border-radius: 20px;
      border: 1px solid rgba(28, 58, 42, 0.20);
    }

    /* 左右侧基础布局 */
    .split-side {
      flex: 1;
      height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      position: relative;
      padding-top: 320px;
    }

    /* Before 侧 - 极深灰，内容靠右 */
    .before-side {
      background: #18181a;
      padding-right: 3%;
      align-items: flex-end;
    }

    /* After 侧 - 琥珀金氛围，内容靠左 */
    .after-side {
      background: #f0ede8;
      overflow: hidden;
      padding-left: 3%;
      align-items: flex-start;
    }

    /* 琥珀金柔光遮罩 - 靠中间 */
    .healing-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 25% 50%, rgba(201, 165, 92, 0.20) 0%, transparent 65%);
      z-index: 1;
      pointer-events: none;
    }

    /* Try it now 内嵌样式 */
    .try-it-inline {
      text-align: center;
      margin-bottom: 24px;
      z-index: 20;
    }

    .try-title {
      font-family: 'Lora', serif;
      font-size: 2.2rem;
      color: #1c3a2a;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .try-subtitle {
      color: var(--text-primary);
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .try-desc {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    .inline-tabs {
      z-index: 20;
      margin-bottom: 20px;
    }

    .after-side .input-mode,
    .after-side .context-row,
    .after-side .submit-section {
      z-index: 20;
      width: 100%;
      max-width: 400px;
    }

    .after-side .upload-area {
      padding: 40px 30px;
    }

    .after-side .context-row {
      flex-direction: column;
      gap: 16px;
      margin-top: 20px;
    }

    .after-side .context-item {
      max-width: 100%;
    }

    .after-side .submit-section {
      margin-top: 24px;
    }

    /* 破折号标签样式 */
    .label-dash {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-right: 12px;
      color: rgba(255, 255, 255, 0.7);
    }

    /* After 标签：琥珀金 */
    .label-dash.label-gold {
      color: #1c3a2a;
    }

    /* 图片展示 - 放大更多 */
    .device-mockup {
      width: 440px;
      max-height: 660px;
      border-radius: 28px;
      overflow: hidden;
      border: none;
      box-shadow: 0 40px 100px rgba(0,0,0,0.5);
      z-index: 20;
    }

    .mockup-gold {
      box-shadow: 0 40px 100px rgba(28, 58, 42, 0.08);
    }

    .device-mockup img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* 底部引言文字 */
    .split-quote {
      font-family: 'Lora', serif;
      font-size: 1.4rem;
      font-style: italic;
      line-height: 1.5;
      margin-top: 20px;
      z-index: 20;
      color: rgba(255,255,255,0.75);
      text-align: center;
      max-width: 440px;
    }

    .after-side .split-quote {
      color: rgba(237, 220, 170, 0.95);
    }

    /* 小字副标题 */
    .split-subtitle {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.5);
      margin-top: 6px;
      z-index: 20;
      letter-spacing: 0.05em;
      text-align: center;
      width: 440px;
    }

    .after-side .split-subtitle {
      color: rgba(212, 173, 94, 0.7);
    }

    /* CTA 浮动按钮 */
    .cta-overlay {
      position: absolute;
      bottom: 6vh;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
    }

    /* 响应式适配 */
    @media (max-width: 900px) {
      .landing-page {
        flex-direction: column;
      }
      .hero-header {
        top: 70px;
      }
      .title-row {
        flex-direction: column;
        gap: 12px;
      }
      .main-title {
        font-size: 2.5rem;
        letter-spacing: 0.12em;
      }
      .main-tagline {
        font-size: 1rem;
      }
      .split-side {
        height: auto;
        min-height: 50vh;
        padding-top: 25vh;
        padding-bottom: 8vh;
        padding-left: 0;
        padding-right: 0;
        align-items: center;
      }
      .transform-connector {
        display: none;
      }
      .device-mockup {
        width: 300px;
        max-height: 450px;
      }
      .cta-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 40px 0;
        background: #1e1e20;
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      .title-row {
        gap: 8px;
      }
      .main-title {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
      }
      .main-tagline {
        font-size: 0.9rem;
      }
      .device-mockup {
        width: 200px;
        max-height: 340px;
        border-radius: 18px;
      }
      .split-quote {
        font-size: 1.1rem;
      }
      .label-inline {
        font-size: 0.65rem;
        padding: 3px 8px;
        margin-right: 10px;
      }
    }

    /* Legacy styles - keep for compatibility */
    .split-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 14px;
      font-weight: 600;
    }

    .split-left .split-label {
      color: rgba(28, 58, 42, 0.40);
    }

    .split-right .split-label {
      color: #1a1a1a;
    }

    .split-quote {
      font-family: 'Lora', serif;
      font-size: 1.35rem;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    /* Left quote - italic, light gold for dark bg */
    .split-left .split-quote {
      color: #E8D5A3;
      font-style: italic;
    }

    /* 右侧文字颜色微调：更柔和的深灰，不要全黑 */
    .split-right .split-quote {
      color: #3e3a35;
      font-style: normal;
      font-weight: 500;
    }

    .split-subtitle {
      font-size: 0.8rem;
    }

    .split-left .split-subtitle {
      color: rgba(255,255,255,0.4);
    }

    .split-right .split-subtitle {
      color: #6B7077;
    }

    /* Time icons - hidden */
    .time-icon {
      display: none;
    }

    /* CTA at bottom center */
    .cta-overlay {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      color: rgba(255,255,255,0.6);
    }

    .scroll-hint svg {
      animation: bounce 2s infinite;
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 22px 64px;
      background: #1c3a2a;
      color: #fff;
      border: 1px solid rgba(28, 58, 42, 0.30);
      border-radius: 60px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(28, 58, 42, 0.15);
    }

    .btn-main:hover {
      background: #2d5a40;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(28, 58, 42, 0.20);
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(6px); }
      60% { transform: translateY(3px); }
    }

    /* ====== APP SECTION (scrolled to) ====== */
    .app-section {
      min-height: 100vh;
      padding: 40px 30px;
      padding-top: 30px;
      position: relative;
      z-index: 1;
      background: linear-gradient(180deg,
        #1e1e20 0%,
        var(--bg-primary) 15%,
        var(--bg-primary) 100%
      );
    }

    .app-container {
      max-width: 850px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 36px;
    }

    .section-header h2 {
      font-family: 'Lora', serif;
      font-size: 2.8rem;
      color: #1c3a2a;
      margin-bottom: 12px;
      text-transform: none;
      font-weight: 500;
    }

    .section-subtitle {
      color: var(--text-primary);
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 6px;
    }

    .section-desc {
      color: var(--text-secondary);
      font-size: 1.1rem;
      font-weight: 300;
    }

    /* Input Tabs */
    .input-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 28px;
    }

    .tab-btn {
      padding: 16px 36px;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .tab-logo {
      height: 24px;
      width: auto;
    }

    .tab-icon {
      width: 24px;
      height: 24px;
      stroke: currentColor;
    }

    .tab-btn:hover {
      color: var(--text-secondary);
      border-color: rgba(28, 58, 42, 0.12);
    }

    .tab-btn.active {
      background: rgba(28, 58, 42, 0.06);
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .input-mode { display: none; }
    .input-mode.active { display: block; }

    .text-input-group {
      margin-bottom: 20px;
    }

    .text-input-group:last-child {
      margin-bottom: 0;
    }

    .input-label {
      display: block;
      font-size: 1rem;
      font-weight: 500;
      color: #1c3a2a;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }

    .text-input-group textarea {
      min-height: 15vh;
      max-height: 25vh;
    }

    .text-input-group:last-child textarea {
      min-height: 12vh;
    }

    textarea {
      width: 100%;
      min-height: 28vh;
      max-height: 40vh;
      padding: clamp(20px, 3vw, 32px);
      background: var(--bg-secondary);
      border: 2px solid rgba(28, 58, 42, 0.30);
      border-radius: 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.1rem, 1.3vw, 1.25rem);
      line-height: 1.8;
      color: var(--text-primary);
      resize: vertical;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(28, 58, 42, 0.10), inset 0 0 30px rgba(28, 58, 42, 0.02);
    }

    textarea::placeholder {
      color: var(--text-muted);
      font-weight: 300;
    }

    textarea:focus {
      outline: none;
      border-color: #1c3a2a;
      box-shadow: 0 0 30px rgba(28, 58, 42, 0.15), inset 0 0 40px rgba(28, 58, 42, 0.03);
    }

    /* Upload */
    .upload-area {
      border: 2px solid rgba(28, 58, 42, 0.30);
      border-radius: 16px;
      padding: 50px 40px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: var(--bg-secondary);
      box-shadow: 0 0 20px rgba(28, 58, 42, 0.10), inset 0 0 30px rgba(28, 58, 42, 0.02);
    }

    .upload-area:hover {
      border-color: #1c3a2a;
      background: rgba(28, 58, 42, 0.03);
      box-shadow: 0 0 30px rgba(28, 58, 42, 0.15), inset 0 0 40px rgba(28, 58, 42, 0.03);
    }

    .upload-icon {
      margin-bottom: 12px;
      opacity: 0.8;
      color: #1c3a2a;
    }

    .upload-icon svg {
      stroke: #1c3a2a;
    }

    .upload-text {
      color: var(--text-secondary);
      font-size: 1.1rem;
      font-weight: 300;
    }

    .upload-hint {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-top: 10px;
    }

    .upload-input { display: none; }

    .preview-container { display: none; margin-top: 20px; text-align: center; }
    .preview-container.show { display: block; }
    .preview-image {
      max-width: 100%;
      max-height: 320px;
      border-radius: 16px;
      border: 1px solid var(--border-subtle);
    }

    /* Context Row */
    .context-row {
      display: flex;
      gap: 16px;
      margin-top: 24px;
      justify-content: center;
    }

    .context-item {
      flex: 1;
      max-width: 260px;
    }

    .context-label {
      font-size: 0.9rem;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
      text-align: center;
      font-weight: 500;
    }

    .context-item select {
      width: 100%;
      padding: 16px 44px 16px 20px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      font-size: 1.1rem;
      color: var(--text-primary);
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      transition: all 0.3s ease;
    }

    .context-item select:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    @media (max-width: 600px) {
      .context-row {
        flex-direction: column;
        align-items: center;
      }
      .context-item {
        max-width: 100%;
        width: 100%;
      }
    }

    .submit-section {
      text-align: center;
      margin-top: 28px;
    }

    .btn-secondary {
      display: inline-flex;
      padding: 16px 36px;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      color: var(--text-secondary);
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .privacy-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      font-size: 1rem;
      color: var(--accent-sage);
      opacity: 0.9;
    }

    /* ====== LOADING ====== */
    .loading-section {
      display: none;
      min-height: 100vh;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 24px;
    }

    .loading-section.show { display: flex; }

    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.03); opacity: 0.85; }
    }

    .loader-container {
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }

    .loader-top-label {
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0.5;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-weight: 600;
      color: #1c3a2a;
    }

    .loader-top-label svg {
      width: 14px;
      height: 14px;
      stroke: #1c3a2a;
    }

    .circle-wrapper {
      position: relative;
      width: 180px;
      height: 180px;
    }

    .circle-track {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid var(--bg-elevated);
    }

    .circle-spinner {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid transparent;
      border-top-color: #1c3a2a;
      animation: spin 3s linear infinite;
    }

    .progress-ring {
      position: absolute;
      inset: 0;
      transform: rotate(-90deg);
    }

    .progress-ring-bg {
      fill: none;
      stroke: var(--bg-elevated);
      stroke-width: 2;
    }

    .progress-ring-fill {
      fill: none;
      stroke: #1c3a2a;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 534;
      stroke-dashoffset: 534;
      transition: stroke-dashoffset 0.3s ease;
    }

    .circle-inner {
      position: absolute;
      inset: 24px;
      border-radius: 50%;
      background: rgba(28, 58, 42, 0.06);
      border: 1px solid rgba(28, 58, 42, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2.5s ease-in-out infinite;
    }

    .circle-percent {
      font-size: 2.4rem;
      font-weight: 300;
      color: #1c3a2a;
      font-family: 'DM Sans', monospace;
      letter-spacing: -1px;
    }

    .step-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      min-height: 90px;
    }

    .step-icon-wrapper {
      width: 44px;
      height: 44px;
      background: var(--bg-elevated);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
      transition: transform 0.5s ease;
    }

    .step-icon-wrapper svg {
      width: 20px;
      height: 20px;
      stroke: #1c3a2a;
      fill: none;
      stroke-width: 1.5;
    }

    .step-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: -0.3px;
      transition: opacity 0.4s ease;
    }

    .step-detail {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 400;
      font-style: italic;
      max-width: 260px;
      line-height: 1.5;
      transition: opacity 0.4s ease;
    }

    .progress-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
    }

    .progress-dot {
      height: 3px;
      border-radius: 3px;
      transition: all 0.6s ease;
      background: var(--bg-elevated);
      width: 8px;
    }

    .progress-dot.active {
      width: 28px;
      background: #2d5a40;
    }

    .loader-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border-subtle);
      text-align: center;
      width: 100%;
    }

    .loader-bottom p {
      font-size: 0.62rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      line-height: 1.8;
      opacity: 0.5;
    }

    /* ====== RESULTS SECTION ====== */
    .results-section {
      display: none;
      min-height: 100vh;
      padding: 100px 40px 50px;
      position: relative;
      z-index: 1;
    }

    .results-section.show { display: block; }

    .results-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: transparent;
      border: 2px solid #1c3a2a;
      border-radius: 50px;
      color: #1c3a2a;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 32px;
    }

    .back-btn:hover {
      border-color: #2d5a40;
      color: #2d5a40;
    }

    .back-btn svg {
      transition: transform 0.3s ease;
    }

    .back-btn:hover svg {
      transform: translateX(-4px);
    }

    /* ====== SRI BLOCK ====== */
    .sri-block {
      background: none;
      border: none;
      border-radius: 0;
      padding: 20px 0;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(28,58,42,0.08);
    }

    .sri-block .verdict-title {
      margin-bottom: 16px;
    }

    .sri-top {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 24px;
    }

    .sri-verdict-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 20px;
    }

    .sri-ring-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
    }

    .sri-ring-container {
      position: relative;
      width: 160px;
      height: 160px;
      flex-shrink: 0;
    }

    .sri-ring-svg {
      width: 160px;
      height: 160px;
      transform: rotate(-90deg);
    }

    .sri-ring-bg {
      fill: none;
      stroke: rgba(28, 58, 42, 0.06);
      stroke-width: 8;
    }

    .sri-ring-fill {
      fill: none;
      stroke-width: 8;
      stroke-linecap: round;
      transition: stroke-dashoffset 1.2s ease, stroke 0.5s ease;
    }

    .sri-ring-fill.risk-high { stroke: #c08888; }
    .sri-ring-fill.risk-medium { stroke: #c9b06a; }
    .sri-ring-fill.risk-low { stroke: #6bb88a; }

    .sri-ring-score {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'DM Sans', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1;
    }

    .sri-ring-score .sri-score-unit {
      font-size: 0.78rem;
      font-weight: 400;
      color: var(--text-muted);
    }

    .sri-info {
      flex: 1;
      min-width: 0;
      padding-top: 6px;
    }

    .sri-risk-badge {
      margin-top: 8px;
      font-size: 0.62rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: inline-block;
    }

    .sri-risk-badge.high {
      background: rgba(192, 136, 136, 0.15);
      color: #c08888;
      border: 1px solid rgba(192, 136, 136, 0.3);
    }

    .sri-risk-badge.medium {
      background: rgba(201, 176, 106, 0.15);
      color: #c9b06a;
      border: 1px solid rgba(201, 176, 106, 0.3);
    }

    .sri-risk-badge.low {
      background: rgba(107, 184, 138, 0.15);
      color: #6bb88a;
      border: 1px solid rgba(107, 184, 138, 0.3);
    }

    .sri-core-risk {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
      margin-top: 16px;
      margin-bottom: 0;
      max-width: 400px;
      font-style: italic;
    }

    .sri-headline {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.4;
      margin-bottom: 4px;
    }

    .sri-red-flag {
      font-size: 0.72rem;
      color: #c08888;
      font-weight: 400;
      line-height: 1.4;
      opacity: 0.85;
    }

    .sri-red-flag.green { color: #6bb88a; opacity: 0.7; }

    /* Compact Watch Out pills inside sri-info */
    .sri-traps-compact {
      list-style: none;
      padding: 0;
      margin: 12px 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: 7px 8px;
    }
    .sri-traps-compact:empty { display: none; }
    .sri-traps-compact li {
      font-size: 0.82rem;
      color: var(--text-secondary);
      background: rgba(255, 180, 50, 0.08);
      border: 1px solid rgba(255, 180, 50, 0.15);
      border-radius: 18px;
      padding: 6px 14px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .sri-traps-compact li .trap-compact-icon {
      font-size: 0.78rem;
    }
    .sri-traps-compact .trap-details-link {
      font-size: 0.8rem;
      color: #1c3a2a;
      cursor: pointer;
      opacity: 0.7;
      padding: 6px 12px;
      transition: opacity 0.2s;
      background: transparent;
      border-color: rgba(28, 58, 42, 0.15);
    }
    .sri-traps-compact .trap-details-link:hover {
      opacity: 1;
    }

    /* SRI Dimensions expand/collapse toggle */
    .sri-dims-expand-btn {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.7rem;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
      padding: 2px 0;
      opacity: 0.6;
      transition: opacity 0.2s;
    }
    .sri-dims-expand-btn:hover { opacity: 1; }

    /* SRI Dimensions: 2x2 grid — hidden by default, toggle to show */
    .sri-dimensions {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 16px 24px;
    }
    .sri-dimensions.show {
      display: grid;
    }

    .sri-dim-cell {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .sri-dim-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sri-dim-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-primary);
      opacity: 0.8;
      letter-spacing: 0.02em;
    }

    .sri-dim-score {
      font-size: 0.68rem;
      font-weight: 600;
    }

    .sri-dim-score.high { color: #c08888; }
    .sri-dim-score.medium { color: #c9b06a; }
    .sri-dim-score.low { color: #6bb88a; }

    .sri-dim-bar-track {
      width: 100%;
      height: 6px;
      background: rgba(28, 58, 42, 0.05);
      border-radius: 3px;
      overflow: hidden;
    }

    .sri-dim-bar-fill {
      height: 100%;
      border-radius: 3px;
      transition: width 1s ease;
      min-width: 3px;
    }

    .sri-dim-bar-fill.high { background: linear-gradient(90deg, #a87676, #c08888); }
    .sri-dim-bar-fill.medium { background: linear-gradient(90deg, #b89e58, #c9b06a); }
    .sri-dim-bar-fill.low { background: linear-gradient(90deg, #5aa578, #6bb88a); }

    .sri-dim-insight {
      font-size: 0.58rem;
      color: #444444;
      line-height: 1.35;
      font-weight: 400;
      margin-top: 1px;
    }

    @keyframes sriFillBar {
      from { width: 0; }
    }

    /* SRI Outcome Block */
    .outcome-block {
      background: none;
      border: none;
      border-radius: 0;
      padding: 16px 0;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(28,58,42,0.08);
    }

    .outcome-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1c3a2a;
      margin-bottom: 10px;
    }

    .outcome-label svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .outcome-headline {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.45;
      margin-bottom: 0;
    }

    .outcome-headline-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .outcome-headline-row .outcome-headline {
      flex: 1;
    }
    .outcome-expand-btn {
      font-size: 0.85rem;
      color: var(--text-muted);
      cursor: pointer;
      transition: transform 0.25s ease;
      flex-shrink: 0;
      margin-top: 2px;
      opacity: 0.6;
      padding: 4px 8px;
    }
    .outcome-expand-btn:hover { opacity: 1; }
    .outcome-expand-btn.expanded {
      transform: rotate(180deg);
    }

    .outcome-reasons {
      list-style: none;
      padding: 0;
      display: none;
      margin-top: 10px;
    }
    .outcome-reasons.show {
      display: block;
    }

    .outcome-reasons li {
      font-size: 0.8rem;
      color: var(--text-secondary);
      line-height: 1.5;
      padding-left: 16px;
      position: relative;
      margin-bottom: 5px;
    }

    .outcome-reasons li::before {
      content: '>';
      position: absolute;
      left: 0;
      color: #2d5a40;
      font-weight: 600;
    }

    /* ====== PERCEPTION CHAIN BLOCK ====== */
    .perception-chain-block {
      background: none;
      border: none;
      border-radius: 0;
      padding: 16px 0;
      margin-bottom: 20px;
    }
    .perception-chain-label {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #1c3a2a;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .perception-chain-label svg { stroke: #1c3a2a; }
    .perception-chain-text {
      font-size: 0.85rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.8);
      margin: 0;
      font-style: italic;
    }
    @media (max-width: 768px) {
      .perception-chain-block { padding: 10px 12px; margin-bottom: 12px; }
      .perception-chain-label { font-size: 0.52rem; gap: 5px; margin-bottom: 5px; letter-spacing: 1px; }
      .perception-chain-label svg { width: 11px; height: 11px; }
      .perception-chain-text { font-size: 0.62rem; line-height: 1.35; }
    }

    /* Download Report Button */
    .download-report-block {
      text-align: center;
      margin: 20px 0 10px;
      padding: 0 20px;
    }
    .download-report-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
      color: #fff;
      border: 1px solid rgba(196,149,106,0.3);
      border-radius: 8px;
      font-size: 0.82rem;
      font-family: 'DM Sans', -apple-system, sans-serif;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: all 0.2s;
    }
    .download-report-btn:hover {
      background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
      border-color: rgba(196,149,106,0.5);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .download-report-btn svg { stroke: #c4956a; }
    @media (max-width: 768px) {
      .download-report-block { margin: 14px 0 8px; }
      .download-report-btn { font-size: 0.7rem; padding: 10px 22px; gap: 6px; }
      .download-report-btn svg { width: 14px; height: 14px; }
    }

    /* SRI Mobile */
    @media (max-width: 600px) {
      .sri-top { gap: 10px; }
      .sri-ring-container { width: 60px; height: 60px; }
      .sri-ring-svg { width: 60px; height: 60px; }
      .sri-ring-score { font-size: 1rem; }
      .sri-ring-score .sri-score-unit { font-size: 0.4rem; }
      .sri-block { padding: 12px 0; }
      .sri-block .verdict-title { font-size: 0.9rem; margin-bottom: 10px; }
      .sri-dimensions { gap: 8px 10px; }
      .sri-core-risk { font-size: 0.8rem; margin-top: 10px; max-width: 280px; }
      .sri-headline { font-size: 0.65rem; line-height: 1.3; }
      .sri-red-flag { font-size: 0.55rem; line-height: 1.3; }
      .sri-risk-badge { font-size: 0.48rem; padding: 2px 6px; margin-top: 4px; }
      .sri-dim-insight { font-size: 0.48rem; }
      .sri-dim-label { font-size: 0.55rem; }
      .sri-dim-score { font-size: 0.55rem; }
      .sri-traps-compact li { font-size: 0.55rem; padding: 3px 7px; }
      .sri-traps-compact .trap-details-link { font-size: 0.52rem; }
      .sri-dims-expand-btn { font-size: 0.55rem; }
    }

    /* ====== RESULTS TAB BAR ====== */
    .results-tab-bar {
      display: flex;
      gap: 4px;
      margin-bottom: 24px;
      background: var(--bg-secondary);
      border-radius: 14px;
      padding: 4px;
      border: 1px solid var(--border-subtle);
    }

    .results-tab {
      flex: 1;
      padding: 12px 20px;
      background: transparent;
      border: none;
      color: var(--text-secondary);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      cursor: pointer;
      border-radius: 11px;
      transition: all 0.3s ease;
    }

    .results-tab:hover {
      color: var(--text-primary);
      background: rgba(255,255,255,0.04);
    }

    .results-tab.active {
      background: rgba(28, 58, 42, 0.10);
      color: #1c3a2a;
      border: 1px solid rgba(28, 58, 42, 0.15);
    }

    .results-tab-content {
      display: none;
    }

    .results-tab-content.active {
      display: block;
    }

    /* ====== TRACKING REFERENCE CARD ====== */
    .tracking-ref-card {
      background: none;
      border-left: 2px solid rgba(28, 58, 42, 0.15);
      border-radius: 0;
      padding: 12px 0 12px 16px;
      margin-bottom: 20px;
    }

    .tracking-ref-label {
      font-size: 0.68rem;
      font-weight: 600;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      display: block;
      margin-bottom: 6px;
      opacity: 0.8;
    }

    .tracking-ref-text {
      font-size: 0.82rem;
      color: var(--text-primary);
      line-height: 1.55;
      margin: 0;
      font-style: italic;
      opacity: 0.9;
    }

    .tracking-divider {
      border: none;
      border-top: 1px solid rgba(28, 58, 42, 0.06);
      margin: 20px 0;
    }

    /* Deep section header (non-collapsible in tab mode) */
    .deep-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 0 20px 0;
    }

    .deep-section-header .deep-title {
      font-family: 'Lora', serif;
      font-size: 1.1rem;
      color: #1c3a2a;
      font-weight: 500;
    }

    .deep-section-header .deep-hint {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    /* ====== VERDICT SECTION (决策区) ====== */
    .verdict-section {
      background: none;
      border: none;
      border-radius: 0;
      padding: 24px 0;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(28,58,42,0.08);
    }

    .verdict-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .verdict-header-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .verdict-title {
      font-family: 'Lora', serif;
      font-size: 1.8rem;
      font-weight: 500;
      color: #1c3a2a;
      margin-bottom: 0;
    }

    .verdict-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    /* ====== Best Version Card ====== */
    .best-version-card {
      background: #f8f6f1;
      border: 2px solid #5a7d5a;
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 20px;
      position: relative;
    }
    .best-version-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #5a7d5a;
      margin-bottom: 10px;
    }
    .best-version-msg {
      font-size: 1.15rem;
      font-weight: 600;
      color: #1a1a18;
      line-height: 1.6;
      margin: 0 0 14px 0;
    }
    .best-version-copy {
      font-size: 0.75rem;
      color: #5a7d5a;
      border: 1px solid #5a7d5a;
      background: transparent;
      padding: 6px 14px;
      border-radius: 20px;
      cursor: pointer;
      float: right;
    }
    .best-version-copy:hover {
      background: #5a7d5a;
      color: #fff;
    }

    /* ====== 3 Risk Level Cards ====== */
    .risk-cards-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    /* Risk Level Tabs */
    .risk-level-tabs {
      display: flex;
      gap: 0;
      background: rgba(28,58,42,0.03);
      border-radius: 10px;
      padding: 3px;
      border: 1px solid rgba(28,58,42,0.08);
    }

    .risk-level-tab {
      flex: 1;
      padding: 9px 12px;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.76rem;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.25s ease;
      letter-spacing: 0.02em;
      text-align: center;
    }

    .risk-level-tab:hover {
      color: var(--text-secondary);
      background: rgba(255,255,255,0.04);
    }

    .risk-level-tab.active[data-level="low"] {
      background: rgba(107, 184, 138, 0.15);
      color: #6bb88a;
      border-color: rgba(107, 184, 138, 0.25);
    }

    .risk-level-tab.active[data-level="medium"] {
      background: rgba(201, 176, 106, 0.15);
      color: #c9b06a;
      border-color: rgba(201, 176, 106, 0.25);
    }

    .risk-level-tab.active[data-level="high"] {
      background: rgba(192, 136, 136, 0.15);
      color: #c08888;
      border-color: rgba(192, 136, 136, 0.25);
    }

    /* ====== UNIFIED SUGGESTION CARD (two-choice layout) ====== */
    .sugg-unified-card {
      background: none;
      border: none;
      border-radius: 0;
      padding: 8px 0;
    }

    .sugg-safe-row {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 18px;
    }
    .sugg-safe-badge {
      font-size: 0.78rem !important;
      font-weight: 600;
      color: #3d7a58 !important;
      background: none !important;
      border: none !important;
      padding: 0 !important;
      border-radius: 0 !important;
      letter-spacing: 0.02em;
    }

    /* Each choice — no box, just clean spacing */
    .sugg-choice {
      background: none;
      border: none;
      border-radius: 0;
      padding: 0;
      margin-bottom: 24px;
    }
    .sugg-choice:last-of-type {
      margin-bottom: 0;
    }
    .sugg-choice-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .sugg-choice-label strong {
      color: #1c3a2a;
      font-style: italic;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
    }
    /* Alternate label */
    .sugg-choice-label-alt {
      color: #8a8a80;
      padding-top: 20px;
      border-top: 1px solid rgba(28,58,42,0.08);
    }
    .sugg-choice-label-alt strong {
      color: #1c3a2a;
    }

    .sugg-choice-body {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .sugg-choice-msg {
      flex: 1;
      font-size: 1.05rem;
      font-weight: 400;
      color: #fff;
      line-height: 1.65;
      margin: 0;
      white-space: pre-wrap;
    }
    .sugg-choice-alt .sugg-choice-msg {
      font-size: 0.95rem;
      font-weight: 400;
      color: rgba(255,255,255,0.8);
    }

    /* Why text at bottom */
    .sugg-why-text {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
      line-height: 1.55;
      margin-top: 20px;
      padding-top: 0;
      border-top: none;
      font-style: italic;
    }

    /* Legacy compatibility — hide old elements that no longer exist */
    .risk-display-meta { display: none; }

    @media (max-width: 520px) {
      .risk-level-tab {
        font-size: 0.7rem;
        padding: 8px 8px;
      }
    }

    .risk-card {
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.25s ease;
    }

    .risk-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .risk-card-header:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .risk-card-badge {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .risk-card-badge.low {
      background: rgba(122, 184, 150, 0.15);
      color: #7ab896;
      border: 1px solid rgba(122, 184, 150, 0.3);
    }

    .risk-card-badge.medium {
      background: rgba(196, 169, 106, 0.15);
      color: #c4a96a;
      border: 1px solid rgba(196, 169, 106, 0.3);
    }

    .risk-card-badge.high {
      background: rgba(201, 123, 123, 0.15);
      color: #c97b7b;
      border: 1px solid rgba(201, 123, 123, 0.3);
    }

    .risk-card-strategy {
      flex: 1;
      font-size: 0.88rem;
      color: var(--text-secondary);
    }

    .risk-card-timing {
      font-size: 0.7rem;
      padding: 2px 8px;
      border-radius: 12px;
      white-space: nowrap;
    }

    .risk-card-timing.timing-now {
      color: #7ab896;
      background: rgba(122, 184, 150, 0.12);
    }

    .risk-card-timing.timing-wait-hours {
      color: #c4a96a;
      background: rgba(196, 169, 106, 0.12);
    }

    .risk-card-timing.timing-wait-days {
      color: #c97b7b;
      background: rgba(201, 123, 123, 0.12);
    }

    .risk-card-timing.timing-dont-send {
      color: #c97b7b;
      background: rgba(201, 123, 123, 0.15);
    }

    .risk-card-toggle {
      font-size: 0.78rem;
      color: var(--text-muted);
      opacity: 0.6;
    }

    .risk-card-body {
      padding: 0 16px 16px 16px;
    }

    .risk-card-message {
      font-size: 1.1rem;
      line-height: 1.65;
      color: var(--text-primary);
      margin-bottom: 12px;
      padding: 12px 16px;
      background: rgba(0, 0, 0, 0.15);
      border-radius: 10px;
      border-left: 3px solid transparent;
    }

    .risk-card-low .risk-card-message {
      border-left-color: rgba(122, 184, 150, 0.5);
    }

    .risk-card-medium .risk-card-message {
      border-left-color: rgba(196, 169, 106, 0.5);
    }

    .risk-card-high .risk-card-message {
      border-left-color: rgba(201, 123, 123, 0.5);
    }

    .risk-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .risk-card-why {
      font-size: 0.78rem;
      color: var(--text-muted);
      flex: 1;
    }

    .risk-card-why.high-risk-flag {
      color: #c97b7b;
    }

    /* Card backgrounds */
    .risk-card-low {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
    }

    .risk-card-low.expanded {
      border-color: rgba(122, 184, 150, 0.3);
    }

    .risk-card-medium {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
    }

    .risk-card-medium.expanded {
      border-color: rgba(196, 169, 106, 0.3);
    }

    .risk-card-high {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
    }

    .risk-card-high.expanded {
      border-color: rgba(201, 123, 123, 0.3);
    }

    .suggestion-box-main {
      background: none;
      border: none;
      border-radius: 0;
      padding: 16px 0;
      padding-bottom: 16px;
      margin-bottom: 24px;
      position: relative;
    }

    .suggestion-text {
      font-size: 1.15rem;
      line-height: 1.7;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .copy-btn-inline {
      display: inline-block;
      flex-shrink: 0;
      margin-left: auto;
      background: none;
      border: none;
      border-radius: 0;
      padding: 0;
      font-size: 0.72rem;
      color: var(--text-muted);
      cursor: pointer;
      transition: color 0.2s ease;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-color: rgba(28,58,42,0.2);
      align-self: flex-end;
    }

    .copy-btn-inline:hover {
      color: #1c3a2a;
      text-decoration-color: #1c3a2a;
    }

    /* Advice mode - screenshot analysis (no copy, shadow styling) */
    .suggestion-box-main.advice-mode {
      background: rgba(28, 58, 42, 0.04);
      border: 1px solid rgba(28, 58, 42, 0.10);
      box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .suggestion-box-main.advice-mode .suggestion-text {
      font-style: italic;
      color: var(--text-secondary);
      font-size: 1.05rem;
    }

    .suggestion-box-main.advice-mode .copy-btn-inline {
      display: none !important;
    }

    /* Message Breakdown inside Why section */
    .why-breakdown-section {
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-subtle);
    }

    /* Reply input section (screenshot mode - other person sent last) */
    .reply-input-section {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--border-subtle);
    }

    .reply-input-label {
      font-size: 0.85rem;
      color: #1c3a2a;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .reply-textarea {
      width: 100%;
      min-height: 80px;
      padding: 14px 16px;
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      background: var(--bg-elevated);
      color: var(--text-primary);
      font-size: 1rem;
      font-family: inherit;
      line-height: 1.5;
      resize: vertical;
      margin-bottom: 12px;
      transition: border-color 0.2s ease;
    }

    .reply-textarea:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    .reply-analyze-btn {
      font-size: 0.9rem;
      padding: 10px 24px;
    }

    /* Sender tags in message breakdown */
    .msg-sender-tag {
      font-size: 0.6rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .message-breakdown-item.msg-them {
      background: rgba(100, 100, 120, 0.15);
      border-color: rgba(100, 100, 120, 0.2);
    }

    .message-breakdown-item.msg-them .msg-sender-tag {
      color: var(--text-muted);
    }

    .message-breakdown-item.msg-user .msg-sender-tag {
      color: #1c3a2a;
    }

    /* Reply divider in breakdown */
    .breakdown-reply-divider {
      text-align: center;
      margin: 12px 0 8px;
      position: relative;
    }

    .breakdown-reply-divider::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 1px;
      background: var(--border-subtle);
    }

    .breakdown-reply-divider span {
      position: relative;
      background: var(--bg-primary);
      padding: 0 12px;
      font-size: 0.7rem;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Timing Section */
    .timing-section {
      margin-bottom: 20px;
    }

    .timing-label, .style-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .timing-options, .style-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .timing-btn, .style-btn {
      padding: 10px 16px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      font-size: 0.85rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .timing-btn:hover, .style-btn:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .timing-btn.active, .style-btn.active {
      background: rgba(28, 58, 42, 0.10);
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .silent-btn {
      /* 默认样式和其他按钮一样 */
    }

    .silent-btn:hover {
      border-color: var(--accent-rose);
      color: var(--accent-rose);
    }

    .silent-btn.active {
      background: rgba(212, 132, 122, 0.15);
      border-color: var(--accent-rose);
      color: var(--accent-rose);
    }

    .timing-hint {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 10px;
      font-style: italic;
      min-height: 1.2em;
    }

    .more-btn {
      background: transparent !important;
      border-style: dashed !important;
      color: var(--text-muted) !important;
    }

    .more-btn:hover {
      color: #1c3a2a !important;
      border-color: #1c3a2a !important;
    }

    .style-options-more {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px dashed var(--border-subtle);
    }

    /* ====== TONE DROPDOWN (inside suggestion box) ====== */
    .suggestion-bottom-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
    }
    .tone-dropdown-inline {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .tone-dropdown-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-family: 'DM Sans', sans-serif;
    }
    .tone-dropdown {
      padding: 6px 14px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      color: var(--text-primary);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      cursor: pointer;
      appearance: auto;
    }
    .tone-dropdown:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    /* ====== RISK BLOCK ====== */
    .risk-block {
      border-radius: 0;
      padding: 16px 0;
      margin-bottom: 20px;
      border: none;
      background: none;
      border-bottom: 1px solid rgba(28,58,42,0.08);
    }

    .risk-block.risk-high {
      background: none;
      border-color: transparent;
    }

    .risk-block.risk-medium {
      background: none;
      border-color: transparent;
    }

    .risk-block.risk-low,
    .risk-block.risk-none {
      background: none;
      border-color: transparent;
    }

    .risk-header {
      margin-bottom: 10px;
    }

    .risk-status-badge {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.2);
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

    .risk-high .risk-status-badge { color: #D4847A; }
    .risk-medium .risk-status-badge { color: #1c3a2a; }
    .risk-low .risk-status-badge,
    .risk-none .risk-status-badge { color: #8AB88A; }

    .risk-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .risk-issues {
      margin-bottom: 10px;
    }

    .risk-issue-item {
      font-size: 0.82rem;
      color: var(--text-secondary);
      margin-bottom: 6px;
      padding-left: 16px;
      position: relative;
      line-height: 1.4;
    }

    .risk-issue-item::before {
      content: '\2022';
      position: absolute;
      left: 0;
      color: #1c3a2a;
      font-weight: bold;
    }

    .risk-summary {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.4;
      margin: 0;
      padding-top: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* ====== TIMING RECOMMENDATION ====== */
    .timing-recommendation {
      margin-top: 10px;
      padding: 10px 14px;
      background: rgba(28, 58, 42, 0.05);
      border-left: 2px solid #1c3a2a;
      border-radius: 0 6px 6px 0;
      font-size: 0.78rem;
      color: var(--text-secondary);
      font-style: italic;
      line-height: 1.4;
    }

    .timing-btn.ai-recommended {
      background: rgba(28, 58, 42, 0.12) !important;
      border-color: #1c3a2a !important;
      color: #1c3a2a !important;
      font-weight: 600;
      box-shadow: 0 0 10px rgba(28, 58, 42, 0.10);
    }

    /* ====== WHY 2-COLUMN LAYOUT ====== */
    .why-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 4px;
    }

    .why-col {
      padding: 14px 16px;
    }

    .why-col-left {
      border-right: 1px solid rgba(28, 58, 42, 0.06);
    }

    .why-col-title {
      font-size: 0.68rem;
      font-weight: 600;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 14px;
      opacity: 0.85;
    }

    /* Bullet items (Watch Out / Risk) */
    .why-bullet {
      display: flex;
      gap: 8px;
      margin-bottom: 14px;
    }

    .why-bullet:last-child {
      margin-bottom: 0;
    }

    .why-bullet-icon {
      font-size: 0.82rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .why-bullet-body {
      flex: 1;
      min-width: 0;
    }

    .why-bullet-label {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 4px;
      opacity: 0.7;
    }

    .why-bullet-body .traps-list {
      margin: 0;
      padding: 0;
    }

    .why-overall-assessment {
      font-size: 0.78rem;
      color: var(--text-secondary);
      line-height: 1.55;
      margin: 3px 0 0 0;
    }

    .why-bullet-body .emotion-summary-text {
      font-size: 0.78rem;
      color: var(--text-primary);
      font-style: italic;
      line-height: 1.45;
      margin: 0 0 5px 0;
      padding: 0;
      background: none;
      border-left: none;
      border-radius: 0;
    }

    /* Right column: suggestion bullets */
    .why-suggest-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .why-suggest-list li {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 10px;
      padding-left: 22px;
      position: relative;
      line-height: 1.5;
    }

    .why-suggest-list li:last-child {
      margin-bottom: 0;
    }

    .why-suggest-list li::before {
      content: attr(data-icon);
      position: absolute;
      left: 0;
      font-size: 0.8rem;
    }
    .why-suggest-list li.blurred-reason {
      filter: blur(5px);
      user-select: none;
      pointer-events: none;
    }
    .why-suggest-list li.signup-tease {
      padding-left: 0;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.82rem;
      cursor: pointer;
      opacity: 0.9;
      margin-top: 6px;
    }
    .why-suggest-list li.signup-tease:hover {
      opacity: 1;
    }
    .why-suggest-list li.signup-tease::before {
      content: '';
    }

    /* Mobile: stack columns */
    @media (max-width: 520px) {
      .why-two-col {
        grid-template-columns: 1fr;
      }
      .why-col-left {
        border-right: none;
        border-bottom: 1px solid rgba(28, 58, 42, 0.06);
        padding-bottom: 16px;
      }
      .why-col-right {
        padding-top: 16px;
      }
    }

    /* ====== RESULTS FOOTER ====== */
    .results-footer-note {
      text-align: center;
      padding: 20px 16px 8px;
      margin-top: 20px;
      border-top: 1px solid var(--border-subtle);
      font-size: 0.78rem;
      color: var(--text-muted);
      font-style: italic;
    }

    /* Why Section (可折叠) */
    .why-section {
      background: none;
      border: none;
      border-radius: 0;
      margin-bottom: 24px;
      overflow: hidden;
      border-bottom: 1px solid rgba(28,58,42,0.08);
    }

    /* ====== ADD CONTEXT / UPLOAD HISTORY SECTION ====== */
    .add-context-section {
      background: transparent;
      border: none;
      padding: 40px 0;
      margin-bottom: 16px;
    }

    /* Deep Analysis Section - 可折叠，与 why-section 对齐 */
    .deep-section {
      background: none;
      border: none;
      border-radius: 0;
      margin-bottom: 24px;
      overflow: hidden;
      border-bottom: 1px solid rgba(28,58,42,0.08);
    }

    .deep-toggle {
      display: flex;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .deep-toggle:hover {
      background: rgba(255,255,255,0.02);
    }

    .deep-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .deep-hint {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-left: 12px;
    }

    .deep-arrow {
      margin-left: auto;
      color: #1c3a2a;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .deep-toggle.active .deep-arrow {
      transform: rotate(180deg);
    }

    .deep-content {
      display: none;
      padding: 0 24px 24px;
    }

    .deep-content.show {
      display: block;
    }

    .deep-input-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 24px 0 20px;
    }

    .deep-tab-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      background: transparent;
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 25px;
      color: var(--text-muted);
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .deep-tab-btn:hover {
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .deep-tab-btn.active {
      background: transparent;
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .deep-input-mode {
      display: none;
    }

    .deep-input-mode.active {
      display: block;
    }

    .deep-textarea {
      min-height: 150px;
      font-size: 1rem;
    }

    .paste-format-hint {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    /* Structured message rows */
    .paste-messages-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-height: 320px;
      overflow-y: auto;
      padding-right: 4px;
    }

    .paste-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .paste-sender-label {
      flex-shrink: 0;
      width: 50px;
      padding: 6px 0;
      font-size: 0.72rem;
      font-weight: 600;
      text-align: right;
      cursor: pointer;
      user-select: none;
      border-radius: 6px;
      transition: all 0.15s ease;
    }

    .paste-sender-label:hover {
      opacity: 0.7;
    }

    .paste-sender-label.them {
      color: var(--text-muted);
    }

    .paste-sender-label.me {
      color: #1c3a2a;
    }

    .paste-input {
      flex: 1;
      padding: 8px 12px;
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      background: var(--bg-elevated);
      color: var(--text-primary);
      font-size: 0.88rem;
      font-family: inherit;
      transition: border-color 0.2s ease;
    }

    .paste-input:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    .paste-input::placeholder {
      color: var(--text-muted);
      opacity: 0.5;
    }

    .paste-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 10px;
    }

    .paste-add-btn {
      background: none;
      border: 1px dashed var(--border-subtle);
      border-radius: 8px;
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 0.78rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .paste-add-btn:hover {
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .paste-line-counter {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .paste-line-counter.over-limit {
      color: var(--accent-rose);
      font-weight: 600;
    }

    .add-context-header {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 16px;
    }

    .add-context-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .add-context-subtitle {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .add-context-upload {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Deep showcase - 使用图片 */
    .deep-showcase-img {
      margin-bottom: 24px;
    }

    .deep-showcase-img img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    /* iPhone 风格手机 - 钛金属质感 */
    .phone-mockup {
      width: 220px;
      height: 450px;
      background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 50%, #2a2a2c 100%);
      border-radius: 45px;
      padding: 12px;
      box-shadow:
        inset 0 0 0 3px #48484a,
        inset 0 0 0 4px #3a3a3c,
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    /* 钛金属边框光泽 */
    .phone-mockup::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 45px;
      background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.05) 100%);
      pointer-events: none;
    }

    /* 侧边按钮 */
    .phone-mockup::after {
      content: '';
      position: absolute;
      right: -2px;
      top: 120px;
      width: 3px;
      height: 60px;
      background: linear-gradient(180deg, #5a5a5c, #4a4a4c, #5a5a5c);
      border-radius: 0 2px 2px 0;
    }

    /* Dynamic Island */
    .phone-notch {
      width: 105px;
      height: 30px;
      background: #000;
      border-radius: 20px;
      margin: 12px auto 0;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }

    .phone-screen {
      background: #000;
      border-radius: 35px;
      padding: 0;
      height: calc(100% - 12px);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
    }

    /* 聊天区域 */
    .phone-chat-area {
      flex: 1;
      padding: 45px 10px 15px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
      background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    }

    .phone-home-bar {
      width: 120px;
      height: 5px;
      background: #fff;
      border-radius: 3px;
      margin: 8px auto 8px;
      opacity: 0.8;
    }

    /* Chat messages in phone - iMessage style */
    .chat-msg {
      padding: 9px 14px;
      border-radius: 18px;
      font-size: 0.7rem;
      line-height: 1.35;
      max-width: 78%;
    }

    .chat-msg.them {
      background: #3b3b3d;
      color: #ffffff;
      align-self: flex-start;
      border-bottom-left-radius: 5px;
    }

    .chat-msg.me {
      background: linear-gradient(135deg, #1c3a2a, #c49a4a);
      color: #000000;
      align-self: flex-end;
      border-bottom-right-radius: 5px;
      font-weight: 500;
    }

    /* Insights Card */
    .insights-card {
      background: rgba(28, 28, 30, 0.9);
      border: 1px solid rgba(28, 58, 42, 0.10);
      border-radius: 20px;
      padding: 24px;
      max-width: 300px;
      position: relative;
      backdrop-filter: blur(10px);
    }

    .insights-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(28, 58, 42, 0.06);
    }

    .insights-icon {
      font-size: 1.3rem;
    }

    .insights-title {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #1c3a2a;
    }

    .insights-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .insight-item {
      font-size: 0.82rem;
      line-height: 1.6;
    }

    .insight-label {
      color: #1c3a2a;
      font-weight: 600;
      display: block;
      margin-bottom: 4px;
    }

    .insight-value {
      color: var(--text-secondary);
    }

    .insights-sparkle {
      position: absolute;
      bottom: 16px;
      right: 20px;
      font-size: 1.4rem;
      color: #1c3a2a;
      opacity: 0.4;
    }

    @media (max-width: 700px) {
      .deep-showcase {
        flex-direction: column;
        gap: 24px;
      }
      .phone-mockup {
        width: 200px;
        height: 400px;
      }
      .insights-card {
        max-width: 100%;
      }
    }

    .add-context-upload-area {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    .upload-drop-area {
      border: 2px dashed rgba(28, 58, 42, 0.25);
      border-radius: 16px;
      padding: 24px 40px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      background: transparent;
      width: 100%;
      max-width: 450px;
    }

    .upload-drop-area:hover {
      border-color: #1c3a2a;
      background: rgba(28, 58, 42, 0.05);
    }

    .upload-drop-area .drop-icon {
      font-size: 2.5rem;
      margin-bottom: 8px;
    }

    .upload-drop-area .drop-text {
      font-size: 1rem;
      color: #1c3a2a;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .upload-drop-area .drop-hint {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .reanalyze-btn {
      padding: 12px 24px;
      background: linear-gradient(135deg, #1c3a2a, #2d5a40);
      border: none;
      border-radius: 24px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #1a1a1a;
      cursor: pointer;
      transition: all 0.2s ease;
      align-self: center;
    }

    .reanalyze-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 15px rgba(28, 58, 42, 0.20);
    }

    .upload-history-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: rgba(28, 58, 42, 0.08);
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 24px;
      font-size: 0.9rem;
      color: #1c3a2a;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .upload-history-btn:hover {
      background: rgba(28, 58, 42, 0.12);
      border-color: #1c3a2a;
    }

    .upload-icon {
      font-size: 1rem;
    }

    .upload-history-preview {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 24px 20px;
      border: 2px dashed rgba(28, 58, 42, 0.25);
      border-radius: 16px;
      background: transparent;
    }

    .upload-history-preview img {
      max-height: 220px;
      max-width: 100%;
      width: auto;
      border-radius: 12px;
      border: 1px solid rgba(28, 58, 42, 0.12);
    }

    .remove-preview-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--accent-rose);
      color: white;
      border: none;
      font-size: 14px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .reanalyze-btn {
      padding: 10px 20px;
      background: #1c3a2a;
      color: var(--bg-primary);
      border: none;
      border-radius: 24px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .reanalyze-btn:hover {
      background: #2d5a40;
      transform: translateY(-1px);
    }

    /* ====== EXAMPLE PREVIEW ====== */
    .add-context-example {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      padding: 16px;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 12px;
    }

    .example-screenshot {
      flex: 1;
      max-width: 200px;
    }

    .example-chat-preview {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 0.75rem;
    }

    .chat-bubble {
      padding: 8px 12px;
      border-radius: 16px;
      max-width: 90%;
    }

    .chat-bubble.them {
      background: rgba(255, 255, 255, 0.1);
      color: var(--text-secondary);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }

    .chat-bubble.me {
      background: rgba(28, 58, 42, 0.12);
      color: #1c3a2a;
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .example-arrow {
      font-size: 1.5rem;
      color: #1c3a2a;
      opacity: 0.6;
    }

    .example-insight {
      flex: 1;
    }

    .insight-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #1c3a2a;
      display: block;
      margin-bottom: 8px;
    }

    .insight-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.8rem;
      color: var(--text-secondary);
    }

    .insight-list li {
      padding: 4px 0;
      padding-left: 16px;
      position: relative;
    }

    .insight-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #1c3a2a;
      font-size: 0.7rem;
    }

    /* ====== WHY TOGGLE - 更显眼的设计 ====== */
    .why-toggle {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 24px;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 12px;
      transition: all 0.2s ease;
    }

    .why-toggle:hover {
      background: rgba(28, 58, 42, 0.05);
    }

    .why-text {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .why-hint {
      font-size: 0.85rem;
      color: var(--text-secondary);
      opacity: 0.7;
    }

    .why-arrow {
      margin-left: auto;
      font-size: 0.8rem;
      color: #1c3a2a;
      transition: transform 0.3s ease;
    }

    .why-toggle.active .why-arrow {
      transform: rotate(180deg);
    }

    .why-content {
      display: none;
      padding: 16px;
    }

    .why-content.show {
      display: block;
    }

    .section-title-small {
      font-size: 0.7rem;
      font-weight: 600;
      color: #1c3a2a;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin: 0 0 8px;
    }

    /* ====== ANALYSIS CARD STACK - 紧凑卡片栈 ====== */
    .analysis-card-stack {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* ====== EMOTION + TRAPS ROW - 并排紧凑 ====== */
    .analysis-row {
      display: flex;
      gap: 10px;
      align-items: stretch;
    }

    .analysis-row .emotion-chart-section {
      flex: 1.2;
      margin: 0;
      background: rgba(0, 0, 0, 0.12);
      border-radius: 10px;
      padding: 10px 12px;
      min-width: 180px;
    }

    .analysis-row .traps-section {
      flex: 1;
      margin: 0;
      background: rgba(0, 0, 0, 0.12);
      border-radius: 10px;
      padding: 10px 12px;
      min-width: 200px;
    }

    /* ====== EMOTION BAR CHART - 迷你仪表板 ====== */
    .emotion-chart-section {
      margin: 0;
    }

    .emotion-bar-chart {
      display: flex;
      justify-content: flex-start;
      gap: 14px;
      min-height: 45px;
      align-items: flex-end;
    }

    .emotion-bar-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 0 0 auto;
      min-width: 65px;
    }

    .emotion-bar {
      width: 100%;
      max-width: 32px;
      border-radius: 4px 4px 2px 2px;
      transition: height 0.3s ease;
      min-height: 16px;
    }

    .emotion-bar.positive {
      background: linear-gradient(to top, #67e8f9, #22d3ee);
      box-shadow: 0 0 12px rgba(103, 232, 249, 0.4);
    }

    .emotion-bar.negative {
      background: linear-gradient(to top, #c4b5fd, #a78bfa);
      box-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
    }

    .emotion-bar-value {
      font-size: 0.75rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 4px;
      text-align: center;
    }

    .emotion-bar-label {
      font-size: 0.8rem;
      color: var(--text-secondary);
      text-align: center;
      margin-top: 6px;
      line-height: 1.3;
    }

    .emotion-bar-label .emoji {
      font-size: 1.1rem;
      display: block;
      margin-bottom: 2px;
    }

    .emotion-chart-note {
      font-size: 0.65rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 6px;
      font-style: italic;
    }

    /* ====== TRAPS SECTION ====== */
    .traps-section {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 10px;
      padding: 12px;
    }

    .traps-section .section-title-small {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .traps-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .trap-item {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 10px;
      background: rgba(251, 191, 36, 0.1);
      border: 1px solid rgba(251, 191, 36, 0.25);
      border-radius: 8px;
      font-size: 0.75rem;
      color: #fbbf24;
    }

    .no-traps {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-style: italic;
    }

    /* ====== YOUR MESSAGE - 带箭头注释 ====== */
    .messages-annotated {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .message-annotated-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px;
      background: rgba(0, 0, 0, 0.15);
      border-radius: 10px;
    }

    .message-text-left {
      flex: 1;
      font-family: 'Lora', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: var(--text-primary);
      line-height: 1.4;
    }

    .message-arrow {
      color: #1c3a2a;
      opacity: 0.6;
      font-size: 1rem;
      padding-top: 2px;
    }

    .message-annotations {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 140px;
    }

    .annotation-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.7rem;
      font-weight: 500;
    }

    .annotation-chip.emotion {
      background: rgba(167, 139, 250, 0.15);
      color: #c4b5fd;
      border: 1px solid rgba(167, 139, 250, 0.3);
    }

    .annotation-chip.trap {
      background: rgba(251, 191, 36, 0.15);
      color: #fbbf24;
      border: 1px solid rgba(251, 191, 36, 0.3);
    }

    .emotion-chart-legend {
      display: none; /* 隐藏旧的 legend */
      margin-top: 12px;
      font-size: 0.75rem;
    }

    .legend-positive {
      color: #4ade80;
    }

    .legend-negative {
      color: #f87171;
    }

    /* ====== TRAPS SECTION ====== */
    .traps-section {
      margin: 16px 0;
    }

    .traps-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .trap-item {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      padding: 8px 10px;
      background: rgba(251, 191, 36, 0.08);
      border: 1px solid rgba(251, 191, 36, 0.2);
      border-radius: 8px;
      font-size: 0.75rem;
      line-height: 1.4;
    }

    .trap-item .trap-icon {
      color: #fbbf24;
      flex-shrink: 0;
    }

    .trap-item .trap-text {
      display: inline;
    }

    .trap-item .trap-name {
      color: #fbbf24;
      font-weight: 600;
    }

    .trap-item .trap-dash {
      color: var(--text-muted);
      margin: 0 4px;
    }

    .trap-item .trap-explanation {
      color: var(--text-secondary);
    }

    /* ====== MOBILE RESPONSIVE ====== */
    @media (max-width: 600px) {
      .analysis-row {
        flex-direction: column;
        gap: 12px;
      }
      .analysis-row .emotion-chart-section,
      .analysis-row .traps-section {
        min-width: unset;
        width: 100%;
      }
    }

    /* Compact Assessment */
    .assessment-section-compact {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 16px;
      background: rgba(28, 58, 42, 0.02);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      margin-top: 16px;
    }

    .wellness-score-mini {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 90px;
      gap: 4px;
    }

    .score-num-mini {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1c3a2a;
      line-height: 1;
    }

    .score-label-mini {
      font-size: 0.65rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .score-risk-level {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .score-risk-level.risk-high { color: #D4847A; }
    .score-risk-level.risk-medium { color: #1c3a2a; }
    .score-risk-level.risk-low,
    .score-risk-level.risk-none { color: #8AB88A; }

    .assessment-text-compact h4 {
      font-size: 1rem;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .assessment-text-compact p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .section-title {
      font-size: 0.85rem;
      font-weight: 500;
      color: #1c3a2a;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, #2d5a40, transparent);
    }

    /* Safety Alert — subtle bottom bar */
    .safety-alert-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(28, 28, 31, 0.95);
      border-top: 1px solid rgba(212, 132, 122, 0.2);
      padding: 10px 20px;
      z-index: 9999;
      align-items: center;
      justify-content: center;
      gap: 12px;
      backdrop-filter: blur(8px);
    }
    .safety-alert-bar.show { display: flex; }
    .safety-alert-text {
      color: var(--text-muted);
      font-size: 0.75rem;
    }
    .safety-link {
      color: var(--accent-rose);
      text-decoration: underline;
      font-weight: 600;
    }
    .safety-alert-close {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.1rem;
      cursor: pointer;
      padding: 0 4px;
      opacity: 0.6;
    }
    .safety-alert-close:hover { opacity: 1; }

    /* Screenshot Analysis */
    .screenshot-analysis {
      display: flex;
      gap: 32px;
      margin-bottom: 48px;
    }

    @media (max-width: 900px) {
      .screenshot-analysis {
        flex-direction: column;
      }
    }

    .screenshot-side-by-side {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .screenshot-left {
      flex-shrink: 0;
    }

    .screenshot-left img {
      max-height: 500px;
      width: auto;
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
    }

    .screenshot-right {
      flex: 1;
      min-width: 280px;
    }

    .breakdown-header {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #1c3a2a;
      margin-bottom: 12px;
    }

    .message-breakdown-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .message-breakdown-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 12px;
      background: var(--bg-secondary);
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      animation: itemFadeIn 0.25s ease-out forwards;
      opacity: 0;
    }

    .message-breakdown-item .msg-number {
      flex-shrink: 0;
      min-width: 32px;
      padding: 2px 6px;
      background: rgba(28, 58, 42, 0.06);
      border: 1px solid #2d5a40;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      font-weight: 600;
      color: #1c3a2a;
    }

    .message-breakdown-item.msg-them .msg-number {
      background: rgba(100, 100, 120, 0.1);
      border-color: rgba(100, 100, 120, 0.3);
    }

    .message-breakdown-item .msg-content {
      flex: 1;
      min-width: 0;
    }

    .message-breakdown-item .msg-text {
      font-size: 0.85rem;
      color: var(--text-primary);
      margin-bottom: 4px;
      line-height: 1.3;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .message-breakdown-item .msg-labels {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }

    .msg-label {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 2px 8px;
      border-radius: 12px;
      font-size: 0.7rem;
      font-weight: 500;
    }

    .msg-label.positive {
      background: rgba(138, 184, 138, 0.15);
      color: var(--accent-sage);
    }

    .msg-label.negative {
      background: rgba(212, 132, 122, 0.15);
      color: var(--accent-rose);
    }

    .msg-label.neutral {
      background: rgba(28, 58, 42, 0.10);
      color: #1c3a2a;
    }

    .msg-label.pattern-label {
      background: rgba(122, 158, 184, 0.15);
      color: var(--accent-blue);
    }

    .msg-label.trap-label {
      background: rgba(168, 138, 201, 0.15);
      color: var(--accent-purple);
    }

    .msg-suggestion {
      margin-top: 8px;
      padding: 8px 12px;
      background: rgba(138, 184, 138, 0.1);
      border-left: 2px solid var(--accent-sage);
      border-radius: 0 8px 8px 0;
      font-size: 0.8rem;
      color: var(--accent-sage);
      line-height: 1.4;
    }

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

    .screenshot-summary-section {
      margin-top: 32px;
    }

    @media (max-width: 768px) {
      .screenshot-side-by-side {
        flex-direction: column;
      }
      .screenshot-left img {
        max-width: 100%;
        max-height: 400px;
      }
      .screenshot-right {
        min-width: auto;
      }
    }

    /* Category Summary - Compact 3-column */
    .category-summary {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .category-card {
      flex: 1 1 200px;
      max-width: 300px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 14px 16px;
      transition: all 0.2s ease;
    }

    .category-card:hover {
      border-color: #2d5a40;
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .category-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .category-icon.emotion { background: rgba(212, 132, 122, 0.15); }
    .category-icon.intent { background: rgba(138, 184, 138, 0.15); }
    .category-icon.pattern { background: rgba(122, 158, 184, 0.15); }
    .category-icon.energy { background: rgba(28, 58, 42, 0.10); }

    .category-title {
      font-size: 0.7rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .category-value {
      font-size: 1rem;
      color: var(--text-primary);
      font-weight: 500;
      margin-top: 2px;
    }

    .category-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .mini-tag {
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      background: var(--bg-elevated);
      color: var(--text-secondary);
    }

    .mini-tag.with-evidence {
      cursor: help;
      position: relative;
      transition: all 0.2s ease;
    }

    .mini-tag.with-evidence:hover {
      background: #1c3a2a;
      color: var(--bg-primary);
      transform: translateY(-2px);
    }

    .mini-tag.with-evidence[title]:hover::after {
      content: attr(title);
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--bg-secondary);
      color: var(--text-primary);
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 0.8rem;
      white-space: normal;
      width: max-content;
      max-width: 280px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      border: 1px solid #1c3a2a;
      z-index: 1000;
      line-height: 1.4;
    }

    .mini-tag.with-evidence[title]:hover::before {
      content: '';
      position: absolute;
      bottom: calc(100% + 2px);
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: #1c3a2a;
      z-index: 1001;
    }

    /* Message Items */
    .message-item {
      padding: 24px 0;
      border-bottom: 1px solid var(--border-subtle);
    }

    .message-item:last-child {
      border-bottom: none;
    }

    .message-text {
      font-family: 'Lora', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--text-primary);
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .message-text::before {
      content: '"';
      color: #2d5a40;
      opacity: 0.5;
    }

    .message-text::after {
      content: '"';
      color: #2d5a40;
      opacity: 0.5;
    }

    .message-labels-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .label-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .label-chip.emotion {
      background: rgba(212, 132, 122, 0.12);
      color: var(--accent-rose);
    }

    .label-chip.pattern {
      background: rgba(122, 158, 184, 0.12);
      color: var(--accent-blue);
    }

    .label-chip.trap {
      background: rgba(168, 138, 201, 0.12);
      color: var(--accent-purple);
    }

    /* Assessment */
    .assessment-section {
      margin: 48px 0;
      padding: 32px;
      background: var(--bg-secondary);
      border-radius: 20px;
      border: 1px solid var(--border-subtle);
    }

    .assessment-header {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .wellness-score-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .wellness-score {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--bg-primary);
      border: 2px solid #1c3a2a;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.3s ease;
    }

    /* Wellness score glow based on level */
    .wellness-score.score-low {
      border-color: #d4847a;
      box-shadow: 0 0 20px rgba(212, 132, 122, 0.4);
    }

    .wellness-score.score-mid {
      border-color: #1c3a2a;
      box-shadow: 0 0 20px rgba(28, 58, 42, 0.25);
    }

    .wellness-score.score-high {
      border-color: #8ab88a;
      box-shadow: 0 0 20px rgba(138, 184, 138, 0.4);
    }

    .wellness-score .score-text {
      display: flex;
      align-items: baseline;
    }

    .wellness-score .score-num {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1c3a2a;
    }

    .wellness-score .score-total {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-left: 2px;
    }

    .wellness-label-small {
      font-size: 0.7rem;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .wellness-status {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 12px;
      margin-top: 6px;
    }

    .wellness-status.status-low {
      background: rgba(212, 132, 122, 0.2);
      color: #d4847a;
    }

    .wellness-status.status-mid {
      background: rgba(28, 58, 42, 0.12);
      color: #1c3a2a;
    }

    .wellness-status.status-high {
      background: rgba(138, 184, 138, 0.2);
      color: #8ab88a;
      letter-spacing: 0.05em;
    }

    .assessment-text {
      flex: 1;
    }

    .assessment-text h3 {
      font-family: 'Lora', serif;
      font-size: 1.5rem;
      color: #1c3a2a;
      margin-bottom: 6px;
      font-weight: 500;
    }

    .assessment-text p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ====== STEP LABELS ====== */
    .step-inline {
      color: var(--text-secondary);
      font-weight: 500;
      margin-right: 8px;
    }

    /* ====== ACTION OPTIONS ====== */
    .action-section {
      margin-top: 24px;
      text-align: center;
    }

    .action-section .section-title {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: #1c3a2a;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .action-options {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 12px;
      justify-content: center;
    }

    .action-card {
      flex: 0 1 auto;
      min-width: 180px;
      max-width: 220px;
      padding: 20px 28px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }

    .action-card:hover {
      border-color: #2d5a40;
      background: rgba(28, 58, 42, 0.06);
      transform: translateY(-4px);
    }

    .action-card.selected {
      border-color: #1c3a2a;
      background: rgba(28, 58, 42, 0.06);
      transform: translateY(-4px);
    }

    .action-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }

    .action-card h4 {
      font-size: 1.1rem;
      color: var(--text-primary);
      margin: 0;
      font-weight: 500;
    }

    .action-reason {
      display: none;
    }

    .action-hint {
      display: none !important;
    }

    .action-hint.show {
      display: none !important;
    }

    .action-hint p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin: 0;
    }

    /* ====== WRITING SECTION ====== */
    .writing-section {
      margin-top: 20px;
      padding: 20px;
      background: var(--bg-secondary);
      border-radius: 16px;
    }

    .writing-section > .section-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #1c3a2a;
      margin-bottom: 20px;
    }

    .writing-area {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 12px;
    }

    @media (max-width: 768px) {
      .writing-area { grid-template-columns: 1fr; }
    }

    .writing-column {
      display: flex;
      flex-direction: column;
    }

    .column-header {
      font-size: 0.95rem;
      font-weight: 500;
      color: #1c3a2a;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .draft-textarea {
      flex: 1;
      min-height: 160px;
      padding: 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-primary);
      resize: vertical;
    }

    .draft-textarea:focus {
      outline: none;
      border-color: #2d5a40;
    }

    .draft-textarea::placeholder {
      color: var(--text-muted);
    }

    .ai-suggestion {
      flex: 1;
      min-height: 160px;
      padding: 20px;
      background: rgba(138, 184, 138, 0.08);
      border: 1px solid rgba(138, 184, 138, 0.25);
      border-radius: 14px;
      position: relative;
      overflow: hidden;
    }

    /* AI suggestion shimmer effect - runs 2 times then stops */
    .ai-suggestion.has-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(138, 184, 138, 0.2), transparent);
      animation: shimmer 1.5s ease-out 2;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .ai-placeholder {
      color: var(--text-muted);
      font-size: 1rem;
    }

    .ai-suggestion-text {
      font-family: 'Lora', serif;
      font-size: 1.2rem;
      color: var(--text-primary);
      line-height: 1.6;
    }

    .btn-suggestion {
      margin-top: 12px;
      padding: 14px 28px;
      background: var(--accent-sage);
      color: var(--bg-primary);
      border: none;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-suggestion:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 20px rgba(138, 184, 138, 0.3);
    }

    .ai-reasoning {
      margin-top: 24px;
      padding: 20px;
      background: rgba(28, 58, 42, 0.05);
      border: 1px solid rgba(28, 58, 42, 0.12);
      border-radius: 12px;
    }

    .reasoning-header {
      font-size: 0.85rem;
      font-weight: 600;
      color: #1c3a2a;
      margin-bottom: 8px;
    }

    .ai-reasoning p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ====== FEEDBACK SECTION (collapsible) ====== */
    .feedback-section {
      margin-top: 32px;
      background: none;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid rgba(28,58,42,0.08);
      overflow: hidden;
    }

    .track-patterns-link {
      padding: 18px 24px;
      margin-top: 8px;
      cursor: pointer;
      color: var(--text-muted);
      font-size: 0.85rem;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      text-align: left;
      transition: background 0.2s, color 0.2s;
    }
    .track-patterns-link:hover {
      background: rgba(255,255,255,0.03);
      color: var(--text-secondary);
    }

    .feedback-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      cursor: pointer;
      user-select: none;
      transition: background 0.2s;
    }

    .feedback-toggle:hover {
      background: rgba(255,255,255,0.03);
    }

    .feedback-toggle-text {
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    .feedback-toggle-arrow {
      color: var(--text-muted);
      font-size: 0.75rem;
      transition: transform 0.3s ease;
    }

    .feedback-toggle.active .feedback-toggle-arrow {
      transform: rotate(180deg);
    }

    .feedback-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 24px;
    }

    .feedback-body.show {
      max-height: 350px;
      padding: 0 24px 24px;
    }

    .feedback-hint {
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-bottom: 14px;
    }

    .feedback-textarea {
      width: 100%;
      min-height: 120px;
      padding: 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-primary);
      resize: vertical;
      margin-bottom: 20px;
    }

    .feedback-textarea:focus {
      outline: none;
      border-color: #2d5a40;
    }

    .feedback-textarea::placeholder {
      color: var(--text-muted);
    }

    /* Legacy - keep for compatibility */
    .choice-card h4 {
      font-size: 1.15rem;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .choice-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    /* Panels */
    .rewrite-panel, .review-panel {
      display: none;
      margin-top: 48px;
      padding: 48px;
      background: var(--bg-secondary);
      border-radius: 24px;
    }

    .rewrite-panel.show, .review-panel.show { display: block; }

    .tone-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .tone-chip {
      padding: 14px 28px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      font-size: 1rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tone-chip:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .tone-chip.selected {
      background: rgba(28, 58, 42, 0.06);
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .tone-style-row {
      display: flex;
      gap: 12px;
      margin-bottom: 12px;
    }

    .tone-style-col {
      flex: 1;
    }

    .tone-style-col .context-label {
      display: none;
    }

    .tone-style-col select {
      width: 100%;
      padding: 16px 44px 16px 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      font-size: 1.15rem;
      color: var(--text-primary);
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A55C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      transition: all 0.3s ease;
    }

    .tone-style-col select:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    .tone-style-col select option {
      font-size: 1.1rem;
      padding: 12px;
    }

    .style-chip {
      padding: 14px 28px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      font-size: 1rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .style-chip:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .style-chip.selected {
      background: rgba(28, 58, 42, 0.06);
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    @media (max-width: 768px) {
      .tone-style-row {
        flex-direction: column;
        gap: 24px;
      }
    }

    .rewrite-hint {
      color: var(--text-secondary);
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .reply-input {
      width: 100%;
      min-height: 120px;
      max-height: 200px;
      padding: 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--text-primary);
      resize: vertical;
      transition: all 0.3s ease;
      margin-bottom: 8px;
    }

    .reply-input:focus {
      outline: none;
      border-color: #2d5a40;
    }

    .reply-input::placeholder {
      color: var(--text-muted);
    }

    .improved-messages {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }

    .improved-message-item {
      padding: 20px 24px;
      background: rgba(138, 184, 138, 0.08);
      border: 1px solid rgba(138, 184, 138, 0.25);
      border-radius: 16px;
    }

    .improved-message-item .msg-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: var(--accent-sage);
      color: var(--bg-primary);
      border-radius: 50%;
      font-size: 0.75rem;
      font-weight: 600;
      margin-right: 12px;
    }

    .improved-message-item .msg-text {
      font-family: 'Lora', serif;
      font-size: 1.2rem;
      color: var(--text-primary);
      line-height: 1.5;
      display: inline;
    }

    .rewrite-result {
      display: none;
      margin-top: 32px;
    }

    .rewrite-result.show { display: block; }

    .before-after-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    @media (max-width: 600px) {
      .before-after-compare {
        grid-template-columns: 1fr;
      }
    }

    .compare-box {
      padding: 20px;
      border-radius: 12px;
    }

    .compare-box.before {
      background: rgba(212, 132, 122, 0.08);
      border: 1px solid rgba(212, 132, 122, 0.2);
    }

    .compare-box.after {
      background: rgba(138, 184, 138, 0.08);
      border: 1px solid rgba(138, 184, 138, 0.2);
    }

    .compare-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .compare-box.before .compare-label {
      color: var(--accent-rose);
    }

    .compare-box.after .compare-label {
      color: var(--accent-sage);
    }

    .compare-text {
      font-family: 'Lora', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .copy-btn {
      margin-top: 20px;
      padding: 12px 24px;
      background: var(--accent-sage);
      color: var(--bg-primary);
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .copy-btn:hover {
      transform: scale(1.05);
    }

    .review-title {
      font-family: 'Lora', serif;
      font-size: 1.6rem;
      color: #1c3a2a;
      margin-bottom: 20px;
    }

    .review-content {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    .review-tips {
      margin-top: 24px;
      padding: 24px;
      background: var(--bg-elevated);
      border-radius: 16px;
    }

    .review-tips li {
      font-size: 1rem;
      color: var(--text-secondary);
      margin-bottom: 12px;
      padding-left: 12px;
    }

    /* 三个按钮一行 */
    .guide-links-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .btn-try-another {
      display: inline-flex;
      align-items: center;
      padding: 12px 28px;
      background: linear-gradient(135deg, #1c3a2a 0%, #2d5a40 100%);
      color: #fff;
      border: none;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.02em;
      box-shadow: 0 0 20px rgba(28, 58, 42, 0.15);
      transition: all 0.3s ease;
    }
    .btn-try-another:hover {
      box-shadow: 0 0 32px rgba(28, 58, 42, 0.25);
      transform: translateY(-1px);
    }
    .guide-link-btn {
      display: inline-flex;
      align-items: center;
      padding: 12px 24px;
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      color: var(--text-secondary);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .guide-link-btn:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    /* Reset — 底部按钮(跟上面一样醒目) */
    .reset-section {
      text-align: center;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border-subtle);
    }
    .reset-section .btn-secondary {
      background: linear-gradient(135deg, #1c3a2a 0%, #2d5a40 100%);
      color: #fff;
      border: none;
      font-size: 1.05rem;
      font-weight: 700;
      padding: 14px 36px;
      box-shadow: 0 0 20px rgba(28, 58, 42, 0.15);
    }
    .reset-section .btn-secondary:hover {
      box-shadow: 0 0 32px rgba(28, 58, 42, 0.25);
      transform: translateY(-1px);
    }

    /* Floating action button */
    .floating-action {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(135deg, #1c3a2a 0%, #2d5a40 100%);
      color: var(--bg-primary);
      padding: 14px 24px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(28, 58, 42, 0.25);
      z-index: 1000;
      display: none;
      transition: all 0.3s ease;
    }

    .floating-action:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(28, 58, 42, 0.30);
    }

    .floating-action.show {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* ====== TOP NAVIGATION ====== */
    .top-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(247, 245, 242, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(28, 58, 42, 0.12);
      padding: 12px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      height: 54px;
      margin-right: 16px;
      filter: drop-shadow(0 0 10px rgba(28, 58, 42, 0.20));
    }

    .nav-center {
      display: flex;
      gap: 8px;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .sign-in-btn {
      padding: 8px 20px;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .sign-in-btn:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .user-menu {
      display: none;
      align-items: center;
      gap: 10px;
    }

    .user-menu.show {
      display: flex;
    }

    .user-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(28, 58, 42, 0.06);
      border: 1px solid #2d5a40;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #1c3a2a;
    }

    .user-name {
      font-size: 0.9rem;
      color: var(--text-primary);
    }

    .sign-out-btn {
      padding: 6px 14px;
      background: transparent;
      border: none;
      font-size: 0.85rem;
      color: var(--text-muted);
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .sign-out-btn:hover {
      color: var(--accent-rose);
    }

    /* ====== ACCOUNT DROPDOWN ====== */
    .user-menu {
      position: relative;
    }

    .user-avatar, .user-name {
      cursor: pointer;
    }

    .account-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 8px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      min-width: 220px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
      z-index: 1000;
      overflow: hidden;
    }

    .account-dropdown.show {
      display: block;
    }

    .account-dropdown-header {
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .account-email {
      font-size: 0.85rem;
      color: var(--text-secondary);
      word-break: break-all;
    }

    .account-plan-badge {
      display: inline-block;
      padding: 3px 10px;
      font-size: 0.75rem;
      border-radius: 12px;
      background: rgba(28, 58, 42, 0.06);
      color: #1c3a2a;
      border: 1px solid #2d5a40;
      width: fit-content;
    }

    .account-plan-badge.pro {
      background: rgba(138, 184, 138, 0.15);
      color: #8AB88A;
      border-color: rgba(138, 184, 138, 0.3);
    }

    .account-dropdown-divider {
      height: 1px;
      background: var(--border-subtle);
    }

    .account-dropdown-item {
      display: block;
      width: 100%;
      padding: 12px 16px;
      background: transparent;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      color: var(--text-secondary);
      cursor: pointer;
      text-align: left;
      transition: background 0.2s;
    }

    .account-dropdown-item:hover {
      background: var(--bg-elevated);
    }

    .account-dropdown-item.danger {
      color: #D4847A;
    }

    .account-dropdown-item.danger:hover {
      background: rgba(212, 132, 122, 0.1);
    }

    /* ====== AUTH MODAL ====== */
    .auth-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }

    .auth-modal-overlay.show {
      display: flex;
    }

    .auth-modal {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 40px 36px;
      width: 100%;
      max-width: 400px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .auth-modal-close {
      position: absolute;
      top: 14px;
      right: 16px;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      color: var(--text-muted);
      cursor: pointer;
      line-height: 1;
    }

    .auth-modal-close:hover {
      color: var(--text-primary);
    }

    .free-trial-ended-msg {
      background: linear-gradient(135deg, rgba(28, 58, 42, 0.10) 0%, rgba(28, 58, 42, 0.03) 100%);
      border: 1px solid rgba(28, 58, 42, 0.20);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 20px;
      text-align: center;
    }

    .free-trial-ended-msg p {
      margin: 4px 0;
      color: #1c3a2a;
      font-size: 0.95rem;
    }

    .free-trial-ended-msg strong {
      color: #1c3a2a;
    }

    .auth-title {
      font-family: 'Lora', serif;
      font-size: 1.5rem;
      color: var(--text-primary);
      margin-bottom: 4px;
      text-align: center;
    }

    .auth-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 24px;
    }

    .auth-error {
      display: none;
      padding: 10px 14px;
      background: rgba(212, 132, 122, 0.1);
      border: 1px solid rgba(212, 132, 122, 0.3);
      border-radius: 8px;
      color: #D4847A;
      font-size: 0.85rem;
      margin-bottom: 16px;
    }

    .auth-error.show {
      display: block;
    }

    .auth-field {
      margin-bottom: 16px;
    }

    .auth-field label {
      display: block;
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }

    .auth-field input {
      width: 100%;
      padding: 12px 14px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      color: var(--text-primary);
      transition: border-color 0.3s;
      box-sizing: border-box;
    }

    .auth-field input:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    .auth-field input::placeholder {
      color: var(--text-muted);
    }

    .auth-submit-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #1c3a2a, #2d5a40);
      border: none;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--bg-primary);
      cursor: pointer;
      margin-top: 8px;
      transition: opacity 0.3s;
    }

    .auth-submit-btn:hover {
      opacity: 0.9;
    }

    .auth-submit-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .auth-terms-note {
      text-align: center;
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-top: 10px;
      line-height: 1.5;
    }

    .auth-terms-note a {
      color: #1c3a2a;
      text-decoration: underline;
    }

    .auth-switch {
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 16px;
    }

    .auth-switch a {
      color: #1c3a2a;
      text-decoration: none;
    }

    .auth-switch a:hover {
      text-decoration: underline;
    }

    /* Social Auth Buttons */
    .social-auth-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 16px;
    }
    .social-auth-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 11px 16px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      border: 1px solid var(--border-subtle);
    }
    .social-auth-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .social-auth-btn.google {
      background: #fff;
      color: #3c4043;
      border-color: #dadce0;
    }
    .social-auth-btn.google:hover {
      background: #f8f9fa;
      border-color: #c6c9cc;
    }
    .social-auth-btn.apple {
      background: #000;
      color: #fff;
      border-color: #000;
    }
    .social-auth-btn.apple:hover {
      background: #1a1a1a;
    }
    .auth-divider {
      display: flex;
      align-items: center;
      margin: 16px 0;
      gap: 12px;
    }
    .auth-divider::before,
    .auth-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border-subtle);
    }
    .auth-divider span {
      font-size: 0.75rem;
      color: var(--text-muted);
      white-space: nowrap;
    }

    /* ====== PAYWALL GATE MODAL ====== */
    .paywall-gate-modal {
      max-width: 520px;
      padding: 36px 30px 30px;
    }
    .paywall-gate-icon {
      text-align: center;
      margin-bottom: 14px;
    }
    .paywall-gate-title {
      font-family: 'Lora', serif;
      font-size: 1.3rem;
      color: var(--text-primary);
      text-align: center;
      margin-bottom: 4px;
    }
    .paywall-gate-subtitle {
      font-size: 0.88rem;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 24px;
    }
    .paywall-gate-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .paywall-gate-card {
      background: var(--bg-primary);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 22px 18px;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s;
      text-align: center;
    }
    .paywall-gate-card:hover {
      border-color: #1c3a2a;
      transform: translateY(-2px);
    }
    .paywall-gate-price {
      font-family: 'Lora', serif;
      font-size: 1.6rem;
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 4px;
    }
    .paywall-gate-label {
      font-size: 0.82rem;
      color: #1c3a2a;
      margin-bottom: 14px;
      letter-spacing: 0.3px;
    }
    .paywall-gate-perks {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      text-align: left;
    }
    .paywall-gate-perks li {
      font-size: 0.75rem;
      color: var(--text-muted);
      padding: 3px 0;
      padding-left: 16px;
      position: relative;
      line-height: 1.4;
    }
    .paywall-gate-perks li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #1c3a2a;
      font-size: 0.7rem;
    }
    .paywall-gate-perks li.paywall-gate-bonus {
      color: #1c3a2a;
      font-weight: 600;
    }
    .paywall-gate-perks li.paywall-gate-bonus::before {
      content: '🎁';
    }
    .paywall-gate-btn {
      width: 100%;
      padding: 10px 16px;
      border: none;
      border-radius: 8px;
      font-size: 0.82rem;
      font-family: 'DM Sans', -apple-system, sans-serif;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: opacity 0.2s;
    }
    .paywall-gate-btn:hover { opacity: 0.85; }
    .paywall-gate-btn.gold {
      background: #1c3a2a;
      color: #fff;
    }
    .paywall-gate-btn.dark {
      background: var(--bg-secondary);
      color: var(--text-primary);
      border: 1px solid var(--border-subtle);
    }
    @media (max-width: 520px) {
      .paywall-gate-modal { padding: 28px 18px 22px; }
      .paywall-gate-options { grid-template-columns: 1fr; gap: 12px; }
      .paywall-gate-title { font-size: 1.1rem; }
      .paywall-gate-subtitle { font-size: 0.78rem; margin-bottom: 18px; }
      .paywall-gate-price { font-size: 1.3rem; }
      .paywall-gate-perks li { font-size: 0.68rem; }
      .paywall-gate-btn { font-size: 0.75rem; }
    }

    /* ====== TRIAL BANNER ====== */
    .trial-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1500;
      background: linear-gradient(135deg, rgba(253, 252, 250, 0.95), rgba(245, 244, 242, 0.95));
      border-top: 1px solid rgba(28, 58, 42, 0.15);
      backdrop-filter: blur(10px);
    }

    .trial-banner-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .trial-banner-text {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .trial-banner-btn {
      padding: 8px 20px;
      background: #1c3a2a;
      border: none;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.3s;
    }

    .trial-banner-btn:hover {
      opacity: 0.85;
    }

    .trial-banner-close {
      background: transparent;
      border: none;
      font-size: 1.2rem;
      color: var(--text-muted);
      cursor: pointer;
      padding: 4px;
    }

    .usage-display {
      font-size: 0.8rem;
      color: var(--text-muted);
      padding: 6px 12px;
      background: var(--bg-elevated);
      border-radius: 20px;
      display: none;
    }

    .usage-display.show {
      display: block;
    }

    .nav-tab {
      padding: 10px 28px;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      color: #4a4a44;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .nav-tab:hover {
      color: #1a1a18;
    }

    .nav-tab.active {
      background: rgba(28, 58, 42, 0.08);
      border-color: #2d5a40;
      color: #1a1a18;
    }

    /* Page sections */
    .page-section {
      display: none;
    }

    .page-section.active {
      display: block;
    }

    /* ====== YOUR COMMUNICATION JOURNEY PAGE ====== */
    .journey-page { min-height: 100vh; padding: 100px 20px 60px; }
    .journey-container { max-width: 700px; margin: 0 auto; }

    /* Login prompt (reuse old styles) */
    .history-login-prompt { display: flex; justify-content: center; padding: 60px 0; }
    .history-login-card { text-align: center; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 48px 40px; max-width: 420px; }
    .history-login-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
    .history-login-card h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 8px; }
    .history-login-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }

    /* Journey header */
    .journey-header { padding: 0 0 0; text-align: center; margin-bottom: 20px; position: relative; }

    .journey-share-link {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 0.72rem;
      color: var(--text-muted);
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.2s ease;
    }

    .journey-share-link:hover {
      opacity: 0.8;
      color: var(--text-secondary);
    }
    .journey-title { font-family: 'Lora', serif; font-size: clamp(1.6rem, 4vw, 2.2rem); color: #1c3a2a; font-weight: 500; margin-bottom: 6px; }
    .journey-sub { font-size: 0.85rem; color: var(--text-secondary); }

    /* Storage banner */
    .journey-storage-banner { display: flex; align-items: center; justify-content: space-between; background: var(--bg-secondary); border-radius: 10px; padding: 10px 16px; margin-bottom: 20px; border: 1px solid var(--border-subtle); }
    .storage-left-info { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-secondary); }
    .storage-left-info strong { color: var(--text-primary); font-weight: 500; }
    .storage-change-btn { font-size: 0.7rem; color: #1c3a2a; cursor: pointer; background: none; border: none; font-family: inherit; }

    /* Tab Navigation */
    .journey-tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border-subtle); margin-bottom: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .j-tab-btn { padding: 12px 20px; font-size: 0.82rem; color: var(--text-muted); background: none; border: none; cursor: pointer; position: relative; font-family: inherit; transition: color 0.2s; white-space: nowrap; flex-shrink: 0; }
    .j-tab-btn:hover { color: var(--text-secondary); }
    .j-tab-btn.active { color: #1c3a2a; }
    .j-tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: #1c3a2a; border-radius: 2px 2px 0 0; }
    .j-tab-count { font-size: 0.65rem; opacity: 0.5; margin-left: 3px; }

    /* Tab content */
    .j-tab-content { display: none; padding: 28px 0 40px; }
    .j-tab-content.active { display: block; }

    /* Stats row */
    .j-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
    .j-stat-card { background: var(--bg-secondary); border-radius: 12px; padding: 14px 10px; text-align: center; border: 1px solid var(--border-subtle); }
    .j-stat-num { font-size: 1.3rem; font-weight: 700; display: block; margin-bottom: 3px; }
    .j-stat-num.gold { color: #1c3a2a; }
    .j-stat-num.green { color: #7ab896; }
    .j-stat-num.red { color: #c97b7b; }
    .j-stat-num.yellow { color: #c4a96a; }
    .j-stat-label { font-size: 0.65rem; color: var(--text-muted); line-height: 1.3; }

    /* Trend chart card */
    .j-trend-card { background: var(--bg-secondary); border-radius: 14px; padding: 22px; border: 1px solid var(--border-subtle); margin-bottom: 24px; }
    .j-trend-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .j-trend-title { font-size: 0.9rem; font-weight: 500; }
    .j-period-chips { display: flex; gap: 5px; }
    .j-p-chip { padding: 4px 10px; border-radius: 12px; font-size: 0.65rem; color: var(--text-muted); background: var(--bg-elevated); cursor: pointer; border: 1px solid transparent; transition: all 0.2s; font-family: inherit; }
    .j-p-chip.active { color: #1c3a2a; border-color: #1c3a2a; background: rgba(28, 58, 42, 0.08); }
    .j-chart-container { position: relative; width: 100%; }
    .j-chart-svg { width: 100%; height: auto; display: block; }
    .j-chart-legend { display: flex; justify-content: center; gap: 16px; margin-top: 10px; }
    .j-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--text-muted); }
    .j-legend-dot { width: 7px; height: 7px; border-radius: 50%; }
    .j-legend-dot.green { background: #7ab896; }
    .j-legend-dot.yellow { background: #c4a96a; }
    .j-legend-dot.red { background: #c97b7b; }

    /* Assessment card */
    .j-assessment-card { background: var(--bg-secondary); border-radius: 14px; padding: 18px 20px; border: 1px solid var(--border-subtle); display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .j-assess-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .j-assess-icon.positive { background: rgba(122, 184, 150, 0.12); }
    .j-assess-icon.mixed { background: rgba(196, 169, 106, 0.12); }
    .j-assess-icon.negative { background: rgba(201, 123, 123, 0.10); }
    .j-assess-body h3 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
    .j-assess-body h3.positive { color: #7ab896; }
    .j-assess-body h3.mixed { color: #c4a96a; }
    .j-assess-body h3.negative { color: #c97b7b; }
    .j-assess-body p { font-size: 0.76rem; color: var(--text-secondary); line-height: 1.5; }

    /* Section label */
    .j-sec-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }

    /* Role mini cards (Overview) */
    .j-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
    .j-role-mini { background: var(--bg-secondary); border-radius: 12px; padding: 16px; border: 1px solid var(--border-subtle); cursor: pointer; transition: border-color 0.2s; }
    .j-role-mini:hover { border-color: rgba(28, 58, 42, 0.20); }
    .j-role-mini-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
    .j-role-mini-name { font-size: 0.85rem; font-weight: 500; }
    .j-role-mini-count { font-size: 0.68rem; color: var(--text-muted); }
    .j-role-mini-bar { display: flex; gap: 3px; height: 6px; border-radius: 3px; overflow: hidden; margin-bottom: 10px; }
    .j-bar-seg { border-radius: 3px; }
    .j-bar-seg.green { background: #7ab896; }
    .j-bar-seg.yellow { background: #c4a96a; }
    .j-bar-seg.red { background: #c97b7b; }
    .j-role-mini-summary { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.4; }
    .j-role-mini-dir { font-size: 0.72rem; font-weight: 600; margin-top: 6px; }
    .j-role-mini-dir.positive { color: #7ab896; }
    .j-role-mini-dir.mixed { color: #c4a96a; }
    .j-role-mini-dir.negative { color: #c97b7b; }

    /* Goal tag row */
    .j-goal-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
    .j-goal-tag { font-size: 0.72rem; padding: 5px 12px; border-radius: 16px; background: rgba(28, 58, 42, 0.08); color: #1c3a2a; }

    /* History items */
    .j-history-list { display: flex; flex-direction: column; gap: 8px; }
    .j-history-item { background: var(--bg-secondary); border-radius: 12px; padding: 14px 16px; border: 1px solid var(--border-subtle); cursor: pointer; transition: border-color 0.2s; }
    .j-history-item:hover { border-color: rgba(28, 58, 42, 0.20); }
    .j-history-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .j-history-tags { display: flex; align-items: center; gap: 5px; }
    .j-h-tag { font-size: 0.65rem; padding: 2px 7px; border-radius: 8px; }
    .j-h-tag.role { background: var(--bg-elevated); color: var(--text-secondary); }
    .j-h-tag.intent { background: rgba(28, 58, 42, 0.08); color: #1c3a2a; }
    .j-h-dir { font-size: 0.8rem; font-weight: 600; }
    .j-h-dir.positive { color: #7ab896; }
    .j-h-dir.neutral { color: #c4a96a; }
    .j-h-dir.negative { color: #c97b7b; }
    .j-history-msg { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .j-history-bottom { display: flex; align-items: center; justify-content: space-between; }
    .j-history-date { font-size: 0.66rem; color: var(--text-muted); }
    .j-history-emotions { display: flex; gap: 4px; }
    .j-emo-tag { font-size: 0.62rem; padding: 2px 6px; border-radius: 8px; background: var(--bg-elevated); color: var(--text-muted); }

    /* Expandable history detail */
    .j-history-expand { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-subtle); }
    .j-history-item.expanded .j-history-expand { display: block; }
    .j-expand-row { display: flex; gap: 10px; margin-bottom: 8px; }
    .j-expand-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; min-width: 65px; flex-shrink: 0; }
    .j-expand-val { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.45; }

    /* Show more button */
    .j-show-more-btn { display: block; width: 100%; padding: 10px; text-align: center; font-size: 0.78rem; color: var(--text-muted); background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 10px; cursor: pointer; font-family: inherit; transition: all 0.2s; margin-top: 8px; }
    .j-show-more-btn:hover { color: #1c3a2a; border-color: #1c3a2a; }

    /* Calendar (warm emoji style) */
    .j-cal-mini { margin-bottom: 24px; background: var(--bg-secondary); border-radius: 16px; padding: 20px; border: 1px solid var(--border-subtle); }
    .j-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .j-cal-month { font-size: 0.88rem; color: var(--text-primary); font-weight: 500; }
    .j-cal-nav { display: flex; gap: 4px; }
    .j-cal-nav button { background: var(--bg-elevated); border: none; color: var(--text-muted); cursor: pointer; font-size: 0.82rem; font-family: inherit; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .j-cal-nav button:hover { color: #1c3a2a; background: rgba(28, 58, 42, 0.08); }
    .j-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
    .j-cal-wd { font-size: 0.62rem; color: var(--text-muted); text-align: center; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
    .j-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .j-cal-day { aspect-ratio: 1; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.62rem; color: var(--text-muted); position: relative; transition: transform 0.15s; }
    .j-cal-day:not(.empty):hover { transform: scale(1.1); }
    .j-cal-day .j-cal-num { font-size: 0.58rem; color: var(--text-muted); }
    .j-cal-day .j-cal-mood { font-size: 1.15rem; line-height: 1; }
    .j-cal-day.empty { background: transparent; }
    .j-cal-day.none { background: var(--bg-elevated); }
    .j-cal-day.none .j-cal-mood { font-size: 0.7rem; opacity: 0.3; }
    .j-cal-day.j-green { background: linear-gradient(135deg, rgba(122,184,150,0.08), rgba(122,184,150,0.18)); }
    .j-cal-day.j-green .j-cal-num { color: #7ab896; }
    .j-cal-day.j-yellow { background: linear-gradient(135deg, rgba(196,169,106,0.08), rgba(196,169,106,0.18)); }
    .j-cal-day.j-yellow .j-cal-num { color: #c4a96a; }
    .j-cal-day.j-red { background: linear-gradient(135deg, rgba(201,123,123,0.08), rgba(201,123,123,0.18)); }
    .j-cal-day.j-red .j-cal-num { color: #c97b7b; }
    .j-cal-legend { display: flex; justify-content: center; gap: 16px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border-subtle); }
    .j-cal-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--text-muted); }

    /* Empty state */
    .j-empty-state { display: flex; justify-content: center; padding: 60px 0; }
    .j-empty-card { text-align: center; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 48px 40px; max-width: 420px; }
    .j-empty-card h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 8px; }
    .j-empty-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }
    .j-empty-card a { color: #1c3a2a; text-decoration: none; }

    /* Journey page responsive */
    @media (max-width: 768px) {
      .journey-page { padding: 80px 16px 40px; }
      .j-stats-row { grid-template-columns: repeat(2, 1fr); }
      .j-role-grid { grid-template-columns: 1fr; }
      .j-tab-btn { padding: 10px 14px; font-size: 0.78rem; }
      .journey-title { font-size: 1.4rem; }
      .j-trend-card { padding: 16px; }
      .j-cal-mini { padding: 16px; }
    }

    /* ====== BOOKMARK HINT ====== */
    .bookmark-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

    /* ====== WELCOME BACK BANNER ====== */
    .welcome-back-banner { display: flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, rgba(28, 58, 42, 0.05), rgba(122, 184, 150, 0.06)); border-bottom: 1px solid rgba(28, 58, 42, 0.10); padding: 10px 20px; position: relative; z-index: 5; }
    .wb-text { font-size: 0.82rem; color: var(--text-secondary); }
    .wb-close { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; padding: 0 4px; line-height: 1; position: absolute; right: 16px; }
    .wb-close:hover { color: var(--text-primary); }
    @media (max-width: 768px) {
      .welcome-back-banner { padding: 8px 40px 8px 16px; justify-content: flex-start; }
      .wb-text { font-size: 0.76rem; }
    }

    /* ====== FEEDBACK PAGE ====== */
    .feedback-page {
      min-height: 100vh;
      padding: 100px 40px 60px;
      position: relative;
      z-index: 1;
    }

    .feedback-page-container {
      max-width: 700px;
      margin: 0 auto;
    }

    .feedback-page-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .feedback-page-header h1 {
      font-family: 'Lora', serif;
      font-size: 2.8rem;
      color: #1c3a2a;
      margin-bottom: 16px;
    }

    .feedback-page-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    .feedback-form {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 24px;
      padding: 40px;
    }

    .form-group {
      margin-bottom: 28px;
    }

    .form-label {
      display: block;
      font-size: 0.95rem;
      font-weight: 500;
      color: #1c3a2a;
      margin-bottom: 12px;
    }

    .form-input {
      width: 100%;
      padding: 16px 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      color: var(--text-primary);
      transition: all 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: #2d5a40;
    }

    .form-textarea {
      min-height: 150px;
      resize: vertical;
      line-height: 1.6;
    }

    .choice-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .choice-option {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      font-size: 0.95rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .choice-option::before {
      content: '';
      width: 20px;
      height: 20px;
      border: 2px solid var(--text-muted);
      border-radius: 50%;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .choice-option:hover {
      border-color: #2d5a40;
      color: var(--text-primary);
    }

    .choice-option:hover::before {
      border-color: #2d5a40;
    }

    .choice-option.selected {
      background: rgba(28, 58, 42, 0.06);
      border-color: #1c3a2a;
      color: #1c3a2a;
    }

    .choice-option.selected::before {
      border-color: #1c3a2a;
      background: #1c3a2a;
      box-shadow: inset 0 0 0 3px var(--bg-elevated);
    }

    .feedback-submit {
      text-align: center;
      margin-top: 32px;
    }

    .feedback-success {
      display: none;
      text-align: center;
      padding: 60px 40px;
    }

    .feedback-success.show {
      display: block;
    }

    .feedback-success h3 {
      font-family: 'Lora', serif;
      font-size: 2rem;
      color: #1c3a2a;
      margin-bottom: 16px;
    }

    .feedback-success p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    /* ====== PRICING PAGE ====== */
    .pricing-page {
      min-height: 100vh;
      padding: 100px 40px 60px;
      position: relative;
      z-index: 1;
    }

    .pricing-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .pricing-header h1 {
      font-family: 'Lora', serif;
      font-size: 2.8rem;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .pricing-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    /* ====== BILLING TOGGLE ====== */
    .billing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .billing-label {
      font-size: 0.95rem;
      color: var(--text-muted);
      transition: color 0.3s;
      cursor: pointer;
    }

    .billing-label.active {
      color: var(--text-primary);
      font-weight: 500;
    }

    .billing-switch {
      position: relative;
      width: 52px;
      height: 28px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, border-color 0.3s;
    }

    .billing-switch.yearly {
      background: rgba(28, 58, 42, 0.06);
      border-color: #2d5a40;
    }

    .billing-switch-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: var(--text-secondary);
      border-radius: 50%;
      transition: transform 0.3s ease, background 0.3s;
    }

    .billing-switch.yearly .billing-switch-knob {
      transform: translateX(24px);
      background: #1c3a2a;
    }

    .billing-save-badge {
      padding: 4px 10px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #8AB88A;
      background: rgba(138, 184, 138, 0.12);
      border: 1px solid rgba(138, 184, 138, 0.25);
      border-radius: 20px;
    }

    /* Price display transitions */
    .price-display {
      transition: opacity 0.3s ease;
    }

    .price-original {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-decoration: line-through;
      opacity: 0.45;
      margin-bottom: -4px;
    }

    .price-compare {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 4px;
      text-decoration: line-through;
      opacity: 0.6;
    }

    .pricing-founding-note {
      font-size: 0.88rem;
      color: #c4956a;
      font-weight: 600;
      opacity: 1;
      margin-top: 8px;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .pricing-cards.two-cards {
      max-width: 700px;
      margin: 0 auto;
      grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards.three-cards {
      max-width: 1060px;
      margin: 0 auto;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .pricing-card {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 28px 24px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .pricing-card:hover {
      border-color: #2d5a40;
      transform: translateY(-4px);
    }

    .pricing-card.featured {
      border-color: #1c3a2a;
      background: linear-gradient(180deg, rgba(28, 58, 42, 0.05) 0%, var(--bg-secondary) 100%);
    }

    .pricing-badge {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #c4956a 0%, #d4a574 100%);
      color: #fff;
      padding: 8px 24px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      box-shadow: 0 2px 10px rgba(196,149,106,0.3);
    }

    .pricing-card h3 {
      font-family: 'Lora', serif;
      font-size: 1.4rem;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .pricing-card .price {
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 10px 0;
    }

    .pricing-card .price span {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-muted);
    }

    .pricing-card .price-note {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: -4px;
      margin-bottom: 12px;
    }

    .pricing-features {
      list-style: none;
      text-align: left;
      margin: 14px 0;
    }

    .pricing-features li {
      padding: 5px 0;
      color: var(--text-secondary);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      line-height: 1.35;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--accent-sage);
      font-weight: 600;
    }
    .pricing-features li.pricing-bonus-highlight {
      color: #1c3a2a;
      font-weight: 600;
    }
    .pricing-features li.pricing-bonus-highlight::before {
      content: '🎁';
    }
    .pricing-btn {
      width: 100%;
      padding: 12px 24px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .pricing-btn.primary {
      background: #1c3a2a;
      border: none;
      color: #fff;
    }

    .pricing-btn.primary:hover {
      background: #2d5a40;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(28, 58, 42, 0.20);
    }

    .pricing-btn.primary-outline {
      background: transparent;
      border: 1.5px solid #1c3a2a;
      color: #1c3a2a;
    }

    .pricing-btn.primary-outline:hover {
      background: rgba(28, 58, 42, 0.06);
      transform: translateY(-2px);
    }

    .pricing-btn.secondary {
      background: transparent;
      border: 1px solid var(--border-subtle);
      color: var(--text-secondary);
    }

    .pricing-btn.secondary:hover {
      border-color: #2d5a40;
      color: #1c3a2a;
    }

    .pricing-note {
      text-align: center;
      margin-top: 28px;
      color: var(--text-muted);
      font-size: 0.82rem;
    }

    /* How it works steps (inside Pro card) */
    .pricing-how-it-works {
      margin: 10px 0 12px;
      padding: 10px 14px;
      background: rgba(196, 149, 106, 0.06);
      border: 1px solid rgba(196, 149, 106, 0.15);
      border-radius: 8px;
    }

    .pricing-how-step {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      color: var(--text-secondary);
      padding: 3px 0;
      line-height: 1.35;
    }

    .pricing-how-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: #1c3a2a;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
    }

    @media (max-width: 520px) {
      .pricing-how-it-works {
        padding: 8px 10px;
        margin: 8px 0 10px;
      }
      .pricing-how-step {
        font-size: 0.65rem;
        padding: 2px 0;
      }
      .pricing-how-num {
        width: 16px;
        height: 16px;
        min-width: 16px;
        font-size: 0.55rem;
      }
    }

    /* Responsive for new pages */
    @media (max-width: 768px) {
      .top-nav {
        padding: 10px 16px;
      }

      .nav-logo {
        height: 42px;
      }

      .nav-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
      }

      .sign-in-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
      }

      .user-name {
        display: none;
      }

      .sign-out-btn {
        font-size: 0.75rem;
        padding: 4px 8px;
      }

      .feedback-page,
      .pricing-page,
      .legal-page {
        padding: 80px 20px 40px;
      }

      .feedback-page-header h1,
      .pricing-header h1,
      .legal-header h1 {
        font-size: 2rem;
      }

      .feedback-form {
        padding: 28px 20px;
      }


      .pricing-cards {
        grid-template-columns: 1fr;
      }
      .pricing-cards.three-cards {
        grid-template-columns: 1fr;
      }

      .pricing-cards.two-cards {
        grid-template-columns: 1fr;
      }

      .pricing-card {
        padding: 20px 18px;
      }
      .pricing-card h3 {
        font-size: 1.2rem;
        margin-bottom: 2px;
      }
      .pricing-card .price {
        font-size: 1.8rem;
        margin: 6px 0;
      }
      .pricing-card .price span {
        font-size: 0.8rem;
      }
      .pricing-card .price-note {
        font-size: 0.72rem;
        margin-top: -2px;
        margin-bottom: 8px;
      }
      .pricing-features {
        margin: 10px 0;
      }
      .pricing-features li {
        padding: 3px 0;
        font-size: 0.75rem;
        gap: 6px;
        line-height: 1.3;
      }
      .pricing-features li::before {
        font-size: 0.65rem;
      }
      .pricing-btn {
        padding: 10px 20px;
        font-size: 0.82rem;
      }
      .pricing-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        top: -12px;
      }
      .price-original {
        font-size: 0.75rem;
      }
      .price-compare {
        font-size: 0.7rem;
      }
    }

    /* ====== LEGAL PAGES (Privacy & Terms) ====== */
    .legal-page {
      min-height: 100vh;
      padding: 100px 40px 60px;
      position: relative;
      z-index: 1;
    }

    .legal-container {
      max-width: 780px;
      margin: 0 auto;
    }

    .legal-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .legal-header h1 {
      font-family: 'Lora', serif;
      font-size: 2.8rem;
      color: #1c3a2a;
      margin-bottom: 12px;
    }

    .legal-updated {
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    .legal-content {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 48px;
      line-height: 1.8;
    }

    .legal-content p {
      color: var(--text-secondary);
      font-size: 0.92rem;
      margin-bottom: 16px;
    }

    .legal-content h2 {
      font-family: 'Lora', serif;
      font-size: 1.5rem;
      color: #1c3a2a;
      margin-top: 36px;
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .legal-content h3 {
      font-size: 1rem;
      color: var(--text-primary);
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .legal-content ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 16px;
    }

    .legal-content ul li {
      color: var(--text-secondary);
      font-size: 0.9rem;
      padding: 6px 0 6px 20px;
      position: relative;
    }

    .legal-content ul li::before {
      content: '•';
      position: absolute;
      left: 4px;
      color: #1c3a2a;
    }

    .legal-content a {
      color: #1c3a2a;
      text-decoration: none;
      border-bottom: 1px solid rgba(28, 58, 42, 0.20);
      transition: border-color 0.2s ease;
    }

    .legal-content a:hover {
      border-bottom-color: #1c3a2a;
    }

    .legal-content strong {
      color: var(--text-primary);
      font-weight: 500;
    }

    .legal-highlight {
      background: rgba(28, 58, 42, 0.04);
      border: 1px solid rgba(28, 58, 42, 0.10);
      border-radius: 12px;
      padding: 24px;
      margin: 24px 0;
    }

    .legal-highlight h3 {
      color: #1c3a2a;
      font-size: 1.05rem;
      font-weight: 600;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .legal-highlight p {
      margin-bottom: 0;
    }

    .legal-highlight-warning {
      background: rgba(212, 132, 122, 0.06);
      border-color: rgba(212, 132, 122, 0.15);
    }

    .legal-highlight-warning h3 {
      color: var(--accent-rose);
    }

    .legal-divider-heading {
      margin-top: 48px !important;
      padding-top: 32px;
      border-top: 2px solid rgba(28, 58, 42, 0.15);
      font-size: 1.8rem !important;
      text-align: center;
    }

    .legal-contact {
      background: var(--bg-elevated);
      border-radius: 10px;
      padding: 20px 24px;
      margin-top: 12px;
    }

    .legal-contact p {
      margin-bottom: 4px;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .legal-page {
        padding: 80px 20px 40px;
      }

      .legal-header h1 {
        font-size: 2rem;
      }

      .legal-content {
        padding: 28px 20px;
      }

      .legal-content h2 {
        font-size: 1.3rem;
      }
    }

    /* Footer */
    .footer {
      text-align: center;
      padding: 40px 24px;
      border-top: 1px solid var(--border-subtle);
    }

    .footer p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .footer a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
    }

    .footer a:hover {
      color: #1c3a2a;
    }

    /* Error */
    .error-section {
      display: none;
      text-align: center;
      padding: 48px;
    }

    .error-section.show { display: block; }

    .error-message {
      color: var(--accent-rose);
      font-size: 1.1rem;
      margin-bottom: 24px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .landing-page {
        flex-direction: column;
      }

      .split-left, .split-right {
        flex: none;
        min-height: 50vh;
        align-items: center;
        padding: 100px 32px 60px;
        padding-top: 30vh;
      }

      .split-left .split-content,
      .split-right .split-content {
        text-align: center;
        padding: 0;
        margin-top: 60px;
      }

      .logo-container {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
      }

      .logo-img {
        height: 100px;
      }

      .title-row {
        top: 25%;
      }

      .split-title {
        font-size: 2.5rem;
      }

      .title-half.left {
        padding-right: 8px;
      }

      .title-half.right {
        padding-left: 8px;
      }

      .split-tagline {
        top: 25%;
        transform: translate(-50%, 50px);
      }

      .split-tagline p {
        font-size: 0.95rem;
      }

      .cta-overlay {
        bottom: 30px;
      }

      .btn-main {
        padding: 18px 40px;
        font-size: 1rem;
      }

      .split-quote {
        font-size: 1.1rem;
      }
    }

    /* ====== CONTEXT STEP SCREEN (between Check it and analysis) ====== */
    .context-step-section {
      display: none;
      min-height: 100vh;
      padding: 120px 24px 60px;
      justify-content: center;
      align-items: center;
    }

    .context-step-section.show {
      display: flex;
    }

    .context-step-card {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 48px 40px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .context-step-title {
      font-family: 'Lora', serif;
      font-size: 2rem;
      font-weight: 600;
      color: #1c3a2a;
      margin-bottom: 8px;
    }

    .context-step-sub {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }

    .context-step-field {
      margin-bottom: 20px;
      text-align: left;
    }

    .context-step-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 8px;
      letter-spacing: 0.03em;
    }

    .context-step-select {
      width: 100%;
      padding: 14px 16px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      color: var(--text-primary);
      cursor: pointer;
      transition: border-color 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='%23a8a29e'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
    }

    .context-step-select:focus {
      outline: none;
      border-color: #1c3a2a;
    }

    .context-step-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 28px;
      gap: 12px;
    }
    .context-step-pill {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 1px solid rgba(28,58,42,0.15);
      border-radius: 50px;
      padding: 9px 20px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: #1c3a2a;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .context-step-pill:hover {
      background: rgba(28,58,42,0.06);
      border-color: rgba(28,58,42,0.25);
    }

    @media (max-width: 768px) {
      .context-step-section {
        padding: 90px 16px 40px;
      }
      .context-step-card {
        padding: 32px 24px;
      }
      .context-step-title {
        font-size: 1.6rem;
      }
      .context-step-actions {
        flex-direction: column;
        gap: 10px;
      }
      .context-step-pill {
        width: 100%;
        justify-content: center;
        font-size: 0.78rem;
        padding: 10px 16px;
      }
    }

    /* ====== OPTIONAL CONTEXT TOGGLE ====== */
    .optional-context-section {
      margin-top: 16px;
    }

    .context-toggle-btn {
      background: none;
      border: 1px solid rgba(28, 58, 42, 0.10);
      border-radius: 10px;
      padding: 12px 20px;
      width: 100%;
      text-align: left;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .context-toggle-btn:hover {
      border-color: rgba(28, 58, 42, 0.20);
      color: #1c3a2a;
    }

    .context-fields-collapsible {
      margin-top: 12px;
      padding: 16px;
      background: rgba(28, 58, 42, 0.02);
      border: 1px solid rgba(28, 58, 42, 0.06);
      border-radius: 12px;
    }

    /* ====== KILLER FEATURE SECTION ====== */
    .killer-feature-section {
      text-align: center;
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid rgba(28, 58, 42, 0.10);
      max-width: 720px;
      width: 100%;
    }
    @media (max-width: 768px) {
      .killer-feature-section {
        margin-top: 28px;
        padding-top: 16px;
      }
    }

    .killer-label {
      font-size: 1.15rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: #1c3a2a;
      margin-bottom: 18px;
    }

    .killer-title {
      font-family: 'Lora', serif;
      font-size: 2.6rem;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .killer-sub {
      font-size: 1.05rem;
      color: var(--text-secondary);
      margin-bottom: 36px;
      line-height: 1.55;
    }

    .killer-sub-light {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: -8px;
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .killer-demo-card {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 28px;
      text-align: left;
      margin-bottom: 28px;
    }

    .killer-demo-row {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .killer-demo-row .killer-chat-img {
      width: 55%;
      max-width: 320px;
      border-radius: 12px;
      margin: 0;
      display: block;
      flex-shrink: 0;
    }

    .killer-demo-row .killer-analysis-box {
      flex: 1;
      margin-top: 0;
      padding: 0;
      background: none;
      border: none;
    }

    .killer-chat-img {
      width: 70%;
      max-width: 400px;
      border-radius: 12px;
      margin: 0 auto 14px;
      display: block;
    }

    .killer-chat-bubble {
      max-width: 75%;
      padding: 14px 18px;
      border-radius: 18px;
      font-size: 1.02rem;
      line-height: 1.55;
      margin-bottom: 10px;
    }

    .killer-chat-bubble.sent {
      background: rgba(28, 58, 42, 0.10);
      color: #1c3a2a;
      margin-left: auto;
      border-bottom-right-radius: 4px;
      border: 1px solid rgba(28, 58, 42, 0.15);
    }

    .killer-chat-bubble.received {
      background: var(--bg-elevated);
      color: var(--text-primary);
      border-bottom-left-radius: 4px;
    }

    .killer-analysis-box {
      margin-top: 16px;
      padding: 16px;
      background: rgba(28, 58, 42, 0.05);
      border: 1px solid rgba(28, 58, 42, 0.10);
      border-radius: 12px;
    }

    .killer-analysis-label {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-secondary);
      margin-bottom: 10px;
    }

    .killer-analysis-tags {
      font-size: 0.85rem;
      color: var(--text-secondary);
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      opacity: 0.7;
    }

    .killer-analysis-text {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .killer-analysis-text strong {
      color: var(--text-secondary);
      font-size: 0.85rem;
    }

    .killer-cta-btn {
      padding: 14px 36px;
      background: transparent;
      border: 2px solid #2d5a40;
      border-radius: 100px;
      color: #1c3a2a;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .killer-cta-btn:hover {
      background: rgba(28, 58, 42, 0.06);
      border-color: #1c3a2a;
    }

    @media (max-width: 768px) {
      .killer-title {
        font-size: 1.5rem;
      }
      .killer-sub-light {
        font-size: 0.78rem;
        margin-bottom: 22px;
      }
      .killer-demo-card {
        padding: 14px;
      }
      .killer-demo-row {
        gap: 16px;
      }
      .killer-demo-row .killer-chat-img {
        width: 50%;
        max-width: 180px;
      }
      .killer-analysis-label {
        font-size: 0.5rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
      }
      .killer-analysis-tags {
        font-size: 0.48rem;
        margin-bottom: 4px;
        white-space: nowrap;
      }
      .killer-analysis-text {
        font-size: 0.48rem;
      }
      .killer-analysis-text strong {
        font-size: 0.48rem;
      }
      .killer-cta-btn {
        width: auto;
        padding: 12px 28px;
      }
      .killer-analysis-tags .underline-word::after {
        bottom: -3px;
        height: 0.25em;
      }
      .killer-sub-light {
        font-size: 0.72rem;
        margin-top: -6px;
        margin-bottom: 16px;
      }
    }

    /* ====== MOBILE RESPONSIVE — HAMBURGER MENU + LAYOUT FIXES ====== */

    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 1001;
    }

    .mobile-menu-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-secondary);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 768px) {
      /* Hamburger button visible */
      .mobile-menu-btn {
        display: flex;
      }

      /* Nav layout */
      .top-nav {
        padding: 10px 16px;
        flex-wrap: wrap;
      }

      .nav-logo {
        height: 38px;
      }

      /* Nav center becomes vertical dropdown */
      .nav-center {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 4px;
        order: 10;
        padding-top: 12px;
        border-top: 1px solid var(--border-subtle);
        margin-top: 10px;
      }

      .nav-center.mobile-open {
        display: flex;
      }

      .nav-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
        text-align: left;
        width: 100%;
        border-radius: 8px;
      }

      /* Sign In button always visible */
      .nav-right {
        margin-left: auto;
      }

      .sign-in-btn {
        padding: 7px 16px;
        font-size: 0.85rem;
      }

      .user-name {
        display: none;
      }

      .usage-display {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
      }

      /* Hero section */
      .hero-input-section {
        padding: 80px 16px 40px;
      }

      .hero-header-new {
        margin-bottom: 0;
      }

      .main-title-new {
        font-size: 2.6rem;
      }

      .main-tagline-new {
        font-size: 0.85rem;
      }

      .main-tagline-new br {
        display: none;
      }

      /* Input card */
      .main-input-card {
        max-width: 100%;
      }

      .main-textarea {
        min-height: 120px;
        font-size: 0.88rem;
        padding: 14px;
      }

      .step-label {
        font-size: 0.9rem;
        margin-top: 20px;
      }

      /* Context row + selects */
      .context-row {
        flex-direction: column;
        gap: 10px;
      }

      .context-row select,
      .context-row input {
        width: 100%;
        font-size: 0.85rem;
      }

      /* Analyze button */
      .cta-row {
        flex-direction: column;
        gap: 10px;
      }

      .try-example-banner {
        font-size: 0.78rem;
        padding: 6px 14px;
      }

      .btn-analyze {
        width: auto;
        padding: 14px 36px;
        font-size: 0.9rem;
      }
      .try-message-title {
        font-size: 1.5rem !important;
      }

      /* Auth modal */
      .auth-modal {
        margin: 16px;
        padding: 28px 20px;
        max-width: calc(100vw - 32px);
      }

      .auth-title {
        font-size: 1.3rem;
      }

      .auth-subtitle {
        font-size: 0.8rem;
      }

      /* ====== RESULTS TAB BAR MOBILE ====== */
      .results-tab-bar {
        margin-bottom: 16px;
      }

      .results-tab {
        padding: 8px 10px;
        font-size: 0.68rem;
      }

      /* ====== RESULTS PAGE MOBILE FIX ====== */
      .results-section {
        padding: 80px 16px 40px;
      }

      .result-card {
        padding: 16px 12px;
      }

      .back-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
        margin-bottom: 16px;
      }

      /* Verdict / suggestion area — flat, no box */
      .verdict-section {
        padding: 16px 0;
        border-radius: 14px;
        margin-bottom: 16px;
      }

      .verdict-title {
        font-size: 1.05rem;
        margin-bottom: 3px;
      }

      .verdict-subtitle {
        font-size: 0.7rem;
      }

      .verdict-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .risk-card-message {
        font-size: 0.95rem;
        padding: 10px 12px;
      }

      /* Unified suggestion card mobile — flat */
      .sugg-unified-card {
        padding: 4px 0;
      }
      .sugg-choice {
        padding: 0;
        margin-bottom: 18px;
      }
      .sugg-choice-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .sugg-choice-label {
        font-size: 0.65rem;
        margin-bottom: 4px;
      }
      .sugg-choice-label strong {
        font-size: 0.72rem;
      }
      .sugg-choice-msg {
        font-size: 0.85rem;
        line-height: 1.5;
      }
      .sugg-choice-alt .sugg-choice-msg {
        font-size: 0.8rem;
      }
      .sugg-why-text {
        font-size: 0.7rem;
        margin-top: 14px;
      }
      .sugg-safe-badge {
        font-size: 0.68rem !important;
        padding: 0 !important;
      }

      .risk-card-header {
        padding: 10px 12px;
      }

      .risk-card-badge {
        font-size: 0.68rem;
      }

      .risk-card-strategy {
        font-size: 0.82rem;
      }

      .suggestion-box-main {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
      }

      .suggestion-text {
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .suggestion-box-main.advice-mode .suggestion-text {
        font-size: 0.9rem;
      }

      .copy-btn-inline {
        font-size: 0.65rem;
        padding: 0;
      }
      .tone-dropdown-label {
        font-size: 0.55rem !important;
      }
      .tone-dropdown {
        font-size: 0.58rem !important;
        padding: 3px 8px !important;
      }
      .suggestion-bottom-row {
        margin-top: 10px;
      }

      /* Why 2-col mobile handled in main block above */

      /* Risk / outcome section */
      .risk-status-badge {
        font-size: 0.62rem;
      }

      .risk-title {
        font-size: 0.72rem;
      }

      .risk-issue-item {
        font-size: 0.6rem;
        line-height: 1.3;
        margin-bottom: 4px;
      }

      .outcome-block {
        padding: 14px 12px;
        margin-bottom: 14px;
      }
      .outcome-label {
        font-size: 0.6rem;
        margin-bottom: 6px;
      }
      .outcome-headline {
        font-size: 0.72rem;
      }
      .outcome-reasons li {
        font-size: 0.65rem;
      }

      /* Why section mobile — all text smaller */
      .why-toggle {
        padding: 10px 12px;
      }
      .why-text {
        font-size: 0.7rem;
      }
      .why-hint, .why-lock-hint {
        font-size: 0.52rem;
      }
      .why-arrow {
        font-size: 0.55rem;
      }
      .why-content {
        padding: 14px 12px;
      }
      .why-col-title {
        font-size: 0.58rem;
      }
      .why-bullet-icon {
        font-size: 0.75rem;
      }
      .why-bullet-label {
        font-size: 0.55rem;
      }
      .why-overall-assessment, .emotion-summary-text {
        font-size: 0.6rem;
        line-height: 1.35;
      }
      .why-suggest-list li {
        font-size: 0.6rem;
        line-height: 1.35;
      }
      .trap-item {
        font-size: 0.55rem;
        padding: 5px 8px;
        line-height: 1.25;
        gap: 4px;
        border-radius: 6px;
      }
      .trap-item .trap-icon {
        font-size: 0.65rem;
      }
      .trap-item .trap-name {
        font-size: 0.55rem;
      }
      .trap-item .trap-explanation {
        font-size: 0.55rem;
      }
      .traps-list {
        gap: 4px;
      }
      .safety-alert-text {
        font-size: 0.65rem;
      }

      /* Timing section */
      .timing-section {
        margin-bottom: 14px;
      }

      .timing-btn, .style-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
      }

      .timing-options, .style-options {
        gap: 6px;
      }

      /* Before/After compare */
      .before-after-compare {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .compare-box {
        padding: 14px;
      }

      .compare-text {
        font-size: 0.92rem;
      }

      .compare-label {
        font-size: 0.65rem;
        margin-bottom: 8px;
      }

      /* YOUR MESSAGE annotation rows */
      .message-annotated-item {
        gap: 5px;
        padding: 6px 8px;
        flex-wrap: wrap;
      }

      .message-text-left {
        font-size: 0.75rem;
        font-family: 'DM Sans', sans-serif;
        font-style: normal;
        line-height: 1.3;
        flex: 1 1 60%;
        min-width: 0;
      }

      .message-arrow {
        font-size: 0.7rem;
      }

      .message-annotations {
        gap: 3px;
      }

      .annotation-chip {
        padding: 1px 5px;
        font-size: 0.55rem;
        white-space: nowrap;
      }

      /* Section titles */
      .section-title {
        font-size: 0.75rem;
        margin-bottom: 20px;
        letter-spacing: 0.15em;
      }

      .section-title-small {
        font-size: 0.65rem;
      }

      /* Emotion chart + traps */
      .analysis-row {
        flex-direction: column;
        gap: 12px;
      }

      .analysis-row .emotion-chart-section,
      .analysis-row .traps-section {
        min-width: unset;
        width: 100%;
      }

      /* Assessment compact */
      .assessment-section-compact {
        padding: 12px;
        gap: 14px;
        flex-direction: column;
        text-align: center;
      }

      .wellness-score-mini {
        min-width: unset;
      }

      /* Feedback toggle + track link */
      .feedback-toggle {
        padding: 14px 16px;
      }

      .feedback-toggle-text {
        font-size: 0.8rem;
      }

      .track-patterns-link {
        padding: 12px 14px;
        font-size: 0.68rem;
      }

      /* Deep analysis section */
      .deep-showcase {
        flex-direction: column;
        gap: 16px;
      }

      /* Action buttons row - one row on mobile, allow 2-line text */
      .guide-links-row {
        flex-wrap: nowrap !important;
        gap: 6px !important;
        margin-top: 16px !important;
      }
      .btn-try-another {
        padding: 10px 10px !important;
        font-size: 0.62rem !important;
        white-space: normal !important;
        text-align: center;
        line-height: 1.3;
        flex: 1;
        min-height: 44px;
      }
      .guide-link-btn {
        padding: 10px 8px !important;
        font-size: 0.62rem !important;
        white-space: normal !important;
        text-align: center;
        line-height: 1.3;
        flex: 1;
        min-height: 44px;
      }

      .copy-btn {
        padding: 10px 20px;
        font-size: 0.88rem;
      }

      .review-title {
        font-size: 1.2rem;
      }

      /* Tone/style row */
      .tone-style-row {
        flex-direction: column;
        gap: 16px;
      }

      /* Trial banner */
      .trial-banner {
        font-size: 0.8rem;
        padding: 8px 16px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      /* Account dropdown */
      .account-dropdown {
        right: -10px;
        min-width: 200px;
      }
    }

    /* Extra small phones */
    @media (max-width: 400px) {
      .top-nav {
        padding: 8px 12px;
      }

      .nav-logo {
        height: 32px;
      }

      .sign-in-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
      }

      .main-title-new {
        font-size: 2.2rem;
      }

      .hero-input-section {
        padding: 72px 12px 30px;
      }

      .auth-modal {
        padding: 24px 16px;
      }
    }

    /* ====== HERO SLIDES CAROUSEL ====== */
    .hero-slides-carousel {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 30px auto 36px;
      user-select: none;
    }

    .hero-slides-carousel .carousel-track {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-slides-carousel .hero-slide {
      display: none;
      width: 100%;
    }

    .hero-slides-carousel .hero-slide.active {
      display: block;
    }

    .hero-slides-carousel .slide-frame {
      width: 100%;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      position: relative;
    }

    .hero-slides-carousel .slide-frame .split-bg {
      display: flex;
      width: 100%;
      aspect-ratio: 2816 / 1536;
    }

    .hero-slides-carousel .slide-frame .bg-left {
      flex: 1;
      background: linear-gradient(160deg, #f0ede8 0%, #f7f5f2 60%, #fdfcfa 100%);
    }

    .hero-slides-carousel .slide-frame .bg-right {
      flex: 1;
      background: linear-gradient(200deg, #fdfcfa 0%, #f0ede8 50%, #f7f5f2 100%);
      position: relative;
    }

    .hero-slides-carousel .slide-frame .bg-right::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse at 50% 45%, rgba(212,173,94,0.15) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-slides-carousel .slide-frame .glow-layer {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 1;
      pointer-events: none;
    }

    .hero-slides-carousel .slide-frame .glow-left {
      position: absolute;
      top: -5%; left: 25%; width: 22%; height: 110%;
      background: radial-gradient(ellipse at center, rgba(160,170,210,0.38) 0%, rgba(130,140,180,0.20) 35%, rgba(100,110,150,0.07) 60%, transparent 80%);
      filter: blur(45px);
    }

    .hero-slides-carousel .slide-frame .glow-right {
      position: absolute;
      top: -5%; right: 25%; width: 22%; height: 110%;
      background: radial-gradient(ellipse at center, rgba(212,173,94,0.42) 0%, rgba(190,155,70,0.22) 35%, rgba(160,130,60,0.08) 60%, transparent 80%);
      filter: blur(45px);
    }

    .hero-slides-carousel .slide-frame .phones-layer {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .hero-slides-carousel .slide-frame .phones-img {
      width: 92%;
      max-width: none;
      display: block;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
    }

    .hero-slides-carousel .slide-frame .slide-to-label {
      position: absolute; top: 3%; left: 4%;
      font-size: 0.9rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(212,173,94,0.85);
      z-index: 10;
    }

    .hero-slides-carousel .slide-frame .text-layer {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 3;
      pointer-events: none;
    }

    .hero-slides-carousel .slide-frame .label-you {
      position: absolute;
      top: 12%; left: 24%;
      font-size: 1.35rem; font-weight: 600;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }

    .hero-slides-carousel .slide-frame .label-they {
      position: absolute;
      top: 12%; right: 22%;
      font-size: 1.35rem; font-weight: 600;
      color: #1c3a2a;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }

    .hero-slides-carousel .slide-frame .slide-neq {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 48%, #1c3a2a 52%, #1c3a2a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
      z-index: 4;
    }

    .hero-slides-carousel .slide-frame .bubble {
      position: absolute;
      padding: 10px 12px;
      border-radius: 16px;
      font-size: 1rem;
      line-height: 1.5;
      color: #fff;
      text-align: left;
    }

    .hero-slides-carousel .slide-frame .bubble-left {
      top: 36%; left: 20%; width: 20%;
      background: rgba(40, 110, 200, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(80, 140, 220, 0.25);
      box-shadow: 0 4px 16px rgba(40, 110, 200, 0.2);
    }

    .hero-slides-carousel .slide-frame .bubble-right {
      top: 36%; right: 20%; width: 20%;
      background: rgba(160, 160, 170, 0.28);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(200, 200, 210, 0.18);
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

    .hero-slides-carousel .slide-frame .bubble .msg::before { content: '\201C'; opacity: 0.5; }
    .hero-slides-carousel .slide-frame .bubble .msg::after { content: '\201D'; opacity: 0.5; }

    .hero-slides-carousel .slide-frame .bubble .time {
      display: block; text-align: right;
      margin-top: 5px; font-size: 0.55rem;
      color: rgba(255,255,255,0.4);
    }

    .hero-slides-carousel .slide-frame .emotion-left {
      position: absolute;
      bottom: 8%; left: 20%;
      display: flex; align-items: center; gap: 8px;
    }

    .hero-slides-carousel .slide-frame .emotion-right {
      position: absolute;
      bottom: 8%; right: 18%;
      display: flex; align-items: center; gap: 8px;
    }

    .hero-slides-carousel .slide-frame .emotion-emoji { font-size: 1.8rem; }
    .hero-slides-carousel .slide-frame .emotion-text { font-size: 0.95rem; font-weight: 500; }

    .hero-slides-carousel .slide-frame .emotion-left .emotion-text {
      color: rgba(255,255,255,0.85);
      text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }

    .hero-slides-carousel .slide-frame .emotion-right .emotion-text {
      color: #1c3a2a;
      text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }

    /* ====== SLIDE ANALYSIS BAR (below slide-frame) ====== */
    .slide-analysis {
      display: flex; align-items: flex-start; gap: 18px;
      padding: 22px 28px; margin: 0;
      background: rgba(20, 20, 24, 0.95);
      border-top: 1px solid rgba(212,173,94,0.15);
      border-radius: 0 0 20px 20px;
    }
    .slide-analysis .analysis-risk { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 3px; }
    .slide-analysis .analysis-risk-circle {
      width: 58px; height: 58px; border-radius: 50%; border: 2.5px solid #1c3a2a;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; font-weight: 700; color: #1c3a2a;
    }
    .slide-analysis .analysis-risk-circle.critical { border-color: #e85454; color: #e85454; }
    .slide-analysis .analysis-risk-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; }
    .slide-analysis .analysis-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
    .slide-analysis .analysis-row { font-size: 16px; line-height: 1.5; }
    .slide-analysis .analysis-row .row-icon { font-size: 15px; margin-right: 5px; }
    .slide-analysis .analysis-row .row-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-right: 8px; }
    .slide-analysis .analysis-row.watchout .row-icon, .slide-analysis .analysis-row.watchout .row-label { color: #1c3a2a; }
    .slide-analysis .analysis-row.watchout .row-text { color: rgba(255,255,255,0.85); }
    .slide-analysis .analysis-row.suggest .row-icon, .slide-analysis .analysis-row.suggest .row-label { color: rgba(255,255,255,0.45); }
    .slide-analysis .analysis-row.suggest .row-text { color: rgba(255,255,255,0.6); font-style: italic; }
    .slide-analysis .analysis-row .row-tag { display: none; }

    /* Hero carousel arrows */
    .hero-slides-carousel .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(28, 58, 42, 0.08);
      border: 1px solid rgba(28, 58, 42, 0.12);
      color: #1a1a18;
      font-size: 2rem;
      width: 44px; height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      backdrop-filter: blur(8px);
    }

    .hero-slides-carousel .hero-arrow:hover {
      background: rgba(212,173,94,0.2);
      border-color: rgba(212,173,94,0.4);
      color: #1c3a2a;
    }

    .hero-slides-carousel .hero-arrow-left { left: 4px; }
    .hero-slides-carousel .hero-arrow-right { right: 4px; }

    .hero-carousel-tagline {
      text-align: center;
      font-size: 0.75rem;
      color: #8a8a80;
      margin-top: 12px;
      font-style: italic;
      opacity: 0.7;
    }

    .hero-carousel-tagline .tagline-break { display: inline; }

    @media (max-width: 640px) {
      .hero-carousel-tagline .tagline-break { display: block; }
    }

    /* Hero carousel dots */
    .hero-slides-carousel .hero-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 16px;
    }

    .hero-slides-carousel .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.3s;
    }

    .hero-slides-carousel .hero-dot.active {
      background: #1c3a2a;
      box-shadow: 0 0 8px rgba(212,173,94,0.4);
    }

    /* Hero carousel responsive — tablet */
    @media (max-width: 640px) {
      .hero-slides-carousel .slide-frame .slide-to-label { font-size: 0.7rem; top: 2%; left: 4%; }
      .hero-slides-carousel .slide-frame .label-you, .hero-slides-carousel .slide-frame .label-they { font-size: 0.8rem; top: 10%; }
      .hero-slides-carousel .slide-frame .slide-neq { font-size: 1.2rem; top: 8%; }
      .hero-slides-carousel .slide-frame .bubble { padding: 6px 8px; font-size: 0.55rem; border-radius: 10px; width: 24%; }
      .hero-slides-carousel .slide-frame .bubble-left { left: 16%; }
      .hero-slides-carousel .slide-frame .bubble-right { right: 16%; }
      .hero-slides-carousel .slide-frame .bubble .time { font-size: 0.38rem; }
      .hero-slides-carousel .slide-frame .emotion-emoji { font-size: 1.1rem; }
      .hero-slides-carousel .slide-frame .emotion-text { font-size: 0.65rem; }
      .hero-slides-carousel .slide-frame .emotion-left { bottom: 4%; }
      .hero-slides-carousel .slide-frame .emotion-right { bottom: 4%; }
      .hero-slides-carousel .hero-arrow { width: 32px; height: 32px; font-size: 1.4rem; }
      .hero-carousel-tagline { font-size: 0.65rem; }
      /* Analysis bar — mobile: show full text */
      .slide-analysis { padding: 14px 16px; gap: 12px; }
      .slide-analysis .analysis-risk-circle { width: 44px; height: 44px; font-size: 17px; }
      .slide-analysis .analysis-risk-label { font-size: 8px; }
      .slide-analysis .analysis-row { font-size: 13px; line-height: 1.4; }
      .slide-analysis .analysis-row .row-icon { font-size: 12px; }
      .slide-analysis .analysis-row .row-label { font-size: 9px; letter-spacing: 1px; }
      .slide-analysis .analysis-row .row-tag { display: none; }
      .slide-analysis .analysis-content { gap: 7px; }
    }

    /* Hero carousel responsive — mobile */
    @media (max-width: 420px) {
      .hero-slides-carousel .slide-frame .slide-to-label { font-size: 0.6rem; top: 1.5%; left: 4%; }
      .hero-slides-carousel .slide-frame .label-you, .hero-slides-carousel .slide-frame .label-they { font-size: 0.65rem; top: 9%; }
      .hero-slides-carousel .slide-frame .label-you { left: 18%; }
      .hero-slides-carousel .slide-frame .label-they { right: 16%; }
      .hero-slides-carousel .slide-frame .slide-neq { font-size: 1rem; top: 7%; }
      .hero-slides-carousel .slide-frame .bubble { padding: 5px 7px; font-size: 0.48rem; border-radius: 8px; width: 26%; }
      .hero-slides-carousel .slide-frame .bubble-left { left: 14%; }
      .hero-slides-carousel .slide-frame .bubble-right { right: 14%; }
      .hero-slides-carousel .slide-frame .bubble .time { font-size: 0.32rem; }
      .hero-slides-carousel .slide-frame .emotion-emoji { font-size: 1rem; }
      .hero-slides-carousel .slide-frame .emotion-text { font-size: 0.55rem; }
      .hero-slides-carousel .slide-frame .emotion-left { left: 16%; bottom: 3%; }
      .hero-slides-carousel .slide-frame .emotion-right { right: 14%; bottom: 3%; }
      .hero-slides-carousel .hero-arrow { width: 28px; height: 28px; font-size: 1.1rem; }
      .hero-carousel-tagline { font-size: 0.6rem; }
      /* Analysis bar — small mobile: full text */
      .slide-analysis { padding: 12px 14px; gap: 8px; border-radius: 0 0 12px 12px; }
      .slide-analysis .analysis-risk-circle { width: 38px; height: 38px; font-size: 15px; border-width: 2px; }
      .slide-analysis .analysis-risk-label { font-size: 7px; }
      .slide-analysis .analysis-row { font-size: 11px; line-height: 1.4; }
      .slide-analysis .analysis-row .row-icon { font-size: 10px; }
      .slide-analysis .analysis-row .row-label { font-size: 8px; letter-spacing: 1px; }
      .slide-analysis .analysis-row .row-tag { display: none; }
      .slide-analysis .analysis-content { gap: 5px; }
    }

    /* ====== PAYWALL: Locked Tabs + Strategies Teaser ====== */
    .risk-level-tab.tab-locked {
      opacity: 0.55;
      position: relative;
    }

    .risk-level-tab.tab-locked:hover {
      opacity: 0.75;
    }

    .tab-lock-icon {
      font-size: 0.6rem;
      margin-left: 2px;
      vertical-align: middle;
    }

    /* Locked strategies teaser */
    .locked-strategies-teaser {
      margin-top: 16px;
      padding: 0;
      background: none;
      border: none;
      border-radius: 0;
    }

    .locked-strategy-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(28, 58, 42, 0.05);
    }

    .locked-strategy-item:last-of-type {
      border-bottom: none;
    }

    .locked-icon {
      font-size: 0.8rem;
      opacity: 0.6;
    }

    .locked-text-blur {
      color: var(--text-muted, #888);
      font-size: 0.8rem;
      filter: blur(3px);
      user-select: none;
      pointer-events: none;
    }

    .unlock-strategies-btn {
      display: block;
      width: 100%;
      margin-top: 14px;
      padding: 12px;
      background: linear-gradient(135deg, #c9a84c, #d4af37);
      color: #1a1a2e;
      border: none;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      letter-spacing: 0.01em;
    }

    .unlock-strategies-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
    }

    /* ====== BONUS STRATEGIES (unlocked, collapsible) ====== */
    .bonus-strategies-unlocked {
      margin-top: 20px;
      border: none;
      border-radius: 0;
      overflow: hidden;
    }
    .bonus-strategies-toggle {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 10px 0;
      cursor: pointer;
      background: none;
      transition: opacity 0.2s;
    }
    .bonus-strategies-toggle:hover { background: none; opacity: 0.7; }
    .bonus-strategies-title {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 1.2px;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
    }
    .bonus-strategies-arrow {
      font-size: 0.55rem; color: rgba(255,255,255,0.35);
      transition: transform 0.25s ease;
    }
    .bonus-strategies-arrow.expanded { transform: rotate(180deg); }
    .bonus-strategies-list {
      display: none; flex-direction: column; gap: 0;
    }
    .bonus-strategies-list.show { display: flex; }
    .bonus-strategy-card {
      background: none;
      border-top: 1px solid rgba(28, 58, 42, 0.06);
      padding: 16px 0;
    }
    .bonus-strategy-header {
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 6px;
    }
    .bonus-strategy-icon { font-size: 0.85rem; }
    .bonus-strategy-label { font-size: 0.72rem; color: #1c3a2a; }
    .bonus-strategy-msg {
      font-size: 0.8rem; line-height: 1.45;
      color: rgba(255,255,255,0.85);
      margin: 0 0 4px 0;
      font-style: italic;
    }
    .bonus-strategy-why {
      font-size: 0.65rem; color: rgba(255,255,255,0.4);
      margin: 0 0 8px 0;
      line-height: 1.35;
    }
    .bonus-strategy-card .copy-btn-inline {
      font-size: 0.62rem; padding: 3px 8px;
    }

    /* Bonus strategies mobile */
    @media (max-width: 768px) {
      .bonus-strategies-toggle { padding: 10px 14px; }
      .bonus-strategies-title { font-size: 0.6rem; }
      .bonus-strategies-arrow { font-size: 0.48rem; }
      .bonus-strategy-card { padding: 10px 12px; }
      .bonus-strategy-icon { font-size: 0.72rem; }
      .bonus-strategy-label { font-size: 0.6rem; }
      .bonus-strategy-msg { font-size: 0.65rem; line-height: 1.35; }
      .bonus-strategy-why { font-size: 0.55rem; margin-bottom: 6px; }
      .bonus-strategy-card .copy-btn-inline { font-size: 0.55rem; padding: 3px 6px; }
    }

    /* ====== OTHER STYLE REPLIES DROPDOWN ====== */
    .other-styles-container {
      margin-top: 8px;
    }
    .other-styles-toggle {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 10px 0;
      cursor: pointer;
      background: none;
      transition: opacity 0.2s;
    }
    .other-styles-toggle:hover { background: none; opacity: 0.7; }
    .other-styles-title {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 1.2px;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
    }
    .other-styles-arrow {
      font-size: 0.55rem; color: rgba(255,255,255,0.35);
      transition: transform 0.25s ease;
    }
    .other-styles-arrow.expanded { transform: rotate(180deg); }
    .other-styles-list {
      display: none; flex-direction: column; gap: 0;
    }
    .other-styles-list.show { display: flex; }
    .other-style-card {
      background: none;
      border-top: 1px solid rgba(28, 58, 42, 0.06);
      padding: 16px 0;
    }
    .other-style-header {
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 6px;
    }
    .other-style-label {
      font-size: 0.68rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.5px;
      color: rgba(255,255,255,0.65);
    }
    .other-style-msg {
      font-size: 0.78rem; line-height: 1.5;
      color: rgba(255,255,255,0.88);
      margin-bottom: 8px;
    }
    .other-style-card .copy-btn-inline {
      font-size: 0.62rem; padding: 3px 8px;
    }

    /* Other styles mobile */
    @media (max-width: 768px) {
      .other-styles-toggle { padding: 10px 14px; }
      .other-styles-title { font-size: 0.6rem; }
      .other-styles-arrow { font-size: 0.48rem; }
      .other-style-card { padding: 10px 12px; }
      .other-style-label { font-size: 0.6rem; }
      .other-style-msg { font-size: 0.65rem; line-height: 1.35; }
      .other-style-card .copy-btn-inline { font-size: 0.55rem; padding: 3px 6px; }
    }

    /* Upgrade Toast */
    .upgrade-toast {
      position: fixed;
      bottom: -120px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      width: 92%;
      max-width: 440px;
    }

    .upgrade-toast.show {
      bottom: 24px;
    }

    .upgrade-toast-content {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: #1e1e30;
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 14px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    .upgrade-toast-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .upgrade-toast-text {
      flex: 1;
      min-width: 0;
    }

    .upgrade-toast-text strong {
      display: block;
      font-size: 0.82rem;
      color: #fff;
      margin-bottom: 2px;
    }

    .upgrade-toast-text p {
      margin: 0;
      font-size: 0.72rem;
      color: var(--text-muted, #999);
    }

    .upgrade-toast-btn {
      flex-shrink: 0;
      padding: 8px 14px;
      background: linear-gradient(135deg, #c9a84c, #d4af37);
      color: #1a1a2e;
      border: none;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s ease;
    }

    .upgrade-toast-btn:hover {
      transform: scale(1.03);
    }

    .upgrade-toast-close {
      position: absolute;
      top: 6px;
      right: 10px;
      background: none;
      border: none;
      color: var(--text-muted, #888);
      font-size: 1.1rem;
      cursor: pointer;
      padding: 4px;
      line-height: 1;
    }

    /* Lock hints on buttons */
    .btn-lock-hint {
      font-size: 0.65rem;
      margin-left: 3px;
      opacity: 0.7;
    }

    .why-lock-hint {
      font-size: 0.72rem;
      color: #c9a84c;
      opacity: 0.85;
    }

    /* Blurred/locked content */
    .blurred-text {
      filter: blur(4px);
      user-select: none;
      pointer-events: none;
    }

    .blurred-reason {
      filter: blur(4px);
      user-select: none;
      pointer-events: none;
    }

    .trap-locked {
      opacity: 0.5;
    }

    .trap-unlock-tease, .unlock-tease {
      font-size: 0.75rem;
      color: #c9a84c;
      cursor: pointer;
      padding: 8px 0 2px;
      transition: opacity 0.2s;
    }

    .trap-unlock-tease:hover, .unlock-tease:hover {
      opacity: 0.8;
    }

    /* ====== WHITE-TO-GREEN THEME FIX: Override old dark-theme white text ====== */
    /* Suggestion card text */
    .sugg-choice-msg {
      color: #1a1a18 !important;
    }
    .sugg-choice-alt .sugg-choice-msg {
      color: #4a4a44 !important;
    }
    .sugg-choice-label {
      color: #8a8a80 !important;
    }
    .sugg-choice-label strong {
      color: #1c3a2a !important;
    }
    .sugg-why-text {
      color: #8a8a80 !important;
    }

    /* Unified suggestion card — flat, no boxes */
    .sugg-unified-card {
      background: none !important;
      border: none !important;
    }
    .sugg-choice {
      background: none !important;
      border: none !important;
    }

    /* Risk level tabs background */
    .risk-level-tabs {
      background: rgba(28,58,42,0.03) !important;
    }
    .risk-level-tab:hover {
      background: rgba(28,58,42,0.06) !important;
    }

    /* Perception chain text */
    .perception-chain-text {
      color: #4a4a44 !important;
    }

    /* Label dash */
    .label-dash {
      color: #8a8a80 !important;
    }

    /* Split quote / subtitle (before-after sections) */
    .split-quote {
      color: #4a4a44 !important;
    }
    .after-side .split-quote {
      color: #1c3a2a !important;
    }
    .split-subtitle {
      color: #8a8a80 !important;
    }

    /* Copy button — subtle underline link */
    .copy-btn-inline {
      background: none !important;
      color: #8a8a80 !important;
      border: none !important;
      text-decoration: underline !important;
      text-decoration-color: rgba(28,58,42,0.2) !important;
    }
    .copy-btn-inline:hover {
      color: #1c3a2a !important;
      text-decoration-color: #1c3a2a !important;
    }

    /* Download report button */
    .download-report-btn {
      background: #1c3a2a !important;
      color: #fff !important;
      border-color: rgba(28,58,42,0.3) !important;
    }
    .download-report-btn:hover {
      background: #2d5a40 !important;
    }
    .download-report-btn svg {
      stroke: #fff !important;
    }

    /* Trap unlock tease */
    .trap-unlock-tease, .unlock-tease {
      color: #3d7a58 !important;
    }

    /* All results-section text that might be white */
    .results-section .section-label,
    .results-section .section-title {
      color: #1a1a18 !important;
    }

    /* Device mockup shadow fix */
    .device-mockup {
      box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
    }

    /* Bonus strategies (alternatives dropdown) */
    .bonus-strategies-title {
      color: #8a8a80 !important;
    }
    .bonus-strategies-arrow {
      color: #8a8a80 !important;
    }
    .bonus-strategies-toggle {
      background: none !important;
    }
    .bonus-strategy-card {
      background: none !important;
    }
    .bonus-strategy-msg {
      color: #4a4a44 !important;
    }
    .other-styles-title {
      color: #8a8a80 !important;
    }
    .other-styles-arrow {
      color: #8a8a80 !important;
    }
    .other-styles-toggle {
      background: none !important;
    }
    .other-style-card {
      background: none !important;
    }
    .other-style-msg {
      color: #4a4a44 !important;
    }
    .other-style-label {
      color: #6a6a60 !important;
    }
    .bonus-strategy-why {
      color: #8a8a80 !important;
    }

    /* Split section subtitle */
    .split-left .split-subtitle {
      color: #8a8a80 !important;
    }

    /* Scroll hint */
    .scroll-hint {
      color: #8a8a80 !important;
    }

    /* Unlock strategies button - green instead of gold */
    .unlock-strategies-btn {
      background: #1c3a2a !important;
      color: #fff !important;
    }
    .unlock-strategies-btn:hover {
      box-shadow: 0 4px 16px rgba(28,58,42,0.3) !important;
    }

    /* Upgrade toast - keep dark bg but fix border */
    .upgrade-toast-content {
      background: #1c3a2a !important;
      border-color: rgba(28,58,42,0.3) !important;
    }

    /* Message annotated items - light bg instead of dark overlay */
    .message-annotated-item {
      background: rgba(28,58,42,0.04) !important;
    }

    /* Trap accent colors - green instead of gold */
    .trap-item .trap-icon {
      color: #3d7a58 !important;
    }
    .trap-item .trap-name {
      color: #1c3a2a !important;
    }

    /* Annotation chip trap - green */
    .annotation-chip.trap {
      background: rgba(28,58,42,0.1) !important;
      color: #1c3a2a !important;
      border-color: rgba(28,58,42,0.2) !important;
    }

    /* Trap header gold fix */
    .trap-header-count {
      background: rgba(28,58,42,0.1) !important;
      border-color: rgba(28,58,42,0.25) !important;
      color: #1c3a2a !important;
    }

    /* Main tagline on results page */
    .main-tagline {
      color: #4a4a44 !important;
    }
  }
}

/* ====================================================== */
/* NEW LAYOUT STYLES (v2 Redesign)                        */
/* ====================================================== */

/* Unified section title - Playfair Display 26px like Suggestion */
.section-title-playfair {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* ---- SUGGESTION SECTION (top card) ---- */
.suggestion-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.suggestion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Style dropdown container */
.style-dropdown-container {
  margin-bottom: 20px;
}

.style-dropdown {
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid #d4cdc4;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  background: #faf8f5;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Override sugg-unified-card to have green left border */
.suggestion-section .sugg-unified-card {
  background: #faf8f5;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 14px;
  border: none;
  border-left: 4px solid #2d5016;
  box-shadow: none;
}

.suggestion-section .sugg-choice {
  padding: 0;
  border: none;
  background: none;
}

.suggestion-section .sugg-choice-body {
  display: block !important;
  padding: 0;
}

.suggestion-section .sugg-choice-msg {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #1a1a1a !important;
  padding: 0 !important;
  margin-bottom: 14px !important;
  flex: none !important;
  white-space: normal !important;
}

.suggestion-section .sugg-why-text {
  font-size: 13px !important;
  color: #888 !important;
  font-style: italic !important;
  margin-top: 10px !important;
  line-height: 1.5 !important;
}

.suggestion-section .sugg-copy-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.suggestion-section .copy-btn-inline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 22px !important;
  background: #2d5016 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
}

/* ---- RISK SECTION (centered ring) ---- */
.sri-block {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 24px 28px !important;
  margin-bottom: 16px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
  border: none !important;
  border-bottom: none !important;
  overflow: hidden;
}

.sri-block .section-title-playfair {
  margin-bottom: 16px;
}

/* Toggle row - right aligned */
.sri-details-toggle-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* Override grid display for dimensions container - now has mixed content */
.sri-block .sri-dimensions.show {
  display: block !important;
}

/* Dimensions grid inside the collapsible */
.sri-block .sri-dimensions .sri-dim-cell {
  display: flex;
  flex-direction: column;
}

.sri-block .sri-dims-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

/* Always visible info below ring (red flag + traps) */
.sri-info-visible {
  text-align: center;
  margin-top: 12px;
}

.sri-info-visible .sri-red-flag {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.sri-info-visible .sri-red-flag.green {
  color: #2d5016;
}

.sri-info-visible .sri-traps-compact {
  justify-content: center;
}

/* Collapsible info inside dimensions */
.sri-info-collapsible {
  margin-bottom: 16px;
  text-align: center;
}

.sri-info-collapsible .sri-headline {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Split layout: ring left 2/5, watch-outs right 3/5 */
.sri-split-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sri-split-left {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sri-split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
}
.sri-split-right .sri-red-flag {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  text-align: left;
}
.sri-split-right .sri-traps-compact {
  justify-content: flex-start;
}
.sri-split-right .sri-traps-compact li {
  white-space: normal;
  text-align: left;
  line-height: 1.4;
  max-width: 100%;
}

@media (max-width: 480px) {
  .sri-split-layout {
    flex-direction: column;
    align-items: center;
  }
  .sri-split-left {
    flex: none;
    width: 100%;
  }
  .sri-split-right {
    width: 100%;
  }
  .sri-split-right .sri-traps-compact {
    justify-content: center;
  }
}

/* Center the ring area */
.sri-block .sri-verdict-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sri-block .sri-ring-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Make headline centered */
.sri-block .sri-info {
  text-align: center;
}

.sri-block .sri-headline {
  text-align: center;
}

.sri-block .sri-red-flag {
  text-align: center;
}

/* View details toggle button */
.sri-block .sri-dims-expand-btn {
  background: none;
  border: none;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
}

/* ---- LIKELY OUTCOME SECTION ---- */
.outcome-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: none;
  border-bottom: none;
}

.outcome-block .section-title-playfair {
  margin-bottom: 12px;
}

/* ---- EMOTION INSIGHT BLOCK ---- */
.emotion-insight-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.emotion-insight-block .section-title-playfair {
  margin-bottom: 6px;
}
.emotion-primary-label {
  font-size: 13px;
  color: #888;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}
.emotion-bars-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.emotion-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.emotion-bar-label {
  width: 100px;
  font-size: 12.5px;
  color: #555;
  text-align: right;
  flex-shrink: 0;
  text-transform: capitalize;
}
.emotion-bar-track {
  flex: 1;
  height: 14px;
  background: #f0ede8;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.emotion-bar-fill {
  height: 100%;
  border-radius: 7px;
  transition: width 0.6s ease;
  min-width: 0;
}
.emotion-bar-fill.positive { background: #8fbc8f; }
.emotion-bar-fill.negative { background: #d4a44a; }
.emotion-bar-fill.neutral  { background: #9ec5e0; }
.emotion-bar-score {
  width: 28px;
  font-size: 11.5px;
  color: #999;
  text-align: left;
  flex-shrink: 0;
}

/* ---- OTHER INFORMATION (collapsible) ---- */
.other-information-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  cursor: pointer;
}

.other-info-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.other-info-text {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
}

.other-info-arrow {
  font-size: 14px;
  color: #888;
  transition: transform 0.3s;
}

.other-info-content {
  margin-top: 20px;
  cursor: default;
}

/* CRITICAL FIX: .why-content is display:none by default (line 5518),
   but inside Other Information the parent already controls visibility,
   so .why-content must always be visible here */
.other-info-content .why-content {
  display: block !important;
  padding: 0;
}
.other-info-content .why-two-col {
  display: flex;
  gap: 24px;
}

/* Make why content visible with proper sizing inside Other Information */
.other-info-content .why-col-title {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.other-info-content .why-bullet-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 1;
}

.other-info-content .trap-item {
  font-size: 14px;
  margin-bottom: 8px;
}

.other-info-content .why-overall-assessment {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.other-info-content .no-traps {
  font-size: 14px;
  color: #2d5016;
}

.other-info-content .why-suggest-list {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.why-subsection {
  padding-top: 16px;
  border-top: 1px solid #f0ebe5;
}

.why-subsection-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 12px;
}

.perception-subsection {
  padding-top: 16px;
  border-top: 1px solid #f0ebe5;
  margin-top: 16px;
}

.perception-subsection-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
}

.perception-subsection .perception-chain-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

/* Empathy line — warm sentence above suggestion */
/* ====== VERDICT SECTION — top of results, first thing user sees ====== */
.verdict-section {
  text-align: center;
  padding: 32px 24px 28px;
  margin-bottom: 0;
}

.verdict-label {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c3a2a;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.verdict-insight {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== WARM QUOTE — inside suggestion section ====== */
.warm-quote-wrapper {
  margin: 0 0 16px 0;
  padding: 12px 16px;
  background: rgba(28, 58, 42, 0.03);
  border-left: 3px solid rgba(28, 58, 42, 0.15);
  border-radius: 0 8px 8px 0;
}

.warm-quote-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9a8e;
  display: block;
  margin-bottom: 4px;
}

.warm-quote {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #5a6b5e;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Legacy empathy-line, keep for backward compat */
.empathy-line {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #6b7b6e;
  margin: 0 0 12px 0;
  padding: 0;
  line-height: 1.5;
}

/* Green pill for "no flags" in Risk section */
.sri-trap-pill.green {
  background: #edf5ea;
  color: #2d5016;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  display: inline-block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .suggestion-section { padding: 20px; }
  .section-title-playfair { font-size: 22px; }
  .other-information-section { padding: 20px; }
  .sri-block { padding: 20px !important; }
  .outcome-block { padding: 20px !important; }
  .sri-details-toggle-row { margin-top: 4px; }
  .verdict-section { padding: 24px 16px 20px; }
  .verdict-label { font-size: 24px; }
  .verdict-insight { font-size: 14px; }
}
