/* ==========================================================================
   Chartyx Landing — HERO module only
   Keep this file modular: append new sections below as separate modules
   ========================================================================== */

/* ========== HERO (st-landing-hero) ========== */

.st-landing-hero {
    /* layout */
    min-height: auto;                 /* ключевое: не заставляем hero быть почти 100vh */
    display: flex;
    align-items: flex-start;
    justify-content: center;

    /* spacing (bottom теперь адаптивный, без огромной дыры) */
    padding: clamp(64px, 8vh, 92px) 16px clamp(32px, 6vh, 64px);

    position: relative;
    isolation: isolate;
}

.st-landing-hero__inner {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.st-landing-hero__title {
    margin: 0 0 18px;

    font-weight: 760;
    line-height: 1.06;
    letter-spacing: 0.01em;
    font-size: clamp(2.1rem, 4.6vw, 4.1rem);

    color: rgba(248, 250, 252, 0.96);

    /* clean rendering */
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

.st-landing-hero__title-line {
    display: block;
    position: relative;

    /* keep two lines on desktop */
    white-space: nowrap;
}

/* Subtle highlight behind the second line (Effect 1) — premium, neutral */
.st-landing-hero__title-line--highlight {
    position: relative;
    z-index: 1;
}

.st-landing-hero__title-line--highlight::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);

    width: 110%;
    height: 1.2em;

    /* neutral wash (no blue/purple blobs) */
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.11),
        transparent 70%
    );

    filter: blur(28px);
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
}

/* Brand gradient on "Chartyx" (Effect 2) */
.st-landing-hero__brand {
    background: -webkit-linear-gradient(90deg, #0cc0df, #004aad);
    background: linear-gradient(90deg, #0cc0df, #004aad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* very subtle depth */
    filter: drop-shadow(0 10px 18px rgba(0, 74, 173, 0.10));
}

.st-landing-hero__subtitle {
    margin: 0 auto 22px;
    max-width: 780px;

    font-size: 1.08rem;
    line-height: 1.65;

    color: rgba(203, 213, 225, 0.92);
}

.st-landing-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin: 0 auto 14px;
    font-size: 0.98rem;
}

/* Log in — with the same “header-like” glow */
.st-landing-hero__cta-link {
    font-size: 15px;
    font-weight: 560;
    color: rgba(248, 250, 252, 0.96);
    text-decoration: none;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.28),
        0 0 18px rgba(255, 255, 255, 0.12);

    transition:
        opacity 0.18s ease,
        text-shadow 0.2s ease;
}

.st-landing-hero__cta-link:hover {
    opacity: 0.92;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.34),
        0 0 22px rgba(255, 255, 255, 0.16);
}

.st-landing-hero__cta-separator {
    color: rgba(148, 163, 184, 0.9);
}

/* Primary button (brand gradient) — fixes right-edge “stripe” */
.st-landing-hero__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 26px;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    color: #ffffff;
    text-decoration: none;

    /* IMPORTANT: avoid background bleeding / seams */
    background: linear-gradient(90deg, #0cc0df, #004aad);
    background-clip: padding-box;

    /* prevent gradient seam artifacts on some GPUs */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    /* keep it clean: remove inner “inset” ring that may look like a stripe */
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 74, 173, 0.24);

    transition:
        transform 0.18s ease,
        box-shadow 0.22s ease,
        opacity 0.18s ease;
}

.st-landing-hero__cta-button:hover {
    transform: translateY(-1px) translateZ(0);
    opacity: 0.98;
    box-shadow: 0 18px 40px rgba(0, 74, 173, 0.30);
}

.st-landing-hero__cta-button:active {
    transform: translateY(0px) translateZ(0);
}

.st-landing-hero__note {
    margin: 0;

    font-size: 0.93rem;
    line-height: 1.55;

    color: rgba(148, 163, 184, 0.90);
}

/* Responsive tweaks */
@media (max-width: 720px) {
    .st-landing-hero {
        padding: 84px 16px 92px;
        min-height: auto;
    }

    .st-landing-hero__title {
        margin-bottom: 16px;
        font-size: clamp(2rem, 8.4vw, 3.1rem);
    }

    /* allow wraps on small screens */
    .st-landing-hero__title-line {
        white-space: normal;
    }

    /* reduce highlight strength on small screens */
    .st-landing-hero__title-line--highlight::before {
        width: 104%;
        opacity: 0.34;
        filter: blur(26px);
    }

    .st-landing-hero__subtitle {
        font-size: 1.02rem;
        margin-bottom: 20px;
    }

    .st-landing-hero__cta {
        gap: 12px;
    }

    .st-landing-hero__cta-button {
        padding: 10px 22px;
        border-radius: 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .st-landing-hero__cta-link,
    .st-landing-hero__cta-button {
        transition: none;
    }
}

/* ==========================================================================
   Chartyx Landing — AI REPORT (Block 1) — CLEAN / OPTIMIZED
   Requirements:
   - No “second background” (section stays transparent)
   - Minimal UI (no pills)
   - Screenshot not cropped; inside rounded frame
   - Scan line travels full height and bounces (down ↔ up)
   - Status line under screenshot, left-aligned
   - Rotating phrases do NOT overlap "Progress:" and stay on the same baseline
   - Improve: AI REPORT visibility (A + subtle line)
   - Improve: Market/Instrument/Timeframe readability + subtle glass
   - Improve: subtle shimmer (premium, slow, with pauses)
   ========================================================================== */

.st-ai-input{
  position: relative;
  padding: clamp(64px, 8vh, 96px) 16px clamp(72px, 9vh, 120px);
  overflow: visible;
  background: transparent;
}

.st-ai-input::before,
.st-ai-input::after{ content: none; }

.st-ai-input__inner{
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
  background: transparent;
}

.st-ai-input__head{
  max-width: 920px;
  margin: 0 auto clamp(20px, 2.6vw, 26px);
}

/* --- AI REPORT: A + subtle underline (no pill) --- */
.st-ai-input__kicker{
  position: relative;
  display: inline-block;

  margin: 0 0 14px;
  font-size: 14.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;

  color: rgba(240, 248, 255, 0.88);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.07),
    0 10px 26px rgba(0,0,0,0.45);
}

/* almost invisible line under AI REPORT */
.st-ai-input__kicker::after{
  content:"";
  display:block;
  width: 56px;
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.00),
    rgba(255,255,255,0.30),
    rgba(255,255,255,0.00)
  );
  opacity: 0.78;
}

/* --- Title + premium shimmer (slow + pause + narrow specular highlight) --- */
.st-ai-input__title{
  margin: 0 0 14px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-size: clamp(2.0rem, 3.6vw, 3.2rem);

  /* base readability */
  color: rgba(248, 250, 252, 0.96);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;

  /* subtle depth */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 20px 46px rgba(0,0,0,0.55);

  /* shimmer: visible, premium, with a narrow specular peak */
  background-image: linear-gradient(
    100deg,
    rgba(248,250,252,0.96) 0%,
    rgba(248,250,252,0.96) 42%,

    rgba(255,255,255,1.00) 48%,
    rgba(230,240,255,1.00) 50%,
    rgba(255,255,255,1.00) 52%,

    rgba(248,250,252,0.96) 58%,
    rgba(248,250,252,0.96) 100%
  );

  background-size: 260% 100%;
  background-position: -130% 50%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: stAiTitleShimmer 11.5s cubic-bezier(.4,0,.2,1) infinite;
}

/* slow sweep + pauses so it reads */
@keyframes stAiTitleShimmer{
  0%   { background-position: -130% 50%; }
  22%  { background-position: -130% 50%; } /* pause */
  55%  { background-position: 130% 50%; }  /* sweep */
  78%  { background-position: 130% 50%; }  /* pause */
  100% { background-position: -130% 50%; }
}

.st-ai-input__subtitle{
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.92);
}

.st-ai-input__stage{
  margin: clamp(18px, 2.6vw, 22px) auto 0;
  max-width: 1100px;
  background: transparent;
}

/* --- Meta line: clearer hierarchy + subtle glass --- */
.st-ai-input__meta{
  margin: 0 auto 14px;
  font-size: 1.02rem;
  line-height: 1.45;

  color: rgba(226, 232, 240, 0.86);

  text-shadow:
    0 1px 0 rgba(255,255,255,0.05),
    0 10px 24px rgba(0,0,0,0.45);
}

.st-ai-input__meta-k{
  color: rgba(241, 245, 249, 0.94);
  font-weight: 720;
}

.st-ai-input__meta-sep{
  color: rgba(226, 232, 240, 0.70);
  margin: 0 10px;
}

/* ---------- Screenshot module ---------- */
.st-ai-shot{ margin: 0; }

.st-ai-shot__frame{
  --pad: clamp(12px, 1.4vw, 16px);
  --rad: 24px;
  --shot-rad: 16px;

  position: relative;
  border-radius: var(--rad);
  padding: var(--pad);
  overflow: hidden;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.st-ai-shot__img{
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  background: rgba(0,0,0,0.24);
  border-radius: var(--shot-rad);
}

/* Overlay bound to screenshot area only (keeps scan out of status line) */
.st-ai-shot__overlay{
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: var(--pad);

  bottom: calc(var(--pad) + 44px);

  border-radius: var(--shot-rad);
  overflow: hidden;
  pointer-events: none;

  isolation: isolate;
}

.st-ai-shot__wash{
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.85;
  background:
    radial-gradient(120% 70% at 50% 30%,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.00) 62%
    ),
    linear-gradient(180deg,
      rgba(0,0,0,0.00),
      rgba(0,0,0,0.14)
    );
}

/* Scanner line: beam style (bright core + soft glow), no brand gradient */
.st-ai-shot__scanline{
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  z-index: 2;

  height: 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);

  box-shadow:
    0 10px 26px rgba(255,255,255,0.10),
    0 2px 10px rgba(0,0,0,0.28);

  opacity: 0.95;
  animation: stAiScanBounce 3.2s ease-in-out infinite alternate;
}

.st-ai-shot__scanline::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.18) 28%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.18) 72%,
    rgba(255,255,255,0.00) 100%
  );
  filter: blur(0.2px);
}

.st-ai-shot__scanline::after{
  content:"";
  position: absolute;
  left: -2%;
  right: -2%;
  top: -80%;
  bottom: -80%;
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.00) 70%
  );
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

@keyframes stAiScanBounce{
  from { top: -14px; opacity: 0.28; }
  15%  { opacity: 0.92; }
  85%  { opacity: 0.70; }
  to   { top: calc(100% + 14px); opacity: 0.28; }
}

/* ---------- Status line (NO pill, left aligned, single baseline) ---------- */
.st-ai-shot__status{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  margin-top: 12px;
  padding-top: 12px;

  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;

  border-top: 1px solid rgba(255,255,255,0.06);

  text-align: left;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.98rem;
  line-height: 1.25;
}

.st-ai-shot__dot{
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;

  background: rgba(34, 197, 94, 0.92);
  box-shadow:
    0 0 0 2px rgba(34, 197, 94, 0.10),
    0 0 16px rgba(34, 197, 94, 0.16);

  animation: stAiDotBreath 2.8s ease-in-out infinite;
}

@keyframes stAiDotBreath{
  0%, 100% { transform: scale(0.92); opacity: 0.72; }
  50%      { transform: scale(1.08); opacity: 0.98; }
}

.st-ai-shot__label{
  flex: 0 0 auto;
  font-weight: 560;
  color: rgba(226, 232, 240, 0.82);
  animation: stAiLabelPulse 3.6s ease-in-out infinite;
}

@keyframes stAiLabelPulse{
  0%, 100% { opacity: 0.86; }
  50%      { opacity: 1; }
}

.st-ai-shot__k{
  color: rgba(148, 163, 184, 0.95);
  font-weight: 650;
}

.st-ai-shot__sep{
  color: rgba(148, 163, 184, 0.55);
  margin: 0 8px;
}

.st-ai-shot__phrase{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 1.25em;
}

.st-ai-shot__status-item{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 100%;
  opacity: 0;

  color: rgba(248, 250, 252, 0.92);
  font-weight: 560;

  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.st-ai-shot__status-item:nth-child(1){ animation: stAiP1 10s infinite; }
.st-ai-shot__status-item:nth-child(2){ animation: stAiP2 10s infinite; }
.st-ai-shot__status-item:nth-child(3){ animation: stAiP3 10s infinite; }
.st-ai-shot__status-item:nth-child(4){ animation: stAiP4 10s infinite; }
.st-ai-shot__status-item:nth-child(5){ animation: stAiP5 10s infinite; }

@keyframes stAiP1{ 0%{opacity:0}  4%{opacity:1} 18%{opacity:1} 22%{opacity:0} 100%{opacity:0} }
@keyframes stAiP2{ 0%{opacity:0} 22%{opacity:0} 26%{opacity:1} 38%{opacity:1} 42%{opacity:0} 100%{opacity:0} }
@keyframes stAiP3{ 0%{opacity:0} 42%{opacity:0} 46%{opacity:1} 58%{opacity:1} 62%{opacity:0} 100%{opacity:0} }
@keyframes stAiP4{ 0%{opacity:0} 62%{opacity:0} 66%{opacity:1} 78%{opacity:1} 82%{opacity:0} 100%{opacity:0} }
@keyframes stAiP5{ 0%{opacity:0} 82%{opacity:0} 86%{opacity:1} 98%{opacity:1} 100%{opacity:0} }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .st-ai-input__meta{ font-size: 0.99rem; }
  .st-ai-input__meta-sep{ margin: 0 8px; }
  .st-ai-input__kicker{ font-size: 14px; }
}

/* On mobile: allow wrapping; remove absolute stacking */
@media (max-width: 720px){
  .st-ai-input{
    padding: 78px 16px 86px;
  }

  /* calmer shimmer on small screens */
  .st-ai-input__title{
    animation-duration: 12.6s;
  }

  .st-ai-input__title{
    font-size: clamp(1.9rem, 8vw, 2.65rem);
    line-height: 1.1;
  }

  .st-ai-input__subtitle{
    font-size: 1.02rem;
  }

  .st-ai-shot__frame{
    --rad: 18px;
    --shot-rad: 14px;
  }

  .st-ai-shot__scanline{ height: 10px; }

  .st-ai-shot__status{
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .st-ai-shot__phrase{
    height: auto;
    flex-basis: 100%;
  }

  .st-ai-shot__status-item{
    position: static;
    transform: none;
    opacity: 1;
    animation: none;
    white-space: normal;
  }

  .st-ai-shot__status-item:nth-child(n+2){ display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .st-ai-input__title{
    animation: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    color: rgba(248, 250, 252, 0.96);
  }

  .st-ai-shot__scanline,
  .st-ai-shot__dot,
  .st-ai-shot__label{
    animation: none;
  }

  .st-ai-shot__phrase{
    height: auto;
  }

  .st-ai-shot__status-item{
    position: static;
    transform: none;
    opacity: 1;
    animation: none;
    white-space: normal;
  }

  .st-ai-shot__status-item:nth-child(n+2){ display: none; }
}

/* ==========================================================
   Scan → Report Connector (Premium)
   - Strong static arrow
   - Animation ONLY inside arrow shape
   - No square glow artifacts
   ========================================================== */

.st-scan-connector{
  padding: clamp(36px, 6vh, 64px) 0;
  display: flex;
  justify-content: center;
}

.st-scan-connector__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Labels (same glow vibe as Log in) */
.st-scan-connector__label{
  font-size: 14px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: rgba(248,250,252,0.92);
  text-shadow:
    0 0 10px rgba(255,255,255,0.28),
    0 0 18px rgba(255,255,255,0.12);
  position: relative;
}

.st-scan-connector__label::after{
  content:"";
  display:block;
  width: 52px;
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.34),
    rgba(255,255,255,0)
  );
  opacity: 0.75;
}

/* Arrow box */
.st-scan-connector__arrow{
  position: relative;
  width: 72px;
  height: 190px;
}

/* Outline (static, readable) */
.st-scan-connector__outline{
  position: absolute;
  inset: 0;

  clip-path: polygon(
    40% 0%,
    60% 0%,
    60% 68%,
    78% 68%,
    50% 100%,
    22% 68%,
    40% 68%
  );

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.62)
  );

  opacity: 0.90;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,0.35));
}

/* Inner animation layer (clipped to arrow shape) */
.st-scan-connector__fill{
  position: absolute;
  inset: 0;

  clip-path: polygon(
    40% 0%,
    60% 0%,
    60% 68%,
    78% 68%,
    50% 100%,
    22% 68%,
    40% 68%
  );

  overflow: hidden; /* IMPORTANT */
  pointer-events: none;
}

/* Moving “specular” highlight (inside only) */
.st-scan-connector__fill::before{
  content:"";
  position: absolute;

  left: -20%;
  width: 140%;
  height: 48px;
  top: -35%;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 24%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.18) 76%,
    rgba(255,255,255,0) 100%
  );

  filter: blur(10px);
  opacity: 0;

  animation: stConnectorSweep 3.6s cubic-bezier(.45,.05,.2,1) infinite;
}

/* Gentle internal “alive” feel */
.st-scan-connector__fill::after{
  content:"";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    80% 60% at 50% 60%,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.00) 65%
  );

  opacity: 0.42;
  animation: stConnectorBreath 5.2s ease-in-out infinite;
}

/* Tip bloom (also clipped; no rectangles) */
.st-scan-connector__tip{
  position: absolute;
  inset: 0;

  clip-path: polygon(
    40% 0%,
    60% 0%,
    60% 68%,
    78% 68%,
    50% 100%,
    22% 68%,
    40% 68%
  );

  pointer-events: none;
}

.st-scan-connector__tip::before{
  content:"";
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);

  width: 90%;
  height: 58%;

  background: radial-gradient(
    60% 40% at 50% 86%,
    rgba(255,255,255,0.32),
    rgba(255,255,255,0.0) 70%
  );

  filter: blur(16px);
  opacity: 0;
  animation: stConnectorTip 3.6s cubic-bezier(.45,.05,.2,1) infinite;
}

/* Animations */
@keyframes stConnectorSweep{
  0%   { top: -35%; opacity: 0; }
  18%  { opacity: 0; }     /* pause */
  30%  { opacity: 0.85; }
  62%  { top: 88%; opacity: 0.95; }
  74%  { opacity: 0; }
  100% { top: 118%; opacity: 0; }
}

@keyframes stConnectorTip{
  0%, 54% { opacity: 0; }
  64%     { opacity: 0.55; }
  78%     { opacity: 0.18; }
  100%    { opacity: 0; }
}

@keyframes stConnectorBreath{
  0%, 100% { opacity: 0.36; }
  50%      { opacity: 0.52; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .st-scan-connector__fill::before,
  .st-scan-connector__fill::after,
  .st-scan-connector__tip::before{
    animation: none;
    opacity: 0.4;
  }
}

/* =======================================================================
   AI REPORT (Block 2.1) — Premium Report pass (v3.1 + tweaks + v3.2)
   - Market Direction label: thicker + subtle white glow
   - List markers: white + soft glow
   - Divider before Summary: brighter + subtle accent gradient
   - No vendor mask props => no yellow warnings
   ======================================================================= */

.st-ai-report{
  padding: clamp(52px, 6.5vw, 88px) 16px;
}

.st-ai-report__inner{
  max-width: 1120px;
  margin: 0 auto;
}

/* Header (must stay identical to top block) */
.st-ai-report__head{ text-align: center; }

.st-ai-report__title{
  margin: 0 0 14px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-size: clamp(2.0rem, 3.6vw, 3.2rem);

  color: rgba(248, 250, 252, 0.96);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;

  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 20px 46px rgba(0,0,0,0.55);

  background-image: linear-gradient(
    100deg,
    rgba(248,250,252,0.96) 0%,
    rgba(248,250,252,0.96) 42%,
    rgba(255,255,255,1.00) 48%,
    rgba(230,240,255,1.00) 50%,
    rgba(255,255,255,1.00) 52%,
    rgba(248,250,252,0.96) 58%,
    rgba(248,250,252,0.96) 100%
  );

  background-size: 260% 100%;
  background-position: -130% 50%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: stAiTitleShimmer 11.5s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes stAiTitleShimmer{
  0%   { background-position: -130% 50%; }
  22%  { background-position: -130% 50%; }
  55%  { background-position: 130% 50%; }
  78%  { background-position: 130% 50%; }
  100% { background-position: -130% 50%; }
}

.st-ai-report__subtitle{
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.84);
}

.st-ai-report__wrap{
  margin: clamp(16px, 2.4vw, 20px) auto 0;
  max-width: 1100px;
}

/* --- Card: narrow, document-like --- */
.st-ai-report__card{
  --pad: clamp(20px, 2.1vw, 26px);
  --rad: 26px;

  max-width: 820px;
  margin: 0 auto;

  position: relative;
  padding: var(--pad);
  border-radius: var(--rad);
  overflow: hidden;

  background:
    radial-gradient(820px 360px at 20% 0%, rgba(12, 192, 223, 0.10), transparent 58%),
    radial-gradient(820px 360px at 82% 8%, rgba(0, 74, 173, 0.10), transparent 60%),
    rgba(255,255,255,0.026);

  border: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 34px 100px rgba(0,0,0,0.64),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.st-ai-report__card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 70px rgba(255,255,255,0.016) inset;
}

/* --- Direction header line --- */
.st-ai-report__topline{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;

  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.st-ai-report__signal{
  display: flex;
  align-items: baseline;
  gap: 12px;
}

/* Market Direction label: thicker + subtle white glow */
.st-ai-report__signal-label{
  font-size: 0.78rem;
  font-weight: 700; /* added thickness */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.72); /* slightly whiter */
  text-shadow:
    0 0 14px rgba(255,255,255,0.07),
    0 0 28px rgba(255,255,255,0.03);
}

/* Bullish: heavier + more “alive” */
.st-ai-report__signal-value{
  font-size: 1.18rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  color: rgba(74, 222, 128, 0.96);

  text-shadow:
    0 0 14px rgba(34, 197, 94, 0.24),
    0 0 34px rgba(34, 197, 94, 0.12),
    0 0 60px rgba(34, 197, 94, 0.06);
}

.st-ai-report__signal-dot{ display: none; }

/* --- Lead: smaller --- */
.st-ai-report__lead{
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(248,250,252,0.90);
}

/* --- Blocks: keep two columns --- */
.st-ai-report__blocks{
  display: grid;
  gap: 0;
}

.st-ai-report__block{
  display: grid;
  grid-template-columns: 210px 1fr;
  column-gap: 24px;
  padding: 13px 0;
}

.st-ai-report__block + .st-ai-report__block{
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Section labels: slightly whiter + subtle white glow */
.st-ai-report__block-title{
  margin: 0;
  padding-top: 2px;

  font-size: 0.78rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.72);
  text-shadow:
    0 0 18px rgba(255,255,255,0.06),
    0 0 34px rgba(255,255,255,0.03);
}

/* Content list */
.st-ai-report__list{
  margin: 0;
  padding: 0;
  list-style: none;

  color: rgba(248,250,252,0.88);
  line-height: 1.62;
  font-size: 1.00rem;
}

.st-ai-report__list li{
  margin: 8px 0;
  position: relative;
  padding-left: 14px;
}

/* Graphic marker: white + soft glow */
.st-ai-report__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;

  width: 6px;
  height: 6px;
  border-radius: 999px;

  background: rgba(248,250,252,0.82);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.02),
    0 0 16px rgba(255,255,255,0.10),
    0 0 30px rgba(255,255,255,0.05);

  transform: translateY(-50%);
}

/* Numbers feel stable */
.st-ai-report__block[aria-label="Key levels"] .st-ai-report__list,
.st-ai-report__block[aria-label="Risk"] .st-ai-report__list{
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* --- Summary: plain conclusion row --- */
.st-ai-report__summary{
  margin-top: 14px;
  padding-top: 14px;

  /* brighter + subtle accent gradient divider */
  border-top: 1px solid rgba(255,255,255,0.16);
  position: relative;
}

.st-ai-report__summary::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.20),
    rgba(12,192,223,0.16),
    rgba(0,74,173,0.14),
    rgba(255,255,255,0.20),
    transparent
  );
  pointer-events: none;
}

.st-ai-report__summary-title{
  font-size: 0.78rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.62);
  margin-bottom: 10px;
}

.st-ai-report__summary-text{
  margin: 0;
  padding: 0;

  font-size: 1.06rem;
  line-height: 1.62;
  color: rgba(248,250,252,0.94);
}

/* --- Actions: clean mode switch line --- */
.st-ai-report__actions{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: flex-end;
}

.st-ai-report__toggle{
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;

  padding: 0;
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  background-image: linear-gradient(90deg, #0cc0df, #004aad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 16px rgba(12,192,223,0.14),
    0 0 26px rgba(0,74,173,0.08);

  transition: transform 0.18s ease, opacity 0.2s ease, filter 0.2s ease;
}

/* Hover: brighter + glow */
.st-ai-report__toggle:hover{
  transform: translateY(-1px);
  opacity: 1;
  filter: brightness(1.15) saturate(1.05);

  text-shadow:
    0 0 18px rgba(12,192,223,0.22),
    0 0 34px rgba(0,74,173,0.14),
    0 0 58px rgba(12,192,223,0.10);
}

.st-ai-report__toggle:active{
  transform: translateY(0);
  opacity: 0.92;
}

/* --- Responsive --- */
@media (max-width: 860px){
  .st-ai-report__card{ max-width: 100%; }
  .st-ai-report__block{
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

@media (max-width: 720px){
  .st-ai-report__topline{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .st-ai-report__actions{
    justify-content: flex-start;
  }
}

/* =======================================================================
   AI REPORT (Block 2.2) — Full analysis (document mode)
   - TOC brighter (white) + hover glow
   - Section headers brighter (more present)
   - Remove “boxed” callouts (no blocks)
   - No vendor mask props => no yellow warnings
   ======================================================================= */

/* Full card uses same base card, but slightly more “document” */
.st-ai-report__card--full{
  max-width: 920px; /* a touch wider than compact for long-form reading */
}

/* Doc header bar (top of full report) */
.st-ai-report__docbar{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 12px;
  padding-bottom: 12px;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.st-ai-report__docbar-kicker{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.72);
  text-shadow:
    0 0 14px rgba(255,255,255,0.06),
    0 0 26px rgba(255,255,255,0.03);
}

/* Back button inherits your toggle look but keeps it quieter */
.st-ai-report__toggle--back{
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.22em;
}

/* TOC (contents) */
.st-ai-report__toc{
  margin: 14px 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.st-ai-report__toc-tag{
  font-size: 0.74rem;
  font-weight: 740; /* slightly thicker */
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.78); /* brighter */
  text-shadow:
    0 0 14px rgba(255,255,255,0.06),
    0 0 26px rgba(255,255,255,0.03);
}

.st-ai-report__toc-list{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.st-ai-report__toc-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 0;
  text-decoration: none;

  font-size: 0.90rem;
  line-height: 1.25;

  color: rgba(248,250,252,0.90); /* whiter */
  text-shadow:
    0 0 16px rgba(255,255,255,0.04);

  transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease, text-shadow 0.18s ease;
}

.st-ai-report__toc-link::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;

  background: rgba(248,250,252,0.82);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.02),
    0 0 16px rgba(255,255,255,0.10);
  opacity: 0.70;
}

.st-ai-report__toc-link:hover{
  color: rgba(248,250,252,0.98);
  transform: translateY(-1px);

  text-shadow:
    0 0 18px rgba(255,255,255,0.14),
    0 0 36px rgba(255,255,255,0.08);
}

.st-ai-report__toc-link:hover::before{
  opacity: 1;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.03),
    0 0 18px rgba(255,255,255,0.16),
    0 0 34px rgba(255,255,255,0.08);
}

/* Document body wrapper */
.st-ai-report__doc{
  margin-top: 14px;
}

/* Sections */
.st-ai-report__sec{
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.st-ai-report__sec:first-of-type{
  border-top: 0;
  padding-top: 8px;
}

/* Section tag (caps label, like 2.1 headers) */
.st-ai-report__sec-tag{
  font-size: 0.78rem;
  font-weight: 760; /* stronger */
  letter-spacing: 0.22em; /* slightly more “label-like” */
  text-transform: uppercase;

  color: rgba(248,250,252,0.86); /* much brighter */
  text-shadow:
    0 0 16px rgba(255,255,255,0.10),
    0 0 34px rgba(255,255,255,0.05);

  margin-bottom: 10px;
}

/* Lead line: 1st sentence of section */
.st-ai-report__leadline{
  margin: 0 0 8px;

  font-size: 1.02rem;
  line-height: 1.72;

  color: rgba(248,250,252,0.92);
}

/* Normal paragraph text */
.st-ai-report__text{
  margin: 0 0 10px;

  font-size: 1.00rem;
  line-height: 1.72;

  color: rgba(248,250,252,0.84);
}

.st-ai-report__text:last-child{
  margin-bottom: 0;
}

/* Key levels: “row list” (not a table) */
.st-ai-report__rows{
  margin-top: 10px;
}

.st-ai-report__row{
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 16px;
  align-items: baseline;

  padding: 10px 0;
}

.st-ai-report__row + .st-ai-report__row{
  border-top: 1px solid rgba(255,255,255,0.06);
}

.st-ai-report__row-k{
  font-size: 0.86rem;
  font-weight: 740; /* stronger label */
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.80); /* brighter */
  text-shadow: 0 0 14px rgba(255,255,255,0.05);
}

.st-ai-report__row-v{
  font-size: 1.02rem;
  line-height: 1.6;

  color: rgba(248,250,252,0.92);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.st-ai-report__row-note{
  margin: 0 0 10px;
  padding-left: 236px; /* align under value column */
  max-width: 820px;

  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(248,250,252,0.78);
}

/* Bullets inside full report */
.st-ai-report__bullets{
  margin: 10px 0 12px;
  padding: 0;
  list-style: none;

  color: rgba(248,250,252,0.86);
  line-height: 1.7;
}

.st-ai-report__bullets li{
  margin: 8px 0;
  position: relative;
  padding-left: 14px;
}

.st-ai-report__bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;

  width: 6px;
  height: 6px;
  border-radius: 999px;

  background: rgba(248,250,252,0.82);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.02),
    0 0 16px rgba(255,255,255,0.10),
    0 0 30px rgba(255,255,255,0.05);

  transform: translateY(-50%);
}

/* Subsection (alternative scenario) */
.st-ai-report__subsec{
  margin-top: 12px;
}

.st-ai-report__subtag{
  font-size: 0.76rem;
  font-weight: 760; /* stronger */
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.84); /* brighter */
  text-shadow:
    0 0 14px rgba(255,255,255,0.06);

  margin-bottom: 8px;
}

/* Callouts (remove “blocks” look: no background/border/radius) */
.st-ai-report__callout{
  margin-top: 12px;
  padding: 0;

  border-radius: 0;
  background: transparent;
  border: 0;

  box-shadow: none;
}

.st-ai-report__callout--primary,
.st-ai-report__callout--risk{
  border-color: transparent;
  box-shadow: none;
}

/* Keep callout tag as a strong subheader */
.st-ai-report__callout-tag{
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.86);
  text-shadow:
    0 0 16px rgba(255,255,255,0.08),
    0 0 34px rgba(255,255,255,0.04);

  margin: 0 0 8px;
}

.st-ai-report__callout-text{
  margin: 0;
  font-size: 1.00rem;
  line-height: 1.72;
  color: rgba(248,250,252,0.88);
}

/* Footer disclaimer section */
.st-ai-report__sec--foot{
  padding-bottom: 8px;
}

.st-ai-report__footnote{
  margin: 0;

  font-size: 0.92rem;
  line-height: 1.7;

  color: rgba(226,232,240,0.74);
}

/* Responsive adjustments */
@media (max-width: 860px){
  .st-ai-report__card--full{
    max-width: 100%;
  }

  .st-ai-report__row{
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .st-ai-report__row-note{
    padding-left: 0;
  }

  .st-ai-report__toc-list{
    gap: 8px 12px;
  }
}

@media (max-width: 720px){
  .st-ai-report__docbar{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* =======================================================================
   LANDING — Built for clarity, not predictions (v5)
   Changes:
   - Remove circles behind ✓ / ✕, keep only glowing glyphs
   - Slightly dim the center divider
   - Everything else unchanged
   ======================================================================= */

.st-landing-clarity{
  padding: clamp(52px, 6.5vw, 88px) 16px;
}

.st-landing-clarity__inner{
  max-width: 1120px;
  margin: 0 auto;
}

/* ----------------------------
   Header
   ---------------------------- */

.st-landing-clarity__head{
  text-align: center;
  margin-bottom: clamp(18px, 2.6vw, 22px);
}

.st-landing-clarity__title{
  margin: 0 0 12px;

  /* clipping-safe metrics */
  line-height: 1.12;
  padding-bottom: 0.08em;

  font-weight: 780;
  letter-spacing: 0.01em;
  font-size: clamp(1.70rem, 2.65vw, 2.35rem);

  color: rgba(248,250,252,0.96);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;

  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 22px 52px rgba(0,0,0,0.62);

  background-image: linear-gradient(
    100deg,
    rgba(248,250,252,0.94) 0%,
    rgba(248,250,252,0.94) 40%,
    rgba(255,255,255,1.00) 48%,
    rgba(230,240,255,1.00) 50%,
    rgba(255,255,255,1.00) 52%,
    rgba(248,250,252,0.94) 60%,
    rgba(248,250,252,0.94) 100%
  );
  background-size: 260% 100%;
  background-position: -130% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 0.35px rgba(255,255,255,0.06);

  animation: stClarityTitleShimmer 12.5s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes stClarityTitleShimmer{
  0%   { background-position: -130% 50%; }
  24%  { background-position: -130% 50%; }
  56%  { background-position: 130% 50%; }
  80%  { background-position: 130% 50%; }
  100% { background-position: -130% 50%; }
}

.st-landing-clarity__subtitle{
  margin: 0;
  max-width: 860px;
  margin-inline: auto;

  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(226,232,240,0.84);
}

/* ----------------------------
   Layout (true symmetry)
   ---------------------------- */

.st-landing-clarity__grid{
  position: relative;
  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(42px, 5.2vw, 72px);
  row-gap: 22px;

  align-items: start;
}

/* Divider: dimmed tapered white line */
.st-landing-clarity__grid::before{
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);

  width: 10px;
  pointer-events: none;

  /* was 0.98 */
  opacity: 0.72;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.20) 14%,
    rgba(255,255,255,0.48) 50%,
    rgba(255,255,255,0.20) 86%,
    transparent 100%
  );

  clip-path: polygon(
    50% 0%,
    60% 6%,
    60% 94%,
    50% 100%,
    40% 94%,
    40% 6%
  );

  /* weaker glow */
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.12))
    drop-shadow(0 0 22px rgba(255,255,255,0.08))
    drop-shadow(0 0 44px rgba(255,255,255,0.05));
}

.st-landing-clarity__grid::after{
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: 2px;
  border-radius: 999px;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.34) 18%,
    rgba(255,255,255,0.62) 50%,
    rgba(255,255,255,0.34) 82%,
    transparent 100%
  );

  /* was 0.88 */
  opacity: 0.62;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 18px rgba(255,255,255,0.06);
}

/* Cards are transparent columns */
.st-landing-clarity__card{
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.st-landing-clarity__card::before{ display: none; }
.st-landing-clarity__card--helps,
.st-landing-clarity__card--not{ background: transparent; }

/* ----------------------------
   Column titles + icons
   ---------------------------- */

.st-landing-clarity__card-title{
  margin: 0 0 14px;

  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  color: rgba(248,250,252,0.90);
  text-shadow:
    0 0 18px rgba(255,255,255,0.06),
    0 0 34px rgba(255,255,255,0.03);

  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.st-landing-clarity__card-title::after{ content: none; }

/* NO circles: glyph only */
.st-landing-clarity__card-title::before{
  display: inline-block;

  /* remove circle geometry */
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;

  /* stable rendering */
  line-height: 1;
  font-weight: 900;
  font-size: 18px;

  /* optical placement */
  transform: translateY(-0.5px);
}

/* Left: green check (stronger glow) */
.st-landing-clarity__card--helps .st-landing-clarity__card-title::before{
  content: "✓";
  color: rgba(34,197,94,0.98);
  text-shadow:
    0 0 10px rgba(34,197,94,0.55),
    0 0 22px rgba(34,197,94,0.30),
    0 0 42px rgba(34,197,94,0.18);
}

/* Right: red cross (stronger glow) */
.st-landing-clarity__card--not .st-landing-clarity__card-title::before{
  content: "✕";
  color: rgba(239,68,68,0.98);
  text-shadow:
    0 0 10px rgba(239,68,68,0.55),
    0 0 22px rgba(239,68,68,0.30),
    0 0 42px rgba(239,68,68,0.18);
}

/* Right column alignment */
.st-landing-clarity__card--not{
  text-align: right;
}
.st-landing-clarity__card--not .st-landing-clarity__card-title{
  justify-content: flex-end;
}

/* ----------------------------
   List
   ---------------------------- */

.st-landing-clarity__list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-landing-clarity__item{
  padding: 14px 0;
}

.st-landing-clarity__item + .st-landing-clarity__item{
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Main line */
.st-landing-clarity__item-title{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;

  font-weight: 560;
  color: rgba(248,250,252,0.95);

  text-shadow:
    0 0 14px rgba(255,255,255,0.05),
    0 1px 0 rgba(255,255,255,0.02);

  padding-left: 0;
  position: relative;
}

.st-landing-clarity__item-title::before{ content: none; }

/* Note line */
.st-landing-clarity__item-note{
  margin-top: 7px;

  font-size: 0.93rem;
  line-height: 1.58;
  color: rgba(226,232,240,0.64);

  text-shadow: none;
}

/* Right column: right-align every line */
.st-landing-clarity__card--not .st-landing-clarity__item-title,
.st-landing-clarity__card--not .st-landing-clarity__item-note{
  text-align: right;
}

/* ----------------------------
   Responsive
   ---------------------------- */

@media (max-width: 920px){
  .st-landing-clarity__head{
    text-align: left;
  }

  .st-landing-clarity__subtitle{
    margin-inline: 0;
  }

  .st-landing-clarity__grid{
    grid-template-columns: 1fr;
    row-gap: 18px;
    column-gap: 0;
  }

  .st-landing-clarity__grid::before,
  .st-landing-clarity__grid::after{
    display: none;
  }

  .st-landing-clarity__card--not{
    text-align: left;
  }
  .st-landing-clarity__card--not .st-landing-clarity__card-title{
    justify-content: flex-start;
  }
  .st-landing-clarity__card--not .st-landing-clarity__item-title,
  .st-landing-clarity__card--not .st-landing-clarity__item-note{
    text-align: left;
  }
}

@media (max-width: 520px){
  .st-landing-clarity__item-title{
    font-size: 1.00rem;
  }

  .st-landing-clarity__item-note{
    font-size: 0.92rem;
  }
}

/* =======================================================================
   LANDING — How it fits into your workflow (v5)
   Changes ONLY:
   - Chartyx gradient looks cleaner (less “dirty”): cleaner overlay + subtle highlight
   - Arrows brighter: more white + more glow (keep same geometry)
   ======================================================================= */

.st-landing-workflow{
  padding: clamp(56px, 7vw, 96px) 16px;
}

.st-landing-workflow__inner{
  max-width: 1240px;
  margin: 0 auto;
}

/* ----------------------------
   Header (match Clarity title style)
   ---------------------------- */

.st-landing-workflow__head{
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.st-landing-workflow__title{
  margin: 0 0 10px;

  line-height: 1.12;
  padding-bottom: 0.08em;

  font-weight: 780;
  letter-spacing: 0.01em;
  font-size: clamp(1.70rem, 2.65vw, 2.35rem);

  color: rgba(248,250,252,0.96);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;

  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 22px 52px rgba(0,0,0,0.62);

  background-image: linear-gradient(
    100deg,
    rgba(248,250,252,0.94) 0%,
    rgba(248,250,252,0.94) 40%,
    rgba(255,255,255,1.00) 48%,
    rgba(230,240,255,1.00) 50%,
    rgba(255,255,255,1.00) 52%,
    rgba(248,250,252,0.94) 60%,
    rgba(248,250,252,0.94) 100%
  );
  background-size: 260% 100%;
  background-position: -130% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 0.35px rgba(255,255,255,0.06);

  animation: stWorkflowTitleShimmer 12.5s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes stWorkflowTitleShimmer{
  0%   { background-position: -130% 50%; }
  24%  { background-position: -130% 50%; }
  56%  { background-position: 130% 50%; }
  80%  { background-position: 130% 50%; }
  100% { background-position: -130% 50%; }
}

.st-landing-workflow__subtitle{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(226,232,240,0.82);
}

/* ----------------------------
   Flow layout (slightly shorter arrows)
   ---------------------------- */

.st-landing-workflow__flow{
  display: grid;

  grid-template-columns:
    minmax(200px, 1fr) 54px
    minmax(200px, 1fr) 54px
    minmax(220px, 1.12fr) 54px
    minmax(200px, 1fr);

  align-items: center;

  column-gap: clamp(10px, 1.6vw, 18px);
  row-gap: 18px;

  margin: 0;
  padding: 0;
  list-style: none;
}

/* ----------------------------
   Steps + outlines (1/2/4 only)
   ---------------------------- */

.st-landing-workflow__step{
  text-align: center;
  padding: 0;

  max-width: 100%;
  margin: 0 auto;
}

.st-landing-workflow__step--chartyx{
  max-width: 100%;
}

.st-landing-workflow__step:not(.st-landing-workflow__step--chartyx){
  position: relative;
  padding: 16px 14px;
  border-radius: 16px;

  border: 1px dashed rgba(255,255,255,0.16);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 0 18px rgba(255,255,255,0.03);
}

.st-landing-workflow__step:not(.st-landing-workflow__step--chartyx) .st-landing-workflow__step-top{
  margin-bottom: 10px;
}

.st-landing-workflow__step-top{
  margin-bottom: 10px;
}

.st-landing-workflow__step-kicker{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.75);
}

.st-landing-workflow__step-text{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 560;
  color: rgba(248,250,252,0.95);

  text-shadow: 0 0 12px rgba(255,255,255,0.04);
  text-wrap: balance;
}

.st-landing-workflow__step-note{
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(226,232,240,0.62);
  text-wrap: balance;
}

/* ----------------------------
   Arrows (brighter)
   ---------------------------- */

.st-landing-workflow__arrow{
  height: 2px;
  position: relative;
  align-self: center;
  opacity: 0.98;
}

.st-landing-workflow__arrow::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.34) 32%,
    rgba(255,255,255,0.34) 68%,
    transparent 100%
  );

  box-shadow:
    0 0 14px rgba(255,255,255,0.26),
    0 0 34px rgba(255,255,255,0.14),
    0 0 56px rgba(255,255,255,0.08);
}

.st-landing-workflow__arrow::after{
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 7px;
  height: 7px;

  border-top: 2px solid rgba(255,255,255,0.34);
  border-right: 2px solid rgba(255,255,255,0.34);

  box-shadow:
    0 0 12px rgba(255,255,255,0.22),
    0 0 26px rgba(255,255,255,0.10);
}

/* ----------------------------
   Chartyx step (cleaner brand gradient)
   ---------------------------- */

.st-landing-workflow__step--chartyx{
  position: relative;
  padding: 18px 16px;
  border-radius: 16px;

  background: -webkit-linear-gradient(90deg, #0cc0df, #004aad);
  background: linear-gradient(90deg, #0cc0df, #004aad);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.14),
    0 0 28px rgba(12,192,223,0.18),
    0 0 46px rgba(0,74,173,0.14);
}

/* cleaner overlay: less muddy, more “glass-clear” */
.st-landing-workflow__step--chartyx::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.28) 52%,
    rgba(0,0,0,0.38) 100%
  );
}

/* subtle top sheen to make gradient feel crisp */
.st-landing-workflow__step--chartyx::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: radial-gradient(
    120% 80% at 20% 10%,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.06) 26%,
    transparent 60%
  );

  mix-blend-mode: screen;
  opacity: 0.9;
}

.st-landing-workflow__step--chartyx > *{
  position: relative;
  z-index: 1;
}

.st-landing-workflow__step--chartyx .st-landing-workflow__step-kicker{
  color: rgba(255,255,255,0.92);
}

.st-landing-workflow__step--chartyx .st-landing-workflow__step-text{
  color: rgba(255,255,255,0.98);
  text-shadow:
    0 0 14px rgba(255,255,255,0.06),
    0 1px 0 rgba(255,255,255,0.03);
}

.st-landing-workflow__step--chartyx .st-landing-workflow__step-note{
  color: rgba(226,232,240,0.78);
}

/* ----------------------------
   Responsive
   ---------------------------- */

@media (max-width: 1040px){
  .st-landing-workflow__flow{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .st-landing-workflow__arrow{
    display: none;
  }

  .st-landing-workflow__step{
    text-align: left;
    max-width: 560px;
    margin: 0;
  }
}
@media (max-width: 520px){
  .st-landing-workflow__step-text{
    font-size: 1.00rem;
  }
}
