/* =====================================================================
   SevenMeet landing — team finder. Stilul site-ului (dark + portocaliu +
   cyan), aurora cyan doar în hero. Prefix .sm- ca să nu atingă restul.
   ===================================================================== */

:root {
  --sm-dark: #050812;
  --sm-darker: #03060d;
  --sm-panel: #0b1120;
  --sm-light: #f0f6fc;
  --sm-gray: #8b98a9;
  --sm-gray-light: #b9c4d0;
  --sm-primary: #ff4500;
  --sm-primary-soft: #ff6a33;
  --sm-blue: #00d4ff;
  --sm-blue-deep: #0077ff;
  --sm-radius: 16px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sm-dark);
  color: var(--sm-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.accent { color: var(--sm-primary); }
.accent-blue { color: var(--sm-blue); }

/* ---- ANIMAȚIE LA SCROLL ---- */
.sm-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sm-animate.is-visible { opacity: 1; transform: translateY(0); }
.sm-animate.delay-1 { transition-delay: 0.1s; }
.sm-animate.delay-2 { transition-delay: 0.2s; }
.sm-animate.delay-3 { transition-delay: 0.3s; }
.sm-animate.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .sm-animate { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- BUTOANE ---- */
.sm-btn-primary,
.sm-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sm-btn-primary {
  background: linear-gradient(90deg, #ff4500 0%, #ff6a33 50%, #ff4500 100%);
  background-size: 200% 100%;
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4), 0 12px 40px rgba(255, 69, 0, 0.18);
}
.sm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 69, 0, 0.5), 0 16px 52px rgba(255, 69, 0, 0.28);
}

.sm-btn-outline {
  background: transparent;
  color: var(--sm-light);
  border: 1.5px solid rgba(0, 212, 255, 0.55);
}
.sm-btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--sm-blue);
  transform: translateY(-2px);
}

.sm-btn-large { font-size: 24px; padding: 18px 44px; }
.sm-btn-full { width: 100%; }

/* ============================================================
   HERO + AURORA
   ============================================================ */
.sm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 119, 255, 0.12), transparent 70%),
    var(--sm-dark);
  padding: 100px 24px 80px;
}

.sm-aurora {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 62%, transparent 100%);
}

.sm-aurora-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 560px 80% at 50% 42%,
    rgba(5, 8, 18, 0.72) 0%,
    rgba(5, 8, 18, 0.34) 50%,
    transparent 76%);
}

.sm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.sm-hero-logo {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
}

.sm-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sm-primary);
  margin-bottom: 16px;
}
.sm-eyebrow.blue { color: var(--sm-blue); }

.sm-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sm-hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--sm-gray-light);
  max-width: 560px;
  margin: 22px auto 0;
}

.sm-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.sm-hero-link {
  color: var(--sm-blue);
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s ease;
}
.sm-hero-link:hover { opacity: 0.75; }

.sm-hero-sotto {
  margin-top: 26px;
  font-size: 13px;
  color: var(--sm-gray);
  letter-spacing: 0.02em;
}

/* ============================================================
   SECȚIUNI GENERICE
   ============================================================ */
.sm-section {
  position: relative;
  padding: 96px 24px;
  background: var(--sm-dark);
}
.sm-section-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.sm-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 52px;
}

/* ---- PAȘI ---- */
.sm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sm-step {
  background: var(--sm-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--sm-radius);
  padding: 32px 22px;
  text-align: left;
  position: relative;
}
.sm-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--sm-dark);
  background: linear-gradient(135deg, var(--sm-blue-deep), var(--sm-blue));
  margin-bottom: 18px;
}
.sm-step-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sm-step-text { font-size: 15px; color: var(--sm-gray-light); }

/* ---- DE CE ---- */
.sm-why-section { background: var(--sm-darker); }
.sm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sm-why-card {
  background: var(--sm-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--sm-radius);
  padding: 34px 26px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.sm-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.35);
}
.sm-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  color: var(--sm-blue);
  margin-bottom: 20px;
}
.sm-why-title {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sm-why-text { font-size: 15px; color: var(--sm-gray-light); }

/* ---- BANDĂ LISTĂ PUBLICĂ ---- */
.sm-band-section { background: var(--sm-dark); padding: 64px 24px; }
.sm-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.14), rgba(0, 212, 255, 0.06));
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 22px;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.sm-band-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.sm-band-sub { font-size: 15px; color: var(--sm-gray-light); margin-top: 6px; }
.sm-band-inner .sm-btn-outline { flex-shrink: 0; }

/* ---- FAQ ---- */
.sm-faq-section { background: var(--sm-darker); }
.sm-faq-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sm-faq-item {
  background: var(--sm-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--sm-radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.sm-faq-item.active { border-color: rgba(0, 212, 255, 0.35); }
.sm-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--sm-light);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.sm-faq-q svg { flex-shrink: 0; color: var(--sm-blue); transition: transform 0.25s ease; }
.sm-faq-item.active .sm-faq-q svg { transform: rotate(45deg); }
.sm-faq-a { padding: 0 22px 20px; }
.sm-faq-a p { font-size: 15px; color: var(--sm-gray-light); }

/* ---- CTA FINAL ---- */
.sm-final-section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
}
.sm-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 100%, rgba(255, 69, 0, 0.18), transparent 65%),
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0, 119, 255, 0.12), transparent 60%),
    var(--sm-dark);
  z-index: 0;
}
.sm-final-inner { position: relative; z-index: 1; }
.sm-final-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.sm-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sm-final-tagline {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sm-blue);
}

/* ---- SHARE ---- */
.sm-final-share { margin-top: 44px; }
.sm-share-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sm-gray);
  margin-bottom: 14px;
}
.sm-share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sm-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: var(--sm-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sm-light);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.sm-share-btn:hover { transform: translateY(-2px); border-color: rgba(0, 212, 255, 0.4); }
.sm-share-whatsapp:hover { color: #25d366; }
.sm-share-btn.copied { border-color: #25d366; color: #25d366; }

/* ---- FOOTER ---- */
.sm-footer {
  background: var(--sm-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 24px;
}
.sm-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sm-footer-logo { height: 40px; width: auto; }
.sm-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.sm-footer-links a { font-size: 14px; color: var(--sm-gray-light); transition: color 0.2s ease; }
.sm-footer-links a:hover { color: var(--sm-blue); }
.sm-footer-copy { font-size: 12px; color: var(--sm-gray); letter-spacing: 0.04em; }

/* ---- STICKY MOBILE CTA ---- */
.sm-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 600;
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(140%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-sticky-cta.visible { transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .sm-steps { grid-template-columns: repeat(2, 1fr); }
  .sm-why-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .sm-section { padding: 72px 20px; }
  .sm-steps { grid-template-columns: 1fr; }
  .sm-band-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .sm-band-inner .sm-btn-outline { width: 100%; }
  .sm-hero-logo { height: 52px; }
  .sm-aurora-veil {
    background: radial-gradient(ellipse 100% 78% at 50% 40%,
      rgba(5, 8, 18, 0.66) 0%,
      rgba(5, 8, 18, 0.3) 52%,
      transparent 80%);
  }
}

/* Sticky vizibil doar pe mobil. */
@media (min-width: 768px) {
  .sm-sticky-cta { display: none; }
}
