/* Landing Page Styles */

/* Landing page content area - takes the main grid area */
.landing-content {
  grid-area: main;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent;
}

.landing-content .container {
  width: 100%;
  padding: 40px 0;
}

/* Hide default header styling for landing page */
.landing-page .clip-header {
  background: transparent !important;
  border: none;
  box-shadow: none;
  padding: 20px;
}

.landing-page .clip-header {
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100%;
}

.landing-page .clip-header .header-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.landing-page .clip-header a#logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-page .clip-header a#logo-link img {
  width: 36px;
  height: 36px;
  margin-top: 0 !important;
}

.landing-page .clip-header {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text) !important;
}

.landing-page .clip-header .clip-tagline {
  display: none;
}

.landing-page .clip-header .join-btn {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  color: #020617 !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(380px, 1.15fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.hero > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero > div:first-child {
  align-items: flex-start;
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 8px;
}


.hero p {
  color: var(--muted);
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: #c6d4e3;
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7dd3fc, #0ea5e9 70%);
  box-shadow: 0 0 14px rgba(14, 165, 233, 0.55);
}

.hero-actions .btn-compose {
  font-size: 1.3rem;
  padding: 14px 32px;
}

.hero-microcopy {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: left;
}

.hero-proof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(2, 6, 23, 0.55);
  color: #c9d9ea;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-glow {
  position: absolute;
  inset: 10% 8% auto;
  height: 75%;
  border-radius: 24px;
  background: radial-gradient(circle at 35% 30%, rgba(56, 189, 248, 0.26), rgba(14, 165, 233, 0.12) 40%, rgba(2, 6, 23, 0));
  filter: blur(10px);
  pointer-events: none;
}

.hero-visual-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 760px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(165deg, rgba(11, 18, 32, 0.95), rgba(2, 6, 23, 0.95));
  box-shadow: 0 28px 75px rgba(2, 6, 23, 0.75);
  animation: heroReveal 620ms ease-out both;
}

.hero-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.hero-visual-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.seo-description {
  margin: 40px 0 60px;
  text-align: center;
}

.seo-description p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.section {
  margin-bottom: 60px;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
}

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

.card {
  background: linear-gradient(180deg, #0b1220, #020617);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.card h3 {
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Landing page footer */
.landing-page .clip-footer {
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  background: transparent;
}

.landing-page .clip-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.landing-page .clip-footer .footer-content > span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .hero > div:first-child {
    align-items: center;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .hero-points {
    text-align: left;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-microcopy {
    text-align: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual-frame {
    padding: 10px;
    border-radius: 16px;
  }

  .hero-visual-frame figcaption {
    font-size: 0.8rem;
  }
}
