/* ==========================================================================
   CHINACREC 晶宝时频 - Official Homepage 1:1 Calibrated Stylesheet
   Pixel-Perfect Implementation & Overlay Calibration
   ========================================================================== */

/* --------------------------------------------------------------------------
   Container & Global Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width, 1320px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding, 24px);
  padding-right: var(--container-padding, 24px);
}

.text-right { text-align: right; }
.mb-sm { margin-bottom: 12px; }

/* --------------------------------------------------------------------------
   01 HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--container-width, 1320px);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--crec-red);
}

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

.icon-btn.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.icon-btn.search-btn:hover {
  background: var(--bg-soft);
  color: var(--crec-red);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.lang-selector:hover {
  background: var(--bg-soft);
}

.lang-active {
  font-weight: 700;
  color: var(--text-primary);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 11px;
}

.btn-cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--crec-red-gradient);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-btn-red);
  transition: all var(--transition-base);
}

.btn-cta-contact:hover {
  box-shadow: var(--shadow-btn-red-hover);
  transform: translateY(-1px);
}

.btn-cta-contact svg {
  transition: transform var(--transition-fast);
}

.btn-cta-contact:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   02 HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: #F4F7FA;
  padding-top: 40px;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero-apparatus-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-apparatus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  padding-top: 10px;
}

.hero-kicker {
  font-family: var(--font-family-en);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748B;
  margin-bottom: 12px;
}

.hero-title-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-red-line {
  width: 3.5px;
  height: 80px;
  background: var(--crec-red);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}

.hero-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 14px;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-metrics {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
  padding-top: 6px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-family-en);
  font-size: 23px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.3px;
}

.metric-label {
  font-size: 11.5px;
  line-height: 1.35;
  color: #4B5563;
  margin-top: 3px;
  font-weight: 600;
}

.metric-sub {
  font-size: 10px;
  color: #8E9AA8;
  font-weight: normal;
  display: block;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: #D8E0EB;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
}

.btn-hero-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 6px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
}

.btn-hero-video:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.play-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--crec-red-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(229, 25, 44, 0.4);
}

.video-label {
  display: flex;
  flex-direction: column;
}

.video-cn {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}

.video-en {
  font-family: var(--font-family-en);
  font-size: 9.5px;
  font-weight: 700;
  color: #8E9AA8;
  letter-spacing: 0.5px;
}

.hero-bottom-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 36px;
  position: relative;
  z-index: 5;
}

.hero-pagination-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-bar-active {
  width: 24px;
  height: 3.5px;
  background: var(--crec-red);
  border-radius: 2px;
}

.hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #CBD5E1;
}

.hero-carousel-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family-en);
}

.counter-text {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.5px;
}

.counter-sep {
  color: #CBD5E1;
  margin: 0 2px;
}

.counter-arrows {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-hero-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-hero-arrow:hover {
  background: #FFFFFF;
  color: var(--crec-red);
  border-color: var(--crec-red);
  box-shadow: 0 2px 8px rgba(229, 25, 44, 0.15);
}

/* --------------------------------------------------------------------------
   03 ROLE SELECTOR (Transitional Hub below Hero)
   -------------------------------------------------------------------------- */
.role-selector-wrap {
  position: relative;
  z-index: 40;
  margin-top: -24px;
  margin-bottom: 26px;
}

.role-selector-bar {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.role-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  text-align: left;
  cursor: pointer;
}

.role-tab.active {
  background: #FFFFFF;
  border-color: #E2E8F0;
  border-bottom: 2.5px solid var(--crec-red);
  box-shadow: 0 4px 14px rgba(229, 25, 44, 0.08);
}

.role-tab.active .role-icon {
  color: var(--crec-red);
}

.role-tab:not(.active):hover {
  background: #F8FAFC;
}

.role-tab:not(.active) .role-icon {
  color: #475569;
}

.role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: inherit;
}

.role-info {
  display: flex;
  flex-direction: column;
}

.role-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
}

.role-desc {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}

.role-tab .role-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--crec-red);
  opacity: 0.95;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.role-tab.active .role-arrow {
  display: flex;
}

.role-tab.active:hover .role-arrow {
  transform: translateX(3px);
}

.role-divider {
  width: 1px;
  height: 28px;
  background: #E2E8F0;
  flex-shrink: 0;
  margin: 0 4px;
}

.role-selector-note {
  padding: 0 16px;
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.35;
  text-align: right;
  flex-shrink: 0;
  border-left: 1px solid #E2E8F0;
}

/* --------------------------------------------------------------------------
   04 CREC AI 工程智能体工作台
   -------------------------------------------------------------------------- */
.ai-workbench-section {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding-bottom: 44px;
  background: transparent;
}

.workbench-outer-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 36px 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.workbench-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.workbench-title-wrap {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex: 1;
}

.workbench-title {
  font-size: 23px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.2;
}

.workbench-kicker-en {
  font-family: var(--font-family-en);
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.3px;
  margin-top: 3px;
}

.workbench-subtitle {
  font-size: 12px;
  color: #64748B;
  max-width: 420px;
  line-height: 1.45;
  margin-bottom: 2px;
}

.workbench-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--crec-red);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.workbench-more-link:hover {
  transform: translateX(3px);
}

.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-card {
  background: #FFFFFF;
  border: 1px solid #EEF2F6;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

#agentCard1 {
  background: radial-gradient(circle at 85% 15%, rgba(229, 25, 44, 0.07) 0%, rgba(255, 255, 255, 0) 65%), #FFFFFF;
}

#agentCard2 {
  background: radial-gradient(circle at 85% 15%, rgba(43, 59, 78, 0.04) 0%, rgba(255, 255, 255, 0) 65%), #FFFFFF;
}

#agentCard3 {
  background: radial-gradient(circle at 85% 15%, rgba(229, 25, 44, 0.05) 0%, rgba(255, 255, 255, 0) 65%), #FFFFFF;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(229, 25, 44, 0.2);
}

.card-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  min-height: 56px;
}

.agent-num-wrap {
  display: flex;
  flex-direction: column;
}

.agent-num {
  font-family: var(--font-family-mono);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.agent-num.num-red {
  color: #E5192C;
}

.agent-num.num-blue {
  color: #2B3B4E;
}

.agent-kicker {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.25;
  margin-top: 4px;
}

.agent-kicker.kicker-red {
  color: #E5192C;
}

.agent-kicker.kicker-blue {
  color: #64748B;
}

.agent-badge-visual {
  width: 104px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.agent-3d-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.agent-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.agent-icon-badge.icon-red {
  background: #FEF2F2;
  color: #E5192C;
  border: 1px solid #FEE2E2;
}

.agent-icon-badge.icon-neutral {
  background: #F8FAFC;
  color: #1E293B;
  border: 1px solid #E2E8F0;
}

.agent-name {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.agent-en {
  font-family: var(--font-family-en);
  font-size: 11.5px;
  color: #6B7280;
  margin-top: 1px;
}

.agent-desc {
  font-size: 11.5px;
  color: #9CA3AF;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* Agent Form Fields */
.agent-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.form-input, .form-select {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 12px;
  color: #111827;
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input:focus, .form-select:focus {
  background: #FFFFFF;
  border-color: var(--crec-red);
  box-shadow: 0 0 0 3px rgba(229, 25, 44, 0.1);
  outline: none;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.custom-select-wrap {
  position: relative;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Execution Steps Grid (Agent 01) */
.execution-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  margin-bottom: 12px;
  padding: 6px 8px;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 6px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}

.step-done .step-dot {
  color: #6B7280;
  font-size: 8px;
}

.step-done .step-text {
  color: #4B5563;
}

.step-active .step-dot {
  color: var(--crec-red);
  font-size: 8px;
}

.step-pulse {
  animation: pulseOpacity 1.5s infinite;
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.step-active .step-text {
  color: var(--crec-red);
  font-weight: 600;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 10px;
  font-weight: 700;
  user-select: none;
}

/* Tab Pills (Agent 02) */
.tab-pill-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 4px;
}

.tab-pill {
  border: none;
  background: transparent;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.tab-pill.active {
  color: #111827;
  font-weight: 700;
}

.tab-pill.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E5192C;
  border-radius: 2px;
}

.tab-pill:not(.active) {
  background: #F3F4F6;
  border-radius: 6px;
  padding: 3px 8px;
}

/* Diff Table (Agent 02) */
.table-responsive {
  width: 100%;
  margin-bottom: 12px;
}

.replacement-diff-table {
  width: 100%;
  font-size: 11.5px;
  text-align: left;
  border-collapse: collapse;
}

.replacement-diff-table th {
  padding: 5px 6px;
  font-weight: 700;
  color: #64748B;
  background: #F8FAFC;
  font-size: 10.5px;
  border: none;
}

.replacement-diff-table td {
  padding: 6px 6px;
  color: #1E293B;
  border-bottom: 1px solid #F1F5F9;
  font-family: var(--font-family-mono);
  font-size: 11px;
}

.replacement-diff-table .param-name {
  font-family: var(--font-family-base);
  font-weight: 600;
  color: #475569;
}

.replacement-diff-table .crec-model {
  font-weight: 700;
  color: #111827;
}

.replacement-diff-table .highlight-cell {
  color: #111827;
}

.replacement-diff-table .text-red-bold {
  color: #E5192C;
  font-weight: 700;
}

.badge-match, .badge-better {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font-family-base);
  background: #ECFDF5;
  color: #059669;
}

/* Radio Group (Agent 03) */
.sample-radio-group {
  margin-top: 4px;
  margin-bottom: 6px;
}

.radio-options {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12.5px;
  color: #111827;
  font-weight: 500;
}

.radio-label input[type="radio"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid #CBD5E1;
  border-radius: 50%;
  position: relative;
  transition: all var(--transition-fast);
}

.radio-label input[type="radio"]:checked {
  border-color: var(--crec-red);
  background-color: var(--crec-red);
  box-shadow: inset 0 0 0 3px #FFFFFF;
}

/* Agent Submit CTA Button */
.btn-agent-submit {
  width: 100%;
  height: 44px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #F02839 0%, #D61324 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(229, 25, 44, 0.35);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-agent-submit:hover {
  box-shadow: 0 10px 24px rgba(229, 25, 44, 0.45);
  transform: translateY(-1.5px);
}

.btn-agent-submit svg {
  transition: transform var(--transition-fast);
}

.btn-agent-submit:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   05 核心产品 / OUR PRODUCTS
   -------------------------------------------------------------------------- */
.products-section {
  padding: 38px 0 44px;
  background: #FFFFFF;
  position: relative;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.heading-with-red-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.section-red-bar {
  width: 3.5px;
  height: 44px;
  background: var(--crec-red);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.section-title-main {
  font-size: 23px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

.section-title-main .en-kicker {
  font-family: var(--font-family-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.section-desc-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.section-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.section-top-link:hover {
  color: var(--crec-red);
}

/* Products Bento Grid */
.products-bento-grid {
  display: grid;
  grid-template-columns: 1.42fr 1fr;
  gap: 18px;
}

.product-bento-card {
  background: #FFFFFF;
  border: 1px solid #EAEFF5;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.product-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(229, 25, 44, 0.2);
}

/* 01 Large Featured Card */
.bento-featured {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 30px 0 30px 32px;
  background: linear-gradient(135deg, #F0F6FC 0%, #E2ECF7 100%);
  border: 1px solid #D6E4F0;
  position: relative;
  overflow: hidden;
}

.bento-featured-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  max-width: 250px;
  flex-shrink: 0;
}

.bento-num {
  font-family: var(--font-family-en);
  font-size: 16px;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.bento-title-en {
  font-family: var(--font-family-en);
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.bento-title-cn {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 14px;
}

.bento-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.bento-tag {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(203, 213, 225, 0.6);
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.bento-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--crec-red);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.bento-cta-link:hover {
  transform: translateX(3px);
}

.bento-featured-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  margin-right: -10px;
}

.bento-featured-img {
  max-width: 115%;
  max-height: 240px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-smooth);
}

.bento-featured:hover .bento-featured-img {
  transform: scale(1.04);
}

/* Right 2x2 Subgrid */
.product-bento-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.bento-item {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
}

.bento-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.bento-item-num {
  font-family: var(--font-family-en);
  font-size: 14px;
  font-weight: 700;
  color: #94A3B8;
}

.bento-item-visual {
  width: 72px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-item-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
  transition: transform var(--transition-smooth);
}

.bento-item:hover .bento-item-img {
  transform: scale(1.08);
}

.bento-item-info {
  margin-top: 10px;
}

.bento-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
}

.bento-item-series {
  font-family: var(--font-family-en);
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   06 行业应用 / INDUSTRY APPLICATIONS (Asymmetric Bento Grid)
   -------------------------------------------------------------------------- */
.applications-section {
  padding: 40px 0 46px;
  background: #FFFFFF;
}

.applications-bento-grid {
  display: flex;
  gap: 14px;
  height: 250px;
  width: 100%;
}

.app-accordion-card {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-width: 0;
  transition: flex 0.45s cubic-bezier(0.25, 1, 0.35, 1), box-shadow 0.3s ease, transform 0.3s ease;
}

.app-accordion-card.active {
  flex: 2.5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* Accordion Active States (Controlled by smooth JS event handling + fallback) */
.app-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-accordion-card.active .app-card-bg {
  transform: scale(1.06);
}

.app-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 15%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 14px;
  transition: padding 0.4s ease, background 0.4s ease;
  z-index: 2;
}

.app-accordion-card.active .app-card-overlay {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.app-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.app-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  white-space: nowrap;
  transition: font-size 0.35s ease;
}

.app-card-en {
  font-family: var(--font-family-en);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  margin-top: 2px;
  white-space: nowrap;
  transition: font-size 0.35s ease, color 0.35s ease, margin 0.35s ease;
}

.app-accordion-card.active .app-card-title {
  font-size: 19px;
  font-weight: 800;
}

.app-accordion-card.active .app-card-en {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.8px;
  margin-top: 3px;
  margin-bottom: 8px;
}

.app-card-expand-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, transform 0.35s ease;
}

.app-accordion-card.active .app-card-expand-details {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
}

.app-card-tags {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-specs {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-app-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
  margin-left: 10px;
  cursor: pointer;
}

.btn-app-arrow svg {
  width: 12px;
  height: 12px;
  transition: width 0.3s ease, height 0.3s ease, transform 0.2s ease;
}

.app-accordion-card.active .btn-app-arrow {
  width: 38px;
  height: 38px;
  background: var(--crec-red);
  border-color: var(--crec-red);
  box-shadow: 0 4px 14px rgba(229, 25, 44, 0.5);
  transform: scale(1.05);
}

.app-accordion-card.active .btn-app-arrow svg {
  width: 16px;
  height: 16px;
}

.app-accordion-card:hover .btn-app-arrow svg {
  transform: translateX(2px);
}

.app-accordion-card.active .btn-app-arrow:hover {
  background: var(--crec-red-hover);
  box-shadow: 0 6px 18px rgba(229, 25, 44, 0.65);
  transform: scale(1.12);
}

/* --------------------------------------------------------------------------
   07 技术文章 & 新闻中心 / ARTICLES & NEWS (6:4 Split Grid)
   -------------------------------------------------------------------------- */
.content-split-section {
  padding: 44px 0 48px;
  background: #FAFCFE;
}

.content-split-container {
  display: grid;
  grid-template-columns: 1.48fr 1fr;
  gap: 36px;
}

.split-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card-mini {
  background: #FFFFFF;
  border: 1px solid #EAEFF5;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.article-card-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(229, 25, 44, 0.2);
}

.article-thumb-box {
  width: 100%;
  height: 105px;
  overflow: hidden;
  background: #F1F5F9;
}

.article-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.article-card-mini:hover .article-thumb-img {
  transform: scale(1.05);
}

.article-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-tag-label {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 600;
  color: #64748B;
  background: #F1F5F9;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.article-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  height: 36px;
}

.article-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-date {
  font-size: 11px;
  color: #94A3B8;
  font-family: var(--font-family-en);
}

.btn-article-round {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: var(--crec-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.article-card-mini:hover .btn-article-round {
  background: var(--crec-red);
  border-color: var(--crec-red);
  color: #FFFFFF;
}

/* Right Column: News List */
.split-news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #EAEFF5;
  border-radius: 12px;
  padding: 12px 16px;
  gap: 14px;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.news-list-item:hover {
  border-color: rgba(229, 25, 44, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-family: var(--font-family-en);
  font-size: 11px;
  color: #94A3B8;
  font-weight: 500;
}

.news-title {
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.4;
  margin: 4px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-arrow-link {
  display: inline-flex;
  align-items: center;
  color: var(--crec-red);
  font-size: 13px;
  transition: transform var(--transition-fast);
  width: fit-content;
}

.news-list-item:hover .news-arrow-link {
  transform: translateX(3px);
}

.news-thumb-box {
  width: 90px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}

.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.news-list-item:hover .news-thumb-img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   08 合作伙伴 / OUR PARTNERS
   -------------------------------------------------------------------------- */
.partners-section {
  padding: 38px 0 44px;
  background: #FAFCFE;
}

.partners-card-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #EAEFF5;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  gap: 16px;
}

.carousel-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #EEF2F6;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  border-color: var(--crec-red);
  color: var(--crec-red);
  box-shadow: 0 4px 12px rgba(229, 25, 44, 0.15);
}

.partners-logos-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  gap: 20px;
  overflow-x: auto;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  opacity: 0.85;
  transition: all var(--transition-fast);
}

.partner-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-img {
  height: 24px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: contrast(1.02);
  transition: transform var(--transition-fast);
}

.partner-logo-item:hover .partner-img {
  transform: scale(1.08);
}

/* Brand Typography & Fallback Styles */
.brand-text {
  font-family: var(--font-family-en);
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.brand-text.samsung {
  font-size: 16px;
  color: #034EA2;
  letter-spacing: 1px;
}

.brand-text.epson {
  font-size: 16px;
  color: #003399;
  letter-spacing: 1px;
}

.brand-text.tdk {
  font-size: 17px;
  color: #005CAB;
  letter-spacing: 0.5px;
}

.brand-text.nxp {
  font-size: 16px;
  letter-spacing: 1px;
}
.brand-text.nxp .n { color: #8DBB24; }
.brand-text.nxp .x { color: #F0AB00; }
.brand-text.nxp .p { color: #0087CD; }

.brand-text.murata {
  font-size: 16px;
  color: #E60012;
  font-style: italic;
  letter-spacing: -0.5px;
}

.brand-text.ti {
  font-size: 11.5px;
  color: #CC0000;
  gap: 4px;
}
.brand-text.ti .ti-icon {
  font-size: 10px;
}

.brand-text.bosch {
  font-size: 15px;
  color: #EA1D25;
  gap: 4px;
}

.brand-text.onsemi {
  font-size: 15px;
  color: #E21B23;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   09 沉浸式暗色全景 BANNER (PRECISION FREQUENCY FOR A BRIGHTER TOMORROW)
   -------------------------------------------------------------------------- */
.panoramic-banner-section {
  position: relative;
  overflow: hidden;
  background: #060A11;
  color: #FFFFFF;
}

.banner-earth-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-earth-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panoramic-banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 54px;
}

.banner-left-content {
  max-width: 480px;
  position: relative;
  padding-left: 18px;
}

.banner-red-bar {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3.5px;
  background: var(--crec-red);
  border-radius: 2px;
}

.banner-en-title {
  font-family: var(--font-family-en);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.banner-cn-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

.btn-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crec-red);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 9999px;
  box-shadow: 0 4px 18px rgba(229, 25, 44, 0.5);
  transition: all var(--transition-base);
}

.btn-banner-cta:hover {
  background: #D11324;
  box-shadow: 0 6px 24px rgba(229, 25, 44, 0.65);
  transform: translateY(-1px);
}

.btn-banner-cta svg {
  transition: transform var(--transition-fast);
}

.btn-banner-cta:hover svg {
  transform: translateX(3px);
}

.banner-right-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.banner-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-capsule {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.trust-desc {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

.banner-brand-subtag {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-subtag-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   10 FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid #E5E9F0;
  padding-top: 42px;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr 2fr;
  gap: 20px;
  padding-bottom: 34px;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 10px;
}

.logo-footer {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-slogan {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.footer-slogan .en-sub {
  font-family: var(--font-family-en);
  color: var(--text-muted);
  font-size: 11px;
}

.footer-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--crec-red);
}

/* Subscribe & Social */
.subscribe-form {
  display: flex;
  align-items: center;
  background: #FAFCFE;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.subscribe-input {
  flex: 1;
  height: 34px;
  padding: 0 10px;
  font-size: 12px;
  color: var(--text-primary);
}

.btn-subscribe {
  width: 36px;
  height: 34px;
  background: var(--crec-red-gradient);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.btn-subscribe:hover {
  filter: brightness(1.1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F4F9;
  color: #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-circle:hover {
  background: var(--crec-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Sub-Footer */
.footer-bottom-row {
  border-top: 1px solid #ECEFF4;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--crec-red);
}

.legal-divider, .lang-sep {
  color: #CBD5E1;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.red-lang-dot {
  color: var(--crec-red);
  font-size: 11px;
}

/* --------------------------------------------------------------------------
   Interactive Modals & Toast Feedback
   -------------------------------------------------------------------------- */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.video-modal-card {
  width: 90%;
  max-width: 640px;
  background: #111827;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}

.btn-close-modal {
  color: #9CA3AF;
  font-size: 16px;
  padding: 4px;
}

.btn-close-modal:hover {
  color: #FFFFFF;
}

.video-modal-body {
  padding: 24px;
}

.video-mock-player {
  height: 320px;
  background: linear-gradient(180deg, rgba(11, 17, 25, 0.72) 0%, rgba(11, 17, 25, 0.92) 100%), url('../assets/hero/hero_machine_hd.jpg') center/cover no-repeat;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #E2E8F0;
  font-size: 13.5px;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
}

.video-play-pulse {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--crec-red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(229, 25, 44, 0.6);
}

.interaction-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  background: #111827;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--crec-red);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
}

.interaction-toast.show {
  transform: translateY(0);
  opacity: 1;
}
