/* Soft Trading — v2 simplified overrides (calmer, darker, focused) */

/* Calm down the hero — less padding, no big gradient wash */
.hero {
  padding: 140px 0 60px;
}
.hero::before {
  background:
    radial-gradient(700px 400px at 75% 30%, oklch(0.78 0.13 220 / 0.06), transparent 60%);
}
.hero h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.hero h1 .accent {
  background: linear-gradient(180deg, oklch(0.85 0.10 220) 0%, oklch(0.58 0.12 220) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 17px;
  max-width: 48ch;
  margin: 24px 0 32px;
  color: var(--fg-1);
}
.hero__visual {
  aspect-ratio: 1.15 / 1;
}
/* Hide the floating signal card + indicator panel from v1 — only main chart shows */
.term--ind, .term--sig { display: none; }
.term--main { inset: 0; }

/* ===== SERVICES SUMMARY ===== */
.services {
  padding: 80px 0 40px;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 800px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: var(--r-4);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 80% 0%, oklch(0.78 0.13 220 / 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}
.service-card:hover { border-color: var(--line-3); transform: translateY(-2px); }
.service-card:hover::after { opacity: 1; }
.service-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.service-card__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-3); text-transform: uppercase; }
.service-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent-cyan); text-transform: uppercase; }
.service-card h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.service-card p {
  color: var(--fg-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 38ch;
}
.service-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: var(--fg-1);
  font-weight: 500;
  margin-top: auto;
  transition: color 160ms ease;
}
.service-card:hover .service-card__cta { color: var(--accent-cyan); }
.service-card:hover .service-card__cta svg { transform: translateX(3px); }
.service-card__cta svg { transition: transform 160ms ease; }

/* ===== PRODUCT CARDS — simplified ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .products__grid { grid-template-columns: 1fr; } }

/* Only the custom-build card is a full link; regular product cards have inner CTAs */
.pcard { cursor: default; }
.pcard--custom { cursor: pointer; }

.pcard__category {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pcard__media { aspect-ratio: 16 / 8; }

/* Cover-image media (real product covers) */
.pcard__media--cover {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 22px 28px 12px;
  background:
    radial-gradient(700px 400px at 50% 0%, oklch(0.78 0.13 220 / 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%),
    var(--bg-1);
  border-bottom: 1px solid var(--line-1);
}
.pcard__cover {
  max-width: 86%;
  max-height: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.55)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pcard:hover .pcard__cover {
  transform: translateY(-6px) scale(1.04);
}
html[data-theme="light"] .pcard__media--cover {
  background:
    radial-gradient(700px 400px at 50% 0%, oklch(0.55 0.13 220 / 0.06), transparent 60%),
    var(--bg-2);
}
html[data-theme="light"] .pcard__cover {
  filter: drop-shadow(0 14px 28px rgba(15, 20, 35, 0.18)) drop-shadow(0 3px 8px rgba(15, 20, 35, 0.12));
}

.pcard__tagline {
  font-size: 13px;
  color: var(--accent-cyan);
  font-weight: 500;
  margin: -2px 0 6px;
  letter-spacing: -0.005em;
}
.pcard__body { padding: 22px 24px 24px; gap: 8px; }
.pcard__desc {
  margin-bottom: 18px;
  font-size: 14px;
}
.pcard__cta {
  margin-top: auto;
  font-size: 13.5px;
  color: var(--fg-1);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 160ms ease;
}
.pcard:hover .pcard__cta { color: var(--accent-cyan); }
.pcard__soon-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: rgba(10,11,15,0.7);
  backdrop-filter: blur(8px);
}

/* ===== HOW IT WORKS — simpler ===== */
.hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-1);
  border-radius: var(--r-4);
  overflow: hidden;
}
@media (max-width: 720px) { .hiw__steps { grid-template-columns: 1fr; } }
.step {
  padding: 36px 32px;
  border-right: 1px solid var(--line-1);
  background: var(--bg-1);
}
.step:last-child { border-right: 0; }
@media (max-width: 720px) {
  .step { border-right: 0; border-bottom: 1px solid var(--line-1); }
  .step:last-child { border-bottom: 0; }
}
.step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-cyan);
  margin-bottom: 22px;
  display: block;
}

/* ===== SECTION SPACING — tighter ===== */
.section { padding: calc(80px * var(--density)) 0; }

/* ===== Section header — simpler ===== */
.section-head { margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.025em;
}

/* ===== FINAL CTA — simplified ===== */
.final {
  padding: 100px 0;
  border-top: 1px solid var(--line-1);
}
.final::before {
  background: radial-gradient(500px 250px at 50% 50%, oklch(0.78 0.13 220 / 0.06), transparent 60%);
}
.final h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.025em;
}
.final p { font-size: 15.5px; }

/* ===== FOOTER — minimal ===== */
.footer { padding: 60px 0 32px; margin-top: 40px; }
.footer__simple {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line-1);
  flex-wrap: wrap;
}
.footer__simple .footer__brand p {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--fg-2);
  max-width: 36ch;
}
.footer__links-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__links-row a {
  font-size: 13.5px;
  color: var(--fg-1);
  transition: color 160ms ease;
}
.footer__links-row a:hover { color: var(--fg-0); }

.footer__disclaimer {
  border: 1px solid var(--line-1);
  border-radius: var(--r-2);
  padding: 14px 18px;
  background: transparent;
  margin-bottom: 24px;
}
.footer__disclaimer p {
  font-size: 12.5px;
  color: var(--fg-3);
  margin: 0;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  border-top: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
  text-transform: uppercase;
}

/* ===== Nav: leaner ===== */
.nav__cta .btn { padding: 9px 14px; font-size: 13px; }

/* ===== Eyebrow: less loud ===== */
.eyebrow {
  color: var(--fg-3);
  font-size: 10.5px;
}
.eyebrow::before {
  width: 5px; height: 5px;
  box-shadow: 0 0 8px var(--accent-cyan-glow);
}
