/*
 * INTRODUCE Theme — home.css
 * INTRODUCE LLC © 2025
 */

/* HERO */
.int-hero {
  background: var(--bg);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.int-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.int-hero__content { max-width: 540px; }

.int-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}

.int-hero__title em {
  font-style: normal;
  color: var(--accent);
}

.int-hero__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

.int-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.int-hero__stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.int-hero__stat-num {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}

.int-hero__stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Hero visual */
.int-hero__visual {
  position: relative;
}

.int-hero__mockup {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
}

.int-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.int-hero__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.int-hero__mockup-url {
  flex: 1;
  height: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin: 0 8px;
}

.int-hero__mockup-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.int-hero__mockup-header {
  height: 48px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.int-hero__mockup-logo {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-white);
}

.int-hero__mockup-logo span { color: var(--accent); }

.int-hero__mockup-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.int-hero__mockup-nav-item {
  height: 20px;
  width: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.int-hero__mockup-body {
  padding: 20px;
}

.int-hero__mockup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.int-hero__mockup-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
}

.int-hero__mockup-card-line {
  height: 8px;
  border-radius: 2px;
  background: var(--border);
  margin-bottom: 6px;
}

.int-hero__mockup-card-line:first-child {
  width: 60%;
  background: var(--accent);
  opacity: 0.3;
}

.int-hero__mockup-card-line:last-child {
  width: 80%;
  margin-bottom: 0;
}

/* Floating badge on hero visual */
.int-hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--text);
  color: var(--text-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}

.int-hero__badge-num {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  letter-spacing: -0.03em;
}

.int-hero__badge-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

/* TICKER STRIP */
.int-ticker {
  background: var(--text);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.int-ticker__track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.int-ticker__item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.int-ticker__item strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.int-ticker__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* TESTIMONIAL STRIP */
.int-testimonial {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.int-testimonial__quote {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

.int-testimonial__author {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.int-testimonial__author strong {
  color: var(--text);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

/* MOBILE — HOME */
@media (max-width: 768px) {
  .int-hero { padding: 56px 0 48px; }
  .int-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .int-hero__visual { display: none; }
  .int-hero__stats { gap: 20px; }
  .int-hero__stat-num { font-size: 1.5rem; }

  .int-ticker__track { animation-duration: 20s; }
}
