/* ═══════════════════════════════════════════════
   LinkedShot — Landing Page (index.css)
═══════════════════════════════════════════════ */

/* ── Hero Section ─────────────────────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 64px 80px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; left: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: #00a0dc;
  top: 40%; right: -100px;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: #667eea;
  bottom: 0; left: 40%;
  animation-delay: -6s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,119,181,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,119,181,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Left column */
.hero__inner {
  animation: fadeUp 0.7s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(0,119,181,0.2);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: ls-pulse 2s infinite;
}

@keyframes ls-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--blue);
}

.hero__subtitle {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero__trust {
  font-size: 12.5px;
  color: var(--ink-faint);
  font-weight: 400;
}

/* ── Hero Mockup ─────────────────────────────── */

.hero__mockup {
  animation: fadeUp 0.9s 0.15s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero__shot-wrap {
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  animation: float 6s ease-in-out infinite;
}

.hero__shot {
  display: block;
  width: 100%;
  height: auto;
}

.mockup-card {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.mockup-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mockup-bg--ocean {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.mockup-post {
  position: relative;
  z-index: 1;
  background: white;
  margin: 28px 28px 0;
  border-radius: 14px 14px 0 0;
  padding: 20px 20px 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 -2px 0 rgba(0,0,0,0.06);
}

.mockup-post__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddd, #bbb);
  flex-shrink: 0;
}

.mockup-post__lines {
  flex: 1;
  padding-top: 4px;
}

.mockup-post__line {
  height: 9px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 7px;
}

.mockup-post__line--name  { width: 55%; background: #c8d3da; }
.mockup-post__line--title { width: 75%; }

.mockup-post__body {
  position: relative;
  z-index: 1;
  background: white;
  margin: 0 28px 28px;
  border-radius: 0 0 14px 14px;
  padding: 0 20px 20px;
}

.mockup-post__text {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 7px;
}

.mockup-post__text--short { width: 60%; }
.mockup-post__text--mid   { width: 80%; margin-bottom: 0; }

.mockup-tag {
  position: absolute;
  bottom: 12px;
  right: 40px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Swatch row */
.mockup-swatches {
  display: flex;
  gap: 8px;
  align-items: center;
}

.swatch {
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, border-color 0.15s;
  box-shadow: var(--shadow-sm);
}

.swatch:hover { transform: scale(1.1); }
.swatch--active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,119,181,0.25); }

.swatch--white   { background: #fff; border-color: #ddd; }
.swatch--ocean   { background: linear-gradient(135deg, #667eea, #764ba2); }
.swatch--sunset  { background: linear-gradient(135deg, #f093fb, #f5576c); }
.swatch--gold    { background: linear-gradient(135deg, #f6d365, #fda085); }
.swatch--emerald { background: linear-gradient(135deg, #11998e, #38ef7d); }

/* ── Proof Strip ─────────────────────────────── */

.proof-strip {
  background: var(--navy);
  padding: 28px 32px;
}

.proof-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 48px;
}

.proof-item__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-item__label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Steps Grid ──────────────────────────────── */

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

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.step-card--accent {
  background: var(--blue);
  border-color: transparent;
}

.step-card--accent .step-card__num,
.step-card--accent .step-card__title,
.step-card--accent .step-card__body {
  color: rgba(255,255,255,0.9);
}

.step-card--accent .step-card__num { color: rgba(255,255,255,0.4); }

.step-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: block;
}

.step-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-card__body {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── Features Grid ───────────────────────────── */

.features-header {
  margin-bottom: 56px;
}

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

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,119,181,0.2);
  transform: translateY(-2px);
}

.feat-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.feat-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.feat-card__body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── CTA Banner ──────────────────────────────── */

.cta-banner {
  background: var(--navy);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__orb {
  position: absolute;
  width: 600px; height: 600px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    min-height: auto;
    text-align: center;
  }

  .hero__actions { justify-content: center; }
  .hero__trust   { text-align: center; }
  .hero__mockup  { max-width: 520px; margin: 0 auto; }

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

  .proof-strip__inner { flex-wrap: wrap; }
  .proof-item { padding: 12px 24px; }
}
