/* STR Deal Analyzer Pro — landing (from React/Tailwind reference)
   Palette tokens live in veoteq.css :root */

.str-wrap {
  min-height: calc(100vh - 48px);
  background: var(--str-bg);
  color: #fff;
  font-family: var(--vq-font, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif);
  -webkit-font-smoothing: antialiased;
}

.str-intro {
  max-width: 48rem;
}

.str-section--faq {
  border-top: 1px solid var(--str-border);
  background: rgba(255, 255, 255, 0.03);
}

.str-container {
  max-width: var(--str-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .str-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.str-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--str-emerald-soft);
  margin: 0;
}

.str-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--str-border);
}

.str-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 163, 74, 0.2), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.12), transparent 25%);
  pointer-events: none;
}

.str-hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 5rem 1.5rem;
  max-width: var(--str-max);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .str-hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 7rem 2.5rem;
    gap: 2.5rem;
    align-items: center;
  }

  .str-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.str-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--str-emerald-soft);
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.str-h1 {
  max-width: 42rem;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}

@media (min-width: 640px) {
  .str-h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .str-h1 {
    font-size: 3.75rem;
  }
}

.str-lead {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--str-body);
}

.str-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .str-cta-row {
    flex-direction: row;
  }
}

.str-btn-primary {
  display: inline-block;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: var(--str-emerald);
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.str-btn-primary:hover {
  background: var(--str-emerald-light);
  text-decoration: none;
}

.str-btn-secondary {
  display: inline-block;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.str-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.str-stat-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .str-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.str-stat-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--str-border);
  background: var(--str-card);
}

.str-stat-val {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--str-emerald-soft);
}

.str-stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--str-muted);
}

/* Dashboard mock */
.str-dash-wrap {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--str-border);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.str-dash-inner {
  border-radius: 22px;
  border: 1px solid var(--str-border);
  background: #171717;
  padding: 1.5rem;
}

.str-dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.str-dash-title {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.str-pill-buy {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--str-emerald-soft);
  background: rgba(16, 185, 129, 0.15);
}

.str-metric-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.str-metric {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--str-border);
  background: rgba(0, 0, 0, 0.2);
}

.str-metric-label {
  margin: 0;
  font-size: 0.875rem;
  color: var(--str-muted);
}

.str-metric-val {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.str-scenario-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--str-border);
  background: rgba(0, 0, 0, 0.2);
}

.str-scenario-row {
  margin-bottom: 1rem;
}

.str-scenario-row:last-child {
  margin-bottom: 0;
}

.str-scenario-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.str-scenario-name {
  color: var(--str-body);
}

.str-scenario-amt {
  font-weight: 500;
  color: #fff;
}

.str-bar-track {
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.str-bar-fill {
  height: 100%;
  border-radius: 9999px;
}

.str-bar-red {
  background: #f87171;
  width: 28%;
}

.str-bar-amber {
  background: #fcd34d;
  width: 56%;
}

.str-bar-emerald {
  background: #34d399;
  width: 84%;
}

.str-dash-tags {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--str-muted);
}

.str-dash-tags > div {
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--str-border);
}

.str-section {
  padding: 5rem 0;
}

.str-section--alt {
  border-top: 1px solid var(--str-border);
  border-bottom: 1px solid var(--str-border);
  background: rgba(255, 255, 255, 0.03);
}

.str-h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .str-h2 {
    font-size: 2.25rem;
  }
}

.str-prose {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--str-body);
  max-width: 48rem;
}

.str-card-grid-4 {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .str-card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1280px) {
  .str-card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.str-problem-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--str-border);
  background: var(--str-card);
}

.str-icon-placeholder {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: rgba(239, 68, 68, 0.15);
  margin-bottom: 1rem;
}

.str-icon-placeholder--emerald {
  background: rgba(16, 185, 129, 0.15);
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.str-card-grid-3 {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .str-card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.str-feature-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--str-border);
  background: rgba(23, 23, 23, 0.7);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.str-feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.str-feature-card p {
  margin: 1rem 0 0;
  line-height: 1.75;
  color: var(--str-body);
}

.str-chip-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .str-chip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1280px) {
  .str-chip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.str-chip {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--str-border);
  background: var(--str-card);
  color: var(--str-body);
  font-size: 0.9375rem;
}

.str-two-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .str-two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.str-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--str-border);
  background: var(--str-card);
  margin-bottom: 1.5rem;
}

.str-step:last-child {
  margin-bottom: 0;
}

.str-step-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--str-emerald);
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
}

.str-step p {
  margin: 0;
  padding-top: 0.5rem;
  font-size: 1.125rem;
  color: #e5e5e5;
}

.str-reality-panel {
  border-radius: 28px;
  border: 1px solid var(--str-border);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 2rem;
}

.str-reality-inner {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--str-border);
  background: rgba(0, 0, 0, 0.2);
}

.str-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.875rem;
}

.str-mini-grid p {
  margin: 0;
}

.str-mini-val {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.str-text-red {
  color: #fca5a5 !important;
}

.str-split-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .str-split-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.str-panel-dark {
  border-radius: 28px;
  border: 1px solid var(--str-border);
  background: rgba(23, 23, 23, 0.7);
  padding: 2rem;
}

.str-panel-gradient {
  border-radius: 28px;
  border: 1px solid var(--str-border);
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), rgba(234, 179, 8, 0.1));
  padding: 2rem;
}

.str-check-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.str-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--str-body);
}

.str-check-list li:last-child {
  margin-bottom: 0;
}

.str-dot {
  flex-shrink: 0;
  margin-top: 0.35rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--str-emerald-light);
}

.str-audience-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .str-audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.str-audience-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--str-border);
  background: rgba(0, 0, 0, 0.2);
  color: #e5e5e5;
}

.str-pricing-box {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid var(--str-border);
  background: linear-gradient(to bottom right, #171717, #000);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .str-pricing-box {
    padding: 2.5rem;
  }
}

.str-pricing-inner {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .str-pricing-inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.str-price-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--str-border);
  background: var(--str-card);
}

.str-price-big {
  margin-top: 0.75rem;
  font-size: clamp(2.75rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.str-faq-item {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--str-border);
  background: var(--str-card);
  margin-bottom: 1rem;
}

.str-faq-item:last-child {
  margin-bottom: 0;
}

.str-faq-item h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.str-faq-item p {
  margin: 0.75rem 0 0;
  line-height: 1.75;
  color: var(--str-body);
}

.str-final-cta {
  border-radius: 32px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(to right, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.04), rgba(234, 179, 8, 0.1));
  padding: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .str-final-cta {
    padding: 3rem;
  }
}

.str-final-cta h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .str-final-cta h2 {
    font-size: 3rem;
  }
}

.str-final-cta .str-lead {
  margin-left: auto;
  margin-right: auto;
}

.str-final-btns {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .str-final-btns {
    flex-direction: row;
  }
}

/* str-deal-analyzer.html uses body.str-page for scroll/layout hooks only; chrome matches global theme */
body.str-page {
  background: var(--str-bg);
}
