/* Home — Hero & Sections */

/* Hero: full viewport, centered single focal point */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-24) var(--space-6);
  overflow: hidden;
}

/* Subtle radial gradient to draw eye to center */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,51,51,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(51,255,136,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
}

/* Logo mark — large, centered, premium */
.hero__mark {
  display: block;
  width: 240px;
  max-width: 240px;
  height: 240px;
  flex: 0 0 240px;
  align-self: center;
  margin: 0 auto var(--space-10);
  animation: mark-in 1.2s var(--ease) 0.2s both;
}

@keyframes mark-in {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero__mark svg {
  display: block;
  width: 240px;
  height: 240px;
}

/* Red beam trail — diagonal from bottom-left toward mark */
.hero__beam-left {
  position: absolute;
  top: calc(50% + 40px);
  right: calc(50% + 60px);
  width: 180px;
  height: 2px;
  background: linear-gradient(to right, transparent, #c61532);
  transform: translateY(-50%) rotate(-35deg);
  transform-origin: right center;
  animation: beam-left 1.4s var(--ease) 0.8s both;
}

@keyframes beam-left {
  from { opacity: 0; width: 0; }
  to { opacity: 0.6; width: 180px; }
}

/* Green beam trail — diagonal exiting upper-right from mark */
.hero__beam-right {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% + 60px);
  width: 180px;
  height: 2px;
  background: linear-gradient(to left, transparent, #53c97f);
  transform: translateY(-50%) rotate(-30deg);
  transform-origin: left center;
  animation: beam-right 1.4s var(--ease) 1s both;
}

@keyframes beam-right {
  from { opacity: 0; width: 0; }
  to { opacity: 0.6; width: 180px; }
}

/* Title */
.hero__title {
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: var(--space-5);
  animation: fade-up 0.8s var(--ease) 0.4s both;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--white-40);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: var(--space-8);
  animation: fade-up 0.8s var(--ease) 0.6s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fade-up 0.8s var(--ease) 0.8s both;
}

.hero__proof {
  display: flex;
  gap: var(--space-12);
  animation: fade-up 0.8s var(--ease) 1s both;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__metric-val {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}

.hero__metric-label {
  font-size: 11px;
  color: var(--white-20);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hero__title { font-size: var(--text-4xl); }
  .hero__proof { flex-wrap: wrap; gap: var(--space-6); }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__beam-left, .hero__beam-right { display: none; }
}

/* ─── Divider: red-to-green line ─── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--red), var(--white-10) 50%, var(--green));
  margin: 0;
  opacity: 0.5;
}

/* ─── Providers strip ─── */
.providers {
  padding: var(--space-12) 0;
  text-align: center;
}

.providers__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-20);
  margin-bottom: var(--space-5);
}

.providers__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.providers__name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-40);
  letter-spacing: -0.01em;
}

/* ─── Section eyebrow + note ─── */
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-20);
  margin-bottom: var(--space-6);
}

.section-note {
  font-size: var(--text-sm);
  color: var(--white-20);
  margin-top: var(--space-5);
}

/* ─── Flow steps ─── */
.flow {
  max-width: 540px;
}

.flow__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.flow__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-10);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  color: var(--white-40);
  font-family: var(--font-mono);
}
.flow__num--red { border-color: var(--red); color: var(--red); }
.flow__num--green { border-color: var(--green); color: var(--green); }

.flow__text h4 {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.flow__text p {
  font-size: var(--text-sm);
  color: var(--white-40);
  line-height: 1.6;
}

.flow__connector {
  width: 1px;
  height: 24px;
  margin-left: 14px;
  background: var(--white-10);
}

/* ─── Section titles ─── */
.section-title {
  font-size: var(--text-4xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--white-40);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.section-cta {
  margin-top: var(--space-8);
}

/* ─── Prop cards ─── */
.prop-card {
  padding: var(--space-8);
  border: 1px solid var(--white-05);
  border-radius: var(--radius);
  background: var(--void-soft);
  transition: border-color var(--duration) var(--ease);
}
.prop-card:hover { border-color: var(--white-10); }

.prop-card__bar {
  width: 32px;
  height: 3px;
  margin-bottom: var(--space-5);
  border-radius: 2px;
}
.prop-card__bar--red { background: var(--red); }
.prop-card__bar--white { background: var(--white); }
.prop-card__bar--green { background: var(--green); }

.prop-card h3 {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.prop-card p {
  font-size: var(--text-sm);
  color: var(--white-40);
  line-height: 1.6;
}

/* ─── CTA ─── */
.section--cta {
  padding: var(--space-32) 0;
}

.cta {
  text-align: center;
}

.cta h2 {
  font-size: var(--text-4xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.cta p {
  color: var(--white-40);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
