.yukan-hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 90px;
  align-items: center;
  min-height: 88vh;

padding:
  70px
  clamp(42px, 6vw, 110px)
  40px;
}

.yukan-hero .hero-title {
  font-size: clamp(3.2rem, 5.8vw, 6rem);

  line-height: .92;

  letter-spacing: -0.065em;

  max-width: 680px;

  margin-bottom: 28px;
}

.yukan-hero .hero-title span {
  color: var(--blue-light);
  text-shadow: 0 0 22px rgba(0,194,255,.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  max-width: 680px;
}

.hero-dashboard {
  opacity: 0;

  animation:
    dashboardReveal 1.2s ease forwards,
    dashboardFloat 7s ease-in-out infinite;

  animation-delay: .8s, 2s;

  transform-style: preserve-3d;
  position: relative;
overflow: hidden;
}

@keyframes dashboardReveal {

  from {
    opacity: 0;
    transform: translateY(40px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}
.dashboard-top div,
.chart-panel,
.signal-grid div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 22px;
  background:
  linear-gradient(
    180deg,
    rgba(18,24,36,.88),
    rgba(8,12,20,.96)
  );
}

.hero-stats div {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero-dashboard {
  padding: 24px;

  box-shadow:
    0 40px 120px rgba(0,0,0,.5),
    0 0 100px rgba(0,194,255,.12);

  transform: scale(.96);

  transform-origin: center right;

  animation:
    dashboardReveal 1.2s ease forwards,
    dashboardFloat 7s ease-in-out infinite;

  animation-delay: .8s, 2s;

  transform-style: preserve-3d;
}
.hero-dashboard::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -120px;
  right: -120px;

  background:
    radial-gradient(
      circle,
      rgba(0,194,255,.22) 0%,
      rgba(0,194,255,.08) 35%,
      transparent 70%
    );

  filter: blur(30px);

  animation: pulseGlow 7s ease-in-out infinite;

  pointer-events: none;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translateY(0px);
    opacity: .7;
  }

  50% {
    transform: scale(1.12) translateY(10px);
    opacity: 1;
  }

  100% {
    transform: scale(1) translateY(0px);
    opacity: .7;
  }
}

.dashboard-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-top div {
  padding: 16px;
}

.dashboard-top span,
.chart-header span,
.signal-grid span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.dashboard-top strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 1.25rem;
}

.chart-panel {
  padding: 22px;
  min-height: 360px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.chart-header em {
  color: var(--blue-light);
  font-style: normal;
}

.fake-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
  padding-top: 30px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.fake-chart i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
  box-shadow: 0 0 18px rgba(0,194,255,.22);
}

.fake-chart i:nth-child(1) { height: 32%; }
.fake-chart i:nth-child(2) { height: 44%; }
.fake-chart i:nth-child(3) { height: 38%; }
.fake-chart i:nth-child(4) { height: 52%; }
.fake-chart i:nth-child(5) { height: 48%; }
.fake-chart i:nth-child(6) { height: 61%; }
.fake-chart i:nth-child(7) { height: 58%; }
.fake-chart i:nth-child(8) { height: 72%; }
.fake-chart i:nth-child(9) { height: 66%; }
.fake-chart i:nth-child(10) { height: 78%; }
.fake-chart i:nth-child(11) { height: 74%; }
.fake-chart i:nth-child(12) { height: 86%; }
.fake-chart i:nth-child(13) { height: 82%; }
.fake-chart i:nth-child(14) { height: 91%; }
.fake-chart i:nth-child(15) { height: 88%; }

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.signal-grid div {
  padding: 16px;
}

.signal-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: .95rem;
}

@media (max-width: 980px) {
  .yukan-hero {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .dashboard-top,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
body {
  margin: 0;
  font-family: 'Space Grotesk', Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(0,194,255,.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(37,99,255,.12), transparent 35%),
    #070A10;
  color: #f4f7fb;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 44px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 18px auto 0;
  width: calc(100% - 48px);

  padding: 18px 28px;


  border: 1px solid rgba(255,255,255,.06);

  border-radius: 20px;

  backdrop-filter: blur(28px);

  box-shadow:
    0 10px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.04);

  transition:
    background .35s ease,
    border .35s ease,
    transform .35s ease;
    backdrop-filter: blur(18px);

background:
  linear-gradient(
    180deg,
    rgba(10,16,28,.62),
    rgba(10,16,28,.42)
  );
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  color: #d7deea;
  font-weight: 500;
}

.yukan-hero .hero-title span {
  color: #00c2ff;
  text-shadow: 0 0 22px rgba(0,194,255,.25);
}
.mobile-menu-btn {
  display: none;
}
.market-strip {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.0),
      rgba(0,194,255,.06),
      rgba(0,0,0,.0)
    );

  color: rgba(255,255,255,.78);

  border-bottom:
    1px solid rgba(255,255,255,.04);

  font-size: .92rem;

  letter-spacing: .02em;
}
.mobile-menu-btn {
  display: none;
}

.hero-dashboard {
  transform: scale(0.92);
  transform-origin: center right;
}

.hero-description {
  color: rgba(255,255,255,.68);

  max-width: 560px;

  line-height: 1.9;

  font-size: 1.08rem;

  margin-bottom: 38px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

 .logo img {
  width: 64px;
height: 64px;
  object-fit: contain;
  transform: scale(1.18);
  filter:
    drop-shadow(0 0 18px rgba(0,194,255,.35))
    drop-shadow(0 0 40px rgba(37,99,255,.22));
  transition:
    transform .35s ease,
    filter .35s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text strong {
  font-size: .95rem;

  letter-spacing: .14em;

  color: #ffffff;
}

.logo-text small {
  color: rgba(255,255,255,.52);

  font-size: .7rem;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #00c2ff;

  transition: width .25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.btn-primary {
  border-radius: 16px;

  padding: 14px 24px;

  font-weight: 600;

  letter-spacing: .02em;
}
body::before {
  content: '';

  position: fixed;

  top: -20%;
  right: -10%;

  width: 900px;
  height: 900px;

  background:
    radial-gradient(
      circle,
      rgba(0,194,255,.12),
      transparent 70%
    );

  filter: blur(40px);

  animation: floatGlow 14s ease-in-out infinite;

  pointer-events: none;

  z-index: -1;
}

body::after {
  content: '';

  position: fixed;

  bottom: -30%;
  left: -10%;

  width: 800px;
  height: 800px;

  background:
    radial-gradient(
      circle,
      rgba(37,99,255,.10),
      transparent 70%
    );

  filter: blur(40px);

  animation: floatGlowTwo 18s ease-in-out infinite;

  pointer-events: none;

  z-index: -1;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(30px) translateX(-20px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes floatGlowTwo {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-25px) translateX(25px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}
.signals-section {
  padding: 120px clamp(42px, 6vw, 110px);
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}

.section-heading p {
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  font-size: 1.08rem;
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(18,24,36,.88),
      rgba(8,12,20,.96)
    );
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  transition: all .32s ease;
}

.signal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,194,255,.22);
  box-shadow:
    0 40px 100px rgba(0,0,0,.45),
    0 0 80px rgba(0,194,255,.08);
}

.signal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(0,194,255,.12),
      transparent 42%
    );
  pointer-events: none;
}

.signal-card.bearish::before {
  background:
    radial-gradient(
      circle at top right,
      rgba(255,77,109,.14),
      transparent 42%
    );
}

.signal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}

.signal-top span {
  color: rgba(255,255,255,.58);
  font-size: .85rem;
  letter-spacing: .18em;
}

.signal-top strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: #00f2a6;
  background: rgba(0,242,166,.1);
  font-size: .75rem;
  letter-spacing: .14em;
}

.signal-card.bearish .signal-top strong {
  color: #ff4d6d;
  background: rgba(255,77,109,.1);
}

.signal-card h3 {
  position: relative;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.signal-card p {
  position: relative;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

.signal-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 10px;
}

.signal-meta span {
  color: rgba(255,255,255,.58);
  font-size: .86rem;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 10px;
}

@media (max-width: 980px) {
  .signals-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   SECTION SPACING
========================= */

.signals-section,
.features-section,
.clean-pricing,
.final-cta {
  padding: 120px clamp(28px, 6vw, 90px);
  position: relative;
  z-index: 2;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.05em;
  margin-bottom: 24px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* =========================
   SIGNALS GRID
========================= */

.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.signal-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 34px;
  backdrop-filter: blur(18px);
  transition: .35s ease;
}

.signal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,194,255,.28);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.signal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.signal-top span {
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.signal-top strong {
  font-size: .78rem;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: .12em;
}

.bullish strong {
  background: rgba(0,255,163,.12);
  color: #00ffb7;
}

.bearish strong {
  background: rgba(255,0,90,.12);
  color: #ff4d7d;
}

.signal-card h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 20px;
}

.signal-card p {
  color: var(--muted);
  line-height: 1.8;
}

.signal-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.signal-meta span {
  color: rgba(255,255,255,.72);
}

/* =========================
   FEATURES
========================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.features-grid article {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  padding: 38px;
}

.features-grid span {
  color: var(--blue-light);
  font-size: .9rem;
  letter-spacing: .18em;
}

.features-grid h3 {
  margin: 24px 0 18px;
  font-size: 1.8rem;
}

.features-grid p {
  color: var(--muted);
  line-height: 1.8;
}

/* =========================
   PRICING
========================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-grid article {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 30px;
  padding: 42px;
}

.featured-price {
  border: 1px solid rgba(0,194,255,.35) !important;
  box-shadow: 0 0 70px rgba(0,194,255,.12);
}

.pricing-grid h3 {
  font-size: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin: 24px 0;
}

.pricing-grid ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.pricing-grid li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.final-cta h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 24px 0;
}

.final-cta p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 80px clamp(28px, 6vw, 90px);
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 80px;
}

.site-footer strong {
  font-size: 1.4rem;
}

.site-footer p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

.email-form {
  margin-top: 34px;
}

.email-form label {
  display: block;
  margin-bottom: 12px;
}

.email-form div {
  display: flex;
  gap: 14px;
}

.email-form input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
  color: white;
}

.email-form button {
  padding: 18px 26px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #0066ff, #00c2ff);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.risk {
  margin-top: 40px;
  opacity: .5;
  font-size: .9rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 980px) {

  .signals-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 3rem;
  }

  .email-form div {
    flex-direction: column;
  }
}
.ai-chart {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.ai-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-area {
  fill: rgba(0,194,255,.10);
}

.chart-line {
  fill: none;
  stroke: #00c2ff;
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(0,194,255,.55));
}

.chart-dot {
  fill: #00ffb7;
  filter: drop-shadow(0 0 16px rgba(0,255,183,.75));
}

.chart-signal {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.chart-signal.buy {
  left: 12%;
  top: 48%;
  color: #00ffb7;
  background: rgba(0,255,183,.10);
}

.chart-signal.target {
  right: 8%;
  top: 18%;
  color: #00c2ff;
  background: rgba(0,194,255,.10);
}
.chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 2.4s ease forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeArea 1.2s ease forwards;
  animation-delay: 1.1s;
}

.chart-dot {
  animation: pulseDot 1.8s ease-in-out infinite;
}

.chart-signal {
  animation: floatSignal 3.2s ease-in-out infinite;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeArea {
  to {
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: .75;
  }
}

@keyframes floatSignal {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}
body::before {
  content: '';
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,194,255,.14), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(0,102,255,.12), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(0,255,163,.08), transparent 30%);
  z-index: -2;
  animation: ambientMove 18s ease-in-out infinite alternate;
  filter: blur(40px);
}

@keyframes ambientMove {

  0% {
    transform: translate3d(0,0,0) scale(1);
  }

  50% {
    transform: translate3d(-2%, 2%, 0) scale(1.08);
  }

  100% {
    transform: translate3d(2%, -2%, 0) scale(1.02);
  }
}

@keyframes dashboardFloat {

  0% {
    transform: translateY(0px) rotateX(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(1deg);
  }

  100% {
    transform: translateY(0px) rotateX(0deg);
  }
}
.site-header.scrolled {
  background: rgba(5,10,20,.72);

  border: 1px solid rgba(0,194,255,.18);

  box-shadow:
    0 18px 60px rgba(0,0,0,.45),
    0 0 40px rgba(0,194,255,.06);
}
.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal .9s ease forwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: .15s;
}

.hero-content > *:nth-child(2) {
  animation-delay: .3s;
}

.hero-content > *:nth-child(3) {
  animation-delay: .45s;
}

.hero-content > *:nth-child(4) {
  animation-delay: .6s;
}

.hero-content > *:nth-child(5) {
  animation-delay: .75s;
}

@keyframes heroReveal {

  to {
    opacity: 1;
    transform: translateY(0);
  }

}
.market-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  animation: tickerMove 28s linear infinite;
}

.ticker-up {
  color: #00ffb7;
}

.ticker-down {
  color: #ff4d6d;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.terminal-section {
  padding: 130px clamp(28px, 6vw, 90px);
  position: relative;
  z-index: 2;
}

.terminal-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.terminal-heading h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 0 0 24px;
}

.terminal-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 24px;
}

.terminal-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18,24,36,.88), rgba(8,12,20,.96));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.card-top span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .18em;
}

.card-top em {
  color: #00ffb7;
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .16em;
}

.watchlist-row {
  display: grid;
  grid-template-columns: .7fr 1fr .7fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.watchlist-row span {
  color: rgba(255,255,255,.72);
}

.up {
  color: #00ffb7;
}

.down {
  color: #ff4d7d;
}

.scanner-alert {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.72);
}

.scanner-alert.up {
  border: 1px solid rgba(0,255,183,.18);
}

.scanner-alert.down {
  border: 1px solid rgba(255,77,125,.18);
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.heat {
  min-height: 90px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .08em;
}

.heat.up {
  background: rgba(0,255,183,.13);
  color: #00ffb7;
}

.heat.down {
  background: rgba(255,77,125,.13);
  color: #ff4d7d;
}

.heat.neutral {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
}

@media (max-width: 980px) {
  .terminal-grid {
    grid-template-columns: 1fr;
  }
}
.matrix-section {
  padding: 130px clamp(28px, 6vw, 90px);
  position: relative;
  z-index: 2;
}

.matrix-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.matrix-heading h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.matrix-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.matrix-panel,
.futures-panel {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18,24,36,.88), rgba(8,12,20,.96));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.matrix-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.matrix-row span {
  color: rgba(255,255,255,.72);
  font-size: .86rem;
}

.matrix-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.matrix-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563ff, #00ffb7);
}

.matrix-bar .down-bar {
  background: linear-gradient(90deg, #ff4d7d, #ff9f43);
}

.neutral {
  color: rgba(255,255,255,.7);
}

.futures-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.futures-top span {
  color: var(--muted);
  letter-spacing: .18em;
  font-size: .78rem;
}

.futures-top em {
  color: #00c2ff;
  font-style: normal;
  letter-spacing: .14em;
  font-size: .72rem;
}

.futures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.future-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.future-card small {
  color: var(--muted);
  letter-spacing: .18em;
}

.future-card strong {
  display: block;
  margin: 22px 0 10px;
  font-size: 1.6rem;
}

.future-card span {
  color: rgba(255,255,255,.62);
}

@media (max-width: 980px) {
  .matrix-layout,
  .futures-grid {
    grid-template-columns: 1fr;
  }
}
.floating-widget {
  position: absolute;

  padding: 18px 22px;

  min-width: 180px;

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(18,24,36,.88),
      rgba(8,12,20,.96)
    );

  border: 1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 60px rgba(0,0,0,.38),
    0 0 40px rgba(0,194,255,.05);

  z-index: 8;

  animation:
    widgetFloat 6s ease-in-out infinite;
}

.floating-widget span {
  display: block;

  color: rgba(255,255,255,.55);

  font-size: .72rem;

  letter-spacing: .16em;

  margin-bottom: 10px;

  text-transform: uppercase;
}

.floating-widget strong {
  font-size: 1.4rem;

  letter-spacing: -.03em;
}

.sentiment-widget {
  top: 180px;
  right: 120px;

  animation-delay: 0s;
}

.volatility-widget {
  top: 440px;
  left: 60px;

  animation-delay: 1.5s;
}

.ai-widget {
  top: 340px;
  right: 40px;

  animation-delay: 3s;
}

@keyframes widgetFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 980px) {

  .floating-widget {
    display: none;
  }

}
.floating-widget {
  opacity: .82;
  transform: scale(.86);
}

.sentiment-widget {
  top: 250px;
  right: 110px;
}

.ai-widget {
  top: 610px;
  right: 120px;
}

.volatility-widget {
  top: 690px;
  left: 720px;
}

.floating-widget:hover {
  opacity: 1;
  transform: scale(.9) translateY(-4px);
}
.floating-widget {
  display: none;
}
.signals-section {
  padding:
    140px clamp(28px,5vw,88px);

  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: clamp(3rem,5vw,5rem);

  line-height: .95;

  letter-spacing: -.05em;

  margin-bottom: 24px;
}

.section-heading p {
  color: var(--muted);

  font-size: 1.08rem;

  line-height: 1.8;

  max-width: 680px;
}

.signals-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.signal-card {
  position: relative;

  padding: 34px;

  border-radius: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(16,22,34,.96),
      rgba(8,12,20,.98)
    );

  border: 1px solid rgba(255,255,255,.07);

  min-height: 360px;

  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.signal-card:hover {
  transform:
    translateY(-10px);

  border-color:
    rgba(0,194,255,.22);

  box-shadow:
    0 25px 70px rgba(0,0,0,.45),
    0 0 40px rgba(0,194,255,.08);
}

.signal-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 34px;
}

.signal-top span {
  color: rgba(255,255,255,.58);

  letter-spacing: .18em;

  font-size: .8rem;
}

.signal-top strong {
  padding:
    10px 16px;

  border-radius: 999px;

  font-size: .76rem;

  letter-spacing: .18em;
}

.long strong {
  background:
    rgba(0,255,170,.12);

  color:
    #00ffb2;
}

.short strong {
  background:
    rgba(255,70,70,.12);

  color:
    #ff6464;
}

.signal-card h3 {
  font-size: 2rem;

  line-height: 1.02;

  letter-spacing: -.04em;

  margin-bottom: 24px;
}

.signal-card p {
  color: var(--muted);

  line-height: 1.8;

  margin-bottom: 38px;
}

.signal-meta {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.signal-meta span {
  color: rgba(255,255,255,.7);

  padding-top: 16px;

  border-top:
    1px solid rgba(255,255,255,.06);
}

@media (max-width: 980px) {

  .signals-grid {
    grid-template-columns: 1fr;
  }

}
.terminal-section {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 60px;

  align-items: center;

  padding:
    140px clamp(28px,5vw,88px);
}

.terminal-left h2 {
  font-size: clamp(2.5rem,4vw,4.5rem);

  line-height: 1.02;

  letter-spacing: -.05em;

  margin:
    18px 0 32px;
}

.terminal-features {
  display: grid;

  gap: 18px;

  padding: 0;

  margin: 0;

  list-style: none;
}

.terminal-features li {
  position: relative;

  padding-left: 28px;

  color: rgba(255,255,255,.75);
}

.terminal-features li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 9px;

  width: 10px;
  height: 10px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      #00d4ff,
      #2563ff
    );

  box-shadow:
    0 0 12px rgba(0,194,255,.4);
}

.terminal-window {
  position: relative;

  border-radius: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(14,18,28,.96),
      rgba(6,10,18,.98)
    );

  border:
    1px solid rgba(255,255,255,.06);

  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 60px rgba(0,194,255,.05);
}

.terminal-header {
  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    18px 24px;

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

.terminal-header span {
  width: 12px;
  height: 12px;

  border-radius: 999px;
}

.terminal-header span:nth-child(1) {
  background: #ff5f57;
}

.terminal-header span:nth-child(2) {
  background: #febc2e;
}

.terminal-header span:nth-child(3) {
  background: #28c840;
}

.terminal-header strong {
  margin-left: 12px;

  font-size: .9rem;

  color: rgba(255,255,255,.72);

  letter-spacing: .08em;
}

.terminal-body {
  padding: 28px;
}

.terminal-line {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding:
    16px 0;

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

.prompt {
  color: #00d4ff;

  margin-right: 12px;
}

.success {
  color: #00ffae;
}

.warning {
  color: #ffd24d;
}

.neutral {
  color: #00d4ff;
}

@media (max-width: 980px) {

  .terminal-section {
    grid-template-columns: 1fr;
  }

}
.market-strip {
  position: sticky;
  top: 0;
  z-index: 1200;
}
@media (max-width: 768px) {
  .market-strip {
    font-size: .78rem;
  }

  .site-header {
    top: 36px;
    width: calc(100% - 24px);
    padding: 14px 16px;
    border-radius: 18px;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }

  .logo-text strong {
    font-size: .85rem;
  }

  .logo small {
    font-size: .58rem;
  }

  .yukan-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding: 70px 22px 40px;
  }

  .yukan-hero .hero-title {
    font-size: clamp(3rem, 16vw, 4.4rem);
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    transform: none;
    transform-origin: center;
    padding: 18px;
  }

  .dashboard-top,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .chart-panel {
    min-height: auto;
  }

  .ai-chart {
    height: 240px;
  }

  .signals-section,
  .terminal-section,
  .matrix-section,
  .features-section,
  .clean-pricing,
  .final-cta {
    padding: 90px 22px;
  }

  .signals-grid,
  .terminal-grid,
  .terminal-section,
  .matrix-layout,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .terminal-heading h2,
  .matrix-heading h2,
  .final-cta h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .terminal-left h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .email-form div {
    flex-direction: column;
  }
}
/* WAITLIST SECTION */

.waitlist-section {
  padding: 140px 8%;
  position: relative;
  z-index: 2;
}

.waitlist-container {
  max-width: 900px;
  margin: auto;
  padding: 70px;
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      rgba(10, 16, 40, 0.95),
      rgba(5, 10, 25, 0.98)
    );

  border: 1px solid rgba(0, 255, 255, 0.08);

  box-shadow:
    0 0 60px rgba(0, 180, 255, 0.08);

  text-align: center;
}

.waitlist-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(0, 180, 255, 0.08);

  border:
    1px solid rgba(0, 180, 255, 0.2);

  color: #00cfff;

  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.waitlist-container h2 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 24px;

  color: #ffffff;
}

.waitlist-container p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;

  font-size: 18px;
  line-height: 1.7;

  color: rgba(255,255,255,0.72);
}

.waitlist-form {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  width: 360px;
  max-width: 100%;

  padding: 18px 22px;

  border-radius: 18px;

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

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

  color: white;

  font-size: 16px;

  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.waitlist-form button {
  padding: 18px 34px;

  border: none;
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #00cfff,
      #0066ff
    );

  color: white;

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

  cursor: pointer;

  transition: all 0.3s ease;

  box-shadow:
    0 0 30px rgba(0, 180, 255, 0.25);
}

.waitlist-form button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 0 40px rgba(0, 180, 255, 0.4);
}

.waitlist-small {
  margin-top: 24px;

  font-size: 13px;

  color:
    rgba(255,255,255,0.45);
}

/* MOBILE */

@media (max-width: 768px) {

  .waitlist-container {
    padding: 40px 24px;
  }

  .waitlist-container h2 {
    font-size: 40px;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }

}
