
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600&family=Syne:wght@400;600;800&display=swap');

* { font-family: 'JetBrains Mono', monospace !important; }

h1, h2, h3, h4, h5, h6,
.title, .heading, [class*="title"], [class*="heading"] {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { width: 100%; height: 100%; }
  body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #07080f 0%, #0d1535 50%, #0a0e2e 100%);
    color: #e8eaf2;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(0,210,180,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,210,180,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
  }
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(0,210,180,0.10) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 50%, rgba(124,106,255,0.08) 0%, transparent 50%);
    z-index: 0;
    animation: gradShift 15s ease-in-out infinite;
  }
  @keyframes gradShift {
    0%,100% {
      background:
        radial-gradient(ellipse at 20% 50%, rgba(0,210,180,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124,106,255,0.08) 0%, transparent 50%);
    }
    50% {
      background:
        radial-gradient(ellipse at 80% 40%, rgba(0,210,180,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 60%, rgba(124,106,255,0.08) 0%, transparent 50%);
    }
  }

  #particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 28px;
    background: rgba(0,0,0,0.35);
    border: 2px solid rgba(0,210,180,0.25);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,210,180,0.1), inset 0 1px 0 rgba(0,210,180,0.1);
    backdrop-filter: blur(10px);
  }
  .header-left h1 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #00d2b4, #7c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .header-left p { font-size: 12px; color: #6b7194; letter-spacing: 0.05em; }
  .status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(124,106,255,0.12);
    border: 2px solid rgba(124,106,255,0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #7c6aff;
    box-shadow: 0 0 16px rgba(124,106,255,0.2);
    white-space: nowrap;
  }
  .status-dot {
    width: 8px; height: 8px;
    background: #7c6aff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124,106,255,0.4); }
    50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(124,106,255,0); }
  }
  .section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00d2b4;
    margin-bottom: 14px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::after { content: ''; flex: 1; height: 1px; background: rgba(0,210,180,0.2); }
  .tape-wrap {
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid rgba(0,210,180,0.15);
    margin-bottom: 28px;
  }
  .tape { display: flex; width: max-content; animation: tapeScroll 22s linear infinite; }
  .tape-seg {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    padding: 10px 28px;
    white-space: nowrap;
    border-right: 1px solid rgba(0,0,0,0.5);
    text-transform: uppercase;
  }
  .tape-seg.a { background: rgba(0,210,180,0.12); color: #00d2b4; }
  .tape-seg.b { background: rgba(124,106,255,0.10); color: #7c6aff; }
  @keyframes tapeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .hero-box {
    background: linear-gradient(135deg, rgba(0,210,180,0.06) 0%, rgba(0,0,0,0.8) 100%);
    border: 2px solid rgba(0,210,180,0.2);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(0,210,180,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  .hero-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d2b4, #7c6aff, transparent);
  }
  .hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00d2b4;
    background: rgba(0,210,180,0.08);
    border: 1px solid rgba(0,210,180,0.25);
    border-radius: 6px;
    padding: 5px 14px;
    margin-bottom: 28px;
  }
  .hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 10vw, 88px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
  }
  .hero-title .t1 { display: block; color: #e8eaf2; }
  .hero-title .t2 {
    display: block;
    background: linear-gradient(135deg, #00d2b4, #7c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: gradShiftText 4s ease-in-out infinite alternate;
  }
  @keyframes gradShiftText { from { background-position: 0%; } to { background-position: 100%; } }
  .hero-sub { font-size: 13px; color: #6b7194; line-height: 1.7; max-width: 480px; margin: 0 auto; }
  .hero-sub strong { color: #c8cfed; font-weight: 600; }
  .gear-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 32px 0 20px; }
  .gear { font-size: 32px; display: inline-block; opacity: 0.5; filter: hue-rotate(160deg); }
  .gear-cw  { animation: spinCW  5s linear infinite; }
  .gear-ccw { animation: spinCCW 3.5s linear infinite; font-size: 20px; opacity: 0.3; }
  @keyframes spinCW  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
  @keyframes spinCCW { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }
  .progress-wrap { width: 100%; max-width: 440px; margin: 0 auto; }
  .progress-label { display: flex; justify-content: space-between; font-size: 10px; color: #6b7194; margin-bottom: 8px; font-weight: 600; letter-spacing: 0.05em; }
  .progress-track { width: 100%; height: 4px; background: rgba(0,210,180,0.1); border-radius: 100px; overflow: hidden; border: 1px solid rgba(0,210,180,0.15); }
  .progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, #00d2b4, #7c6aff);
    background-size: 200%;
    animation: fillBar 3.5s ease 0.8s forwards, gradShiftText 2s linear infinite alternate;
  }
  @keyframes fillBar { to { width: 62%; } }
  .platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 20px; }
  .platform-card {
    background: linear-gradient(135deg, rgba(0,210,180,0.06) 0%, rgba(0,0,0,0.6) 100%);
    border: 2px solid rgba(0,210,180,0.18);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .platform-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
  .card-amazon::before { background: linear-gradient(90deg, #00d2b4, transparent); }
  .card-tiktok::before { background: linear-gradient(90deg, #7c6aff, transparent); }
  .platform-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,210,180,0.15); border-color: rgba(0,210,180,0.4); }
  .platform-icon { font-size: 36px; margin-bottom: 12px; display: block; filter: grayscale(20%); }
  .platform-name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00d2b4, #7c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .platform-desc { font-size: 11px; color: #4a5070; line-height: 1.6; margin-bottom: 14px; }
  .coming-pill {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0,210,180,0.1);
    color: #00d2b4;
    border: 1px solid rgba(0,210,180,0.3);
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
  .system-box {
    background: linear-gradient(135deg, rgba(0,210,180,0.06) 0%, rgba(0,0,0,0.8) 100%);
    border: 2px solid rgba(0,210,180,0.2);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(0,210,180,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
  }
  .system-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid rgba(0,210,180,0.1); font-size: 12px; }
  .system-row:last-child { border: none; }
  .system-key { color: #6b7194; font-weight: 500; }
  .system-value { color: #c0c8e0; font-weight: 600; text-align: right; display: flex; align-items: center; gap: 8px; }
  .dot-pending { width: 8px; height: 8px; border-radius: 50%; background: #7c6aff; box-shadow: 0 0 8px rgba(124,106,255,0.6); animation: pulse 1.5s ease-in-out infinite; flex-shrink: 0; }
  .dot-ok { width: 8px; height: 8px; border-radius: 50%; background: #00ff88; box-shadow: 0 0 8px rgba(0,255,136,0.6); flex-shrink: 0; }
  @media (max-width: 600px) {
    .header { flex-direction: column; gap: 16px; text-align: center; }
    .hero-box { padding: 32px 20px; }
    body { padding: 12px; }
  }
  /* --- compact graphic hero --- */
  .deal-hero {
    position: relative; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(0,210,180,0.08) 0%, rgba(124,106,255,0.06) 50%, rgba(0,0,0,0.55) 100%);
    border: 2px solid rgba(0,210,180,0.2); border-radius: 22px; padding: 26px 28px; margin: 8px 0 26px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(0,210,180,0.1); backdrop-filter: blur(10px); overflow: hidden;
  }
  .deal-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #00d2b4, #7c6aff, transparent); }
  .deal-badge {
    flex-shrink: 0; width: 76px; height: 76px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 38px;
    background: linear-gradient(135deg, rgba(0,210,180,0.18), rgba(124,106,255,0.18)); border: 2px solid rgba(0,210,180,0.35);
    box-shadow: 0 0 28px rgba(0,210,180,0.25); animation: badgeFloat 4s ease-in-out infinite;
  }
  @keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
  .deal-hero-txt { min-width: 220px; flex: 1; }
  .deal-hero-txt h2 {
    font-family: 'Syne', sans-serif; font-size: clamp(20px,3.6vw,28px); font-weight: 800; line-height: 1.08; margin-bottom: 8px;
    background: linear-gradient(135deg, #00d2b4, #7c6aff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .deal-hero-txt p { font-size: 12.5px; color: #8a92b2; line-height: 1.6; }
  .deal-hero-txt p a { color: #7c6aff; }
  .deal-chips { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; }
  .deal-chip {
    display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: 0.02em; color: #c0c8e0;
    background: rgba(0,0,0,0.3); border: 1px solid rgba(0,210,180,0.22); border-radius: 100px; padding: 8px 15px;
  }
  .deal-chip span { font-size: 14px; }
  @media (max-width: 540px) { .deal-hero { flex-direction: column; text-align: center; } .deal-hero-txt { text-align: center; } .deal-chips { justify-content: center; } }
  /* --- slim "coming soon" strip --- */
  .deal-soon {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; text-align: center;
    background: linear-gradient(135deg, rgba(124,106,255,0.1), rgba(0,0,0,0.4)); border: 1px dashed rgba(124,106,255,0.4);
    border-radius: 16px; padding: 15px 20px; margin: 28px 0 8px;
  }
  .deal-soon .ds-ico { font-size: 24px; }
  .deal-soon .ds-txt { font-size: 12.5px; color: #9aa2c0; }
  .deal-soon .ds-txt b { color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; }
  .deal-soon .ds-pill {
    font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #7c6aff; white-space: nowrap;
    background: rgba(124,106,255,0.12); border: 1px solid rgba(124,106,255,0.4); border-radius: 100px; padding: 5px 12px; animation: blink 2s ease-in-out infinite;
  }
