/* ==========================================================================
   Landing Page Styles — Goles Pro
   Design palette:
     bg:        #0A0A0A
     surface:   #111118
     surface-2: #0D0D14
     border:    #222233
     text:      #FFFFFF
     muted:     #A1A1A1
     dimmer:    #6B7280
     accent:    #582CFF
     violet:    #A78BFA
     pink:      #BF40FF
     cyan:      #00F2FF
     green:     #22C55E
     amber:     #F59E0B
   ========================================================================== */

/* ---------- Theme variables ---------- */
:root,
[data-theme="dark"] {
  --lp-bg:         #0A0A0A;
  --lp-surface:    #111118;
  --lp-surface-2:  #0D0D14;
  --lp-border:     #222233;
  --lp-text:       #FFFFFF;
  --lp-muted:      #A1A1A1;
  --lp-dimmer:     #6B7280;
  --lp-nav-bg:     rgba(10, 10, 10, 0.85);
  --lp-nav-border: rgba(34, 34, 51, 0.6);
  --lp-card-bg:    #111118;
  --lp-card-border:#222233;
  --lp-input-bg:   #0A0A0A;
  --lp-mockup-bg:  #111118;
  --lp-mockup-bar: #0A0A0A;
  --lp-mockup-row: rgba(88, 44, 255, 0.08);
  --lp-stat-num:   #FFFFFF;
  --lp-footer-bg:  #070709;
  --lp-footer-border: #1A1A2E;
  --lp-theme-btn-bg: rgba(255,255,255,0.08);
  --lp-theme-btn-hover: rgba(255,255,255,0.14);
  --lp-theme-btn-color: var(--lp-muted);
  --lp-pill-bg:       rgba(26, 20, 51, 0.9);
  --lp-step-bg:       #1A1433;
  --lp-step-color:    #444466;
  --lp-step-filled:   #2D1F6E;
  --lp-mockup-active: rgba(21, 16, 58, 0.8);
  --lp-stat-label:    rgba(255, 255, 255, 0.6);
  --lp-stat-divider:  rgba(255, 255, 255, 0.18);
  --lp-quote-color:   #E5E7EB;
}

[data-theme="light"] {
  --lp-bg:         #F4F4F8;
  --lp-surface:    #FFFFFF;
  --lp-surface-2:  #EEEEF6;
  --lp-border:     #E0E0EC;
  --lp-text:       #0A0A1A;
  --lp-muted:      #5A5A78;
  --lp-dimmer:     #8888A8;
  --lp-nav-bg:     rgba(244, 244, 248, 0.88);
  --lp-nav-border: rgba(200, 200, 220, 0.6);
  --lp-card-bg:    #FFFFFF;
  --lp-card-border:#E0E0EC;
  --lp-input-bg:   #F4F4F8;
  --lp-mockup-bg:  #FFFFFF;
  --lp-mockup-bar: #F4F4F8;
  --lp-mockup-row: rgba(88, 44, 255, 0.06);
  --lp-stat-num:   #0A0A1A;
  --lp-footer-bg:  #EEEEF6;
  --lp-footer-border: #D8D8EC;
  --lp-theme-btn-bg: rgba(0,0,0,0.06);
  --lp-theme-btn-hover: rgba(0,0,0,0.1);
  --lp-theme-btn-color: #5A5A78;
  --lp-pill-bg:       rgba(88, 44, 255, 0.1);
  --lp-step-bg:       rgba(88, 44, 255, 0.08);
  --lp-step-color:    #8888A8;
  --lp-step-filled:   rgba(88, 44, 255, 0.15);
  --lp-mockup-active: rgba(88, 44, 255, 0.06);
  --lp-stat-label:    #5A5A78;
  --lp-stat-divider:  #D0D0E0;
  --lp-quote-color:   #2A2A3A;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.landing-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--lp-bg);
  color: var(--lp-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.landing-body a {
  text-decoration: none;
}

.landing-main {
  display: flex;
  flex-direction: column;
}

/* ---------- Container ---------- */
.lp-container {
  width: 100%;
  max-width: 1312px;
  margin-inline: auto;
  padding-inline: 64px;
}

/* ---------- Shared Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.lp-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-btn--primary {
  background-color: #582CFF;
  color: #FFFFFF;
}

.lp-btn--ghost {
  background-color: var(--lp-theme-btn-bg);
  color: var(--lp-muted);
  border: 1px solid var(--lp-card-border);
}

.lp-btn--sm {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
}

.lp-btn--lg {
  font-size: 16px;
  padding: 16px 32px;
}

.lp-btn--xl {
  font-size: 18px;
  padding: 18px 40px;
}

.lp-btn--glow {
  box-shadow: 0 8px 32px rgba(88, 44, 255, 0.42);
}

.lp-btn--glow:hover {
  box-shadow: 0 12px 40px rgba(88, 44, 255, 0.56);
}

/* ---------- Shared Icons ---------- */
.lp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lp-icon--amber {
  color: #F59E0B;
}

/* ---------- Section shared ---------- */
.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lp-section-subtitle {
  margin-top: 16px;
  font-size: 18px;
  color: var(--lp-muted);
  line-height: 1.6;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--lp-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-nav-border);
}

.lp-nav__inner {
  max-width: 1312px;
  margin-inline: auto;
  padding-inline: 64px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.lp-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-nav__logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-right: auto;
}

.lp-nav__link {
  font-size: 14px;
  color: var(--lp-muted);
  transition: color 0.2s ease;
}

.lp-nav__link:hover {
  color: var(--lp-text);
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lp-nav__login {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
  transition: color 0.2s ease;
}

.lp-nav__login:hover {
  color: var(--lp-text);
}

.lp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.lp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--lp-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.lp-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu drawer ---------- */
.lp-nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--lp-border);
}

.lp-nav__mobile-menu.is-open {
  display: flex;
}

.lp-nav__mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  text-decoration: none;
  transition: background 0.15s;
}

.lp-nav__mobile-link:hover {
  background: var(--lp-card-bg);
}

.lp-nav__mobile-link--primary {
  background: #582CFF;
  color: #FFFFFF;
  text-align: center;
  margin-top: 4px;
}

.lp-nav__mobile-link--primary:hover {
  background: #6B3FFF;
  color: #FFFFFF;
}

.lp-nav__mobile-theme-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.lp-nav__mobile-theme-btn:hover {
  background: var(--lp-card-bg);
}

.lp-nav__mobile-theme-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lp-nav__mobile-theme-btn .icon-sun  { display: none; }
.lp-nav__mobile-theme-btn .icon-moon { display: block; }

[data-theme="light"] .lp-nav__mobile-theme-btn .icon-sun  { display: block; }
[data-theme="light"] .lp-nav__mobile-theme-btn .icon-moon { display: none; }

.lp-nav__theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--lp-theme-btn-bg);
  border: none;
  cursor: pointer;
  color: var(--lp-theme-btn-color);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.lp-nav__theme-btn:hover {
  background: var(--lp-theme-btn-hover);
  color: var(--lp-text);
}

.lp-nav__theme-btn svg {
  width: 16px;
  height: 16px;
}

.lp-nav__theme-btn .icon-sun  { display: none; }
.lp-nav__theme-btn .icon-moon { display: block; }

[data-theme="light"] .lp-nav__theme-btn .icon-sun  { display: block; }
[data-theme="light"] .lp-nav__theme-btn .icon-moon { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.lp-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}

.lp-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.lp-hero__glow--1 {
  width: 700px;
  height: 700px;
  background-color: #582CFF;
  opacity: 0.18;
  top: -100px;
  left: -100px;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}

.lp-hero__glow--2 {
  width: 500px;
  height: 500px;
  background-color: #BF40FF;
  opacity: 0.12;
  top: 200px;
  right: -80px;
  animation: glow-pulse 8s ease-in-out infinite alternate-reverse;
}

.lp-hero__glow--3 {
  width: 300px;
  height: 300px;
  background-color: #00F2FF;
  opacity: 0.08;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: glow-pulse 10s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { transform: scale(1); opacity: 0.12; }
  to   { transform: scale(1.15); opacity: 0.22; }
}

.lp-hero__glow--3 {
  animation: glow-pulse-center 10s ease-in-out infinite alternate;
}

@keyframes glow-pulse-center {
  from { transform: translateX(-50%) scale(1); opacity: 0.06; }
  to   { transform: translateX(-50%) scale(1.2); opacity: 0.12; }
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1312px;
  margin-inline: auto;
  padding-inline: 64px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.lp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lp-pill-bg);
  border: 1px solid #582CFF;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 32px;
}

.lp-hero__pill .lp-icon {
  width: 14px;
  height: 14px;
}

.lp-hero__heading {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--lp-text);
  margin-bottom: 24px;
}

.lp-hero__subheading {
  font-size: 20px;
  color: var(--lp-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 540px;
  margin-bottom: 32px;
}

.lp-hero__br {
  display: none;
}

.lp-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.lp-hero__social-proof {
  font-size: 18px;
  color: var(--lp-muted);
  margin-bottom: 40px;
}

/* ---------- Hero Mockup ---------- */
/* ==========================================================================
   COUNTDOWN
   ========================================================================== */

.lp-countdown-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0 8px;
}

.lp-countdown-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-countdown {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.lp-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
}

.lp-countdown__num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--lp-text);
  letter-spacing: -0.03em;
  display: inline-block;
}

.lp-countdown__num.cd-flip {
  animation: cd-flip 0.35s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes cd-flip {
  0%   { transform: translateY(-12px) scaleY(0.7); opacity: 0; }
  100% { transform: translateY(0)     scaleY(1);   opacity: 1; }
}

.lp-countdown__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
  min-width: 60px;
  text-align: center;
}

.lp-countdown__sep {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--lp-dimmer);
  padding: 0 4px;
  margin-top: 2px;
  opacity: 0.5;
  user-select: none;
}

@media (min-width: 480px) {
  .lp-countdown__unit { min-width: 100px; }
  .lp-countdown__num  { font-size: 82px; }
  .lp-countdown__sep  { font-size: 68px; padding: 0 6px; margin-top: 2px }
  .lp-countdown__label { font-size: 12px; }
}

@media (min-width: 768px) {
  .lp-countdown__unit { min-width: 148px; }
  .lp-countdown__num  { font-size: 150px; }
  .lp-countdown__sep  { font-size: 110px; padding: 0 8px; }
  .lp-countdown-eyebrow { font-size: 14px; }
  .lp-countdown__label  { font-size: 13px; }
}

.lp-mockup {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--lp-card-border);
  box-shadow: 0 24px 60px rgba(88, 44, 255, 0.2);
  background-color: var(--lp-surface);
}

.lp-mockup__bar {
  height: 36px;
  background-color: var(--lp-mockup-bar);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.lp-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-mockup__dot--red    { background-color: #FF5F57; }
.lp-mockup__dot--yellow { background-color: #FEBC2E; }
.lp-mockup__dot--green  { background-color: #28C840; }

.lp-mockup__url {
  font-size: 11px;
  color: var(--lp-dimmer);
  background-color: var(--lp-surface);
  border-radius: 4px;
  padding: 3px 10px;
  margin-left: 8px;
}

.lp-mockup__body {
  background-color: var(--lp-bg);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-mockup__row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  border-radius: 8px;
  padding-inline: 12px;
}

.lp-mockup__row--active {
  background-color: var(--lp-mockup-active);
  border: 1px solid #582CFF;
}

.lp-mockup__date {
  font-size: 11px;
  color: var(--lp-dimmer);
  width: 110px;
  flex-shrink: 0;
}

.lp-mockup__date--accent {
  color: #A78BFA;
}

.lp-mockup__match {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text);
  flex: 1;
}

.lp-mockup__score-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  justify-content: center;
  flex-shrink: 0;
}

.lp-mockup__box {
  width: 36px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #582CFF;
  background-color: var(--lp-step-bg);
  color: var(--lp-step-color);
}

.lp-mockup__box--filled {
  background-color: var(--lp-step-filled);
  color: var(--lp-text);
  border-width: 2px;
}

.lp-mockup__badge {
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 10px;
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.lp-mockup__badge--pending {
  color: var(--lp-muted);
}

.lp-mockup__badge--saved {
  color: #22C55E;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.lp-features {
  background-color: var(--lp-surface-2);
  padding: 80px 0;
}

.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background-color: var(--lp-surface);
  border: 1px solid var(--lp-card-border);
  border-radius: 16px;
  border-color: #582CFF;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lp-feature-card:hover {
  border-color: rgba(88, 44, 255, 0.5);
  transform: translateY(-2px);
}


.lp-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.lp-feature-card__icon--purple { background-color: rgba(88, 44, 255, 0.12); color: #582CFF; }
.lp-feature-card__icon--violet { background-color: rgba(167, 139, 250, 0.15); color: #7C3AED; }
.lp-feature-card__icon--green  { background-color: rgba(34, 197, 94, 0.12);  color: #16A34A; }
.lp-feature-card__icon--cyan   { background-color: rgba(0, 242, 255, 0.10);  color: #0891B2; }

.lp-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-feature-card__desc {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.lp-how {
  background-color: var(--lp-bg);
  padding: 80px 0;
}

.lp-how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.lp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 16px;
  padding-inline: 24px;
}

.lp-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  background-color: var(--lp-step-bg);
  border: 1px solid #582CFF;
  color: #A78BFA;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.lp-step__number--active {
  background-color: #582CFF;
  color: #FFF;
  border-color: #582CFF;
}

.lp-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-step__desc {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-step__connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, #582CFF 0%, rgba(88, 44, 255, 0.2) 100%);
  margin-top: 26px;
  flex-shrink: 0;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.lp-stats {
  background-color: #582CFF;
  padding: 0;
}

.lp-stats .lp-container {
  padding-block: 0;
}

.lp-stats__grid {
  display: flex;
  align-items: center;
  height: 320px;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding-inline: 40px;
}

.lp-stat__number {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.lp-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.lp-stats__divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.lp-testimonials {
  background-color: var(--lp-surface-2);
  padding: 80px 0;
}

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

.lp-testimonial {
  background-color: var(--lp-surface);
  border: 1px solid var(--lp-card-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.lp-testimonial--highlight {
  border-color: #582CFF;
}

.lp-testimonial__stars {
  font-size: 16px;
  color: #F59E0B;
  letter-spacing: 2px;
}

.lp-testimonial__quote {
  font-size: 15px;
  color: var(--lp-quote-color);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
}

.lp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.lp-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  flex-shrink: 0;
}

.lp-testimonial__avatar--purple { background-color: #582CFF; }
.lp-testimonial__avatar--violet { background-color: #BF40FF; }
.lp-testimonial__avatar--cyan   { background-color: #00A3B4; }

.lp-testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
  font-style: normal;
}

.lp-testimonial__role {
  font-size: 12px;
  color: var(--lp-dimmer);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.lp-faq {
  padding: 96px 0;
}

.lp-faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--lp-card-border);
  border-radius: 16px;
  overflow: hidden;
}

.lp-faq__item {
  border-bottom: 1px solid var(--lp-card-border);
}

.lp-faq__item:last-child {
  border-bottom: none;
}

.lp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: var(--lp-card-bg);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-text);
  transition: background 0.15s;
}

.lp-faq__question:hover {
  background: var(--lp-surface-2);
}

.lp-faq__chevron {
  flex-shrink: 0;
  color: var(--lp-muted);
  transition: transform 0.25s ease;
}

.lp-faq__item.is-open .lp-faq__chevron {
  transform: rotate(180deg);
}

.lp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  background: var(--lp-card-bg);
}

.lp-faq__answer p {
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.7;
  padding-bottom: 22px;
}

.lp-faq__item.is-open .lp-faq__answer {
  max-height: 300px;
  padding-top: 0;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.lp-cta {
  position: relative;
  background-color: var(--lp-bg);
  padding: 80px 0;
  overflow: hidden;
}

.lp-cta__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background-color: #582CFF;
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-pulse 7s ease-in-out infinite alternate;
}

.lp-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.lp-cta__heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-cta__subheading {
  font-size: 18px;
  color: var(--lp-muted);
  line-height: 1.7;
  max-width: 560px;
}

.lp-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.lp-footer {
  background-color: var(--lp-footer-bg);
  border-top: 1px solid var(--lp-footer-border);
}

.lp-footer__inner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-footer__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-footer__logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-footer__link {
  font-size: 13px;
  color: var(--lp-dimmer);
  transition: color 0.2s ease;
}

.lp-footer__link:hover {
  color: var(--lp-muted);
}

.lp-footer__copy {
  font-size: 13px;
  color: var(--lp-dimmer);
}

/* ==========================================================================
   RESPONSIVE — Tablet (≤1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .lp-container {
    padding-inline: 40px;
  }

  .lp-nav__inner {
    padding-inline: 40px;
  }

  .lp-hero__content {
    padding-inline: 40px;
  }

  .lp-hero__heading {
    font-size: 56px;
  }

  .lp-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-testimonials__grid .lp-testimonial:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .lp-cta__heading {
    font-size: 44px;
  }
}

/* ==========================================================================
   RESPONSIVE — Mobile (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
  .lp-container {
    padding-inline: 20px;
  }

  .lp-nav__inner {
    padding-inline: 20px;
    height: 60px;
  }

  .lp-nav__links {
    display: none;
  }

  .lp-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .lp-nav__signup-btn {
    display: none;
  }

  .lp-hero {
    min-height: auto;
  }

  .lp-hero__content {
    padding-inline: 20px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .lp-hero__heading {
    font-size: 44px;
    letter-spacing: -0.02em;
  }

  .lp-hero__subheading {
    font-size: 16px;
  }

  .lp-hero__br {
    display: none;
  }

  .lp-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .lp-btn--lg,
  .lp-btn--xl {
    width: 100%;
    justify-content: center;
  }

  .lp-section-title {
    font-size: 28px;
  }

  .lp-section-subtitle {
    font-size: 15px;
  }

  .lp-section-header {
    margin-bottom: 36px;
  }

  .lp-features {
    padding: 60px 0;
  }

  .lp-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-how {
    padding: 60px 0;
  }

  .lp-how__steps {
    flex-direction: column;
    gap: 24px;
  }

  .lp-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding-inline: 8px;
    gap: 16px;
  }

  .lp-step__number {
    width: 44px;
    height: 44px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .lp-step__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .lp-step__title {
    font-size: 15px;
  }

  .lp-step__desc {
    font-size: 13px;
  }

  .lp-step__connector {
    display: none;
  }

  .lp-stats .lp-container {
    padding-inline: 0;
  }

  .lp-stats__grid {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    gap: 24px;
    align-items: center;
  }

  .lp-stat {
    flex: unset;
    width: 100%;
    padding-inline: 0;
    gap: 6px;
  }

  .lp-stats__divider {
    display: none;
  }

  .lp-stat__number {
    font-size: 32px;
  }

  .lp-stat__label {
    font-size: 13px;
  }

  .lp-testimonials {
    padding: 60px 0;
  }

  .lp-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .lp-testimonials__grid .lp-testimonial:last-child {
    grid-column: auto;
    max-width: none;
  }

  .lp-faq {
    padding: 60px 0;
  }

  .lp-faq__header {
    margin-bottom: 36px;
  }

  .lp-faq__question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .lp-faq__answer {
    padding: 0 20px;
  }

  .lp-faq__answer p {
    padding-bottom: 18px;
  }

  .lp-cta {
    padding: 60px 0;
  }

  .lp-cta__heading {
    font-size: 38px;
  }

  .lp-cta__subheading {
    font-size: 16px;
  }

  .lp-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .lp-footer__inner {
    height: auto;
    padding-block: 32px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .lp-footer__links {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp-hero__mockup {
    width: 100%;
    overflow-x: auto;
  }

  .lp-mockup {
    min-width: 600px;
  }
}

/* ==========================================================================
   RESPONSIVE — Small Mobile (≤480px)
   ========================================================================== */

@media (max-width: 480px) {
  .lp-hero__heading {
    font-size: 38px;
    letter-spacing: -0.02em;
  }

  .lp-hero__social-proof {
    font-size: 14px;
  }

  .lp-section-title {
    font-size: 24px;
  }

  .lp-cta__heading {
    font-size: 28px;
  }

  .lp-cta__subheading {
    font-size: 11.5px;
  }
}

/* ==========================================================================
   STATIC PAGES (privacy, terms, contact)
   ========================================================================== */
.lp-static {
  min-height: 70vh;
  padding: 80px 0 120px;
}

.lp-static__header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-static__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.lp-static__subtitle {
  font-size: 15px;
  color: var(--lp-muted);
}

/* Prose content */
.lp-prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--lp-muted);
  line-height: 1.8;
  font-size: 15px;
}

.lp-prose h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 40px 0 12px;
}

.lp-prose h2:first-child {
  margin-top: 0;
}

.lp-prose p {
  margin-bottom: 16px;
}

.lp-prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.lp-prose li {
  margin-bottom: 6px;
}

.lp-prose a {
  color: #582CFF;
  text-decoration: underline;
}

/* Contact form */
.lp-contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-form-input,
.lp-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--lp-text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-form-input::placeholder,
.lp-form-textarea::placeholder {
  color: var(--lp-dimmer);
}

.lp-form-input:focus,
.lp-form-textarea:focus {
  border-color: #582CFF;
  box-shadow: 0 0 0 3px rgba(88, 44, 255, 0.18);
}

.lp-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.lp-contact-form .lp-btn {
  align-self: flex-start;
}

.lp-flash-notice {
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86EFAC;
}

[data-theme="light"] .lp-flash-notice {
  background: rgba(22, 163, 74, 0.10);
  border-color: rgba(22, 163, 74, 0.3);
  color: #15803D;
}

/* ==========================================================================
   ANIMATIONS — respect prefers-reduced-motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .lp-hero__glow,
  .lp-hero__mockup,
  .lp-cta__glow {
    animation: none;
  }
}
