/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Embedded Shopify app layout polish */
body.embedded-app {
  background: #f6f6f7;
  color: #1f2125;
}

body.embedded-app .app-wrapper {
  padding: 24px 32px 40px;
}

body.embedded-app .app-content {
  max-width: 1200px;
  margin: 0 auto;
}

body.embedded-app .section-header h1 {
  letter-spacing: -0.02em;
}

body.embedded-app .card {
  border-radius: 12px;
}

/* Compact form layout to reduce vertical space */
body.embedded-app .card-body {
  padding: 20px !important;
}

body.embedded-app .feedx-related-section-item {
  padding: 12px 14px !important;
  margin-bottom: 12px !important;
}

body.embedded-app .feedx-related-section-item .mb-3 {
  margin-bottom: 0.5rem !important;
}

body.embedded-app .form-check.form-switch {
  margin-bottom: 0.5rem !important;
}

body.embedded-app .row.g-3 {
  --bs-gutter-y: 0.5rem;
  --bs-gutter-x: 0.75rem;
}

body.embedded-app .form-label {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

body.embedded-app .form-control,
body.embedded-app .form-select {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

body.embedded-app .btn.btn-lg {
  padding: 0.55rem 1.25rem;
  font-size: 1rem;
}

body.embedded-app .feedx-sidecard {
  background: #ffffff;
  border-radius: 12px;
}

body.embedded-app .feedx-sidecard .card-body {
  padding: 14px 16px !important;
}

body.embedded-app .feedx-sidecard ul {
  margin-bottom: 0;
}

body.embedded-app .feedx-remove-wrapper {
  cursor: help;
}

body.embedded-app .feedx-remove-section:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 768px) {
  body.embedded-app .app-wrapper {
    padding: 16px 16px 24px;
  }
}

/* Landing page */
:root {
  --lp-header-offset: 140px;
}

html {
  scroll-padding-top: var(--lp-header-offset);
}

body.landing-page {
  font-family: "Work Sans", "Segoe UI", "Noto Sans", sans-serif;
  color: #101319;
  background: radial-gradient(circle at 15% 15%, #f6efe9 0%, #f6efe9 25%, #f9f8f5 55%, #f7f7fb 100%);
  margin: 0;
}

body.landing-page * {
  box-sizing: border-box;
}

.lp {
  position: relative;
  overflow: hidden;
}

.lp-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.65;
  animation: lp-float 12s ease-in-out infinite;
}

.lp-orb--sun {
  background: radial-gradient(circle, #ffc48b 0%, rgba(255, 196, 139, 0) 70%);
  top: -120px;
  right: -80px;
}

.lp-orb--mint {
  background: radial-gradient(circle, #9be6da 0%, rgba(155, 230, 218, 0) 70%);
  bottom: -160px;
  left: -120px;
  animation-delay: -4s;
}

.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8vw 10px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 5;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Segoe UI", "Noto Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.lp-logo,
.lp-logo * {
  text-decoration: none;
  color: inherit;
}

.lp-logo:visited,
.lp-logo:hover,
.lp-logo:active {
  color: inherit;
  text-decoration: none;
}

.lp-logo:hover {
  opacity: 0.85;
}

.lp-logo__mark {
  background: #11151f;
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.lp-nav {
  display: flex;
  gap: 22px;
}

.lp-nav a {
  color: #20262f;
  text-decoration: none;
  font-weight: 500;
}

.lp-header__cta {
  display: flex;
  gap: 12px;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-button--primary {
  background: #11151f;
  color: #fff;
  box-shadow: 0 12px 24px rgba(17, 21, 31, 0.2);
}

.lp-button--ghost {
  border-color: rgba(16, 19, 25, 0.2);
  color: #101319;
  background: rgba(255, 255, 255, 0.7);
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding: 60px 8vw 20px;
}

.lp-hero__copy h1 {
  font-family: "Space Grotesk", "Segoe UI", "Noto Sans", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  margin: 16px 0 18px;
  letter-spacing: -0.02em;
}

.lp-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5f6b77;
}

.lp-subtitle {
  font-size: 1.1rem;
  max-width: 520px;
  color: #2c323a;
}

.lp-hero__actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.lp-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 16px;
}

.lp-proof strong {
  display: block;
  font-size: 1.2rem;
}

.lp-hero__visual {
  position: relative;
}

.lp-image {
  background: linear-gradient(135deg, #f4f4f7 0%, #e6edf2 100%);
  border: 1px dashed rgba(16, 19, 25, 0.2);
  border-radius: 20px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #67717d;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.lp-image--hero {
  min-height: 360px;
}

.lp-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.lp-badge {
  position: absolute;
  bottom: -20px;
  right: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(17, 21, 31, 0.15);
}

.lp-strip {
  margin: 50px 8vw 20px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-strip__logos {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: #6b757f;
  flex-wrap: wrap;
}

.lp-strip__logos span {
  background: rgba(16, 19, 25, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.lp-section {
  padding: 70px 8vw 40px;
  scroll-margin-top: var(--lp-header-offset);
}

section[id] {
  scroll-margin-top: var(--lp-header-offset);
}


.lp-section__head {
  max-width: 620px;
}

.lp-section h2 {
  font-family: "Space Grotesk", "Segoe UI", "Noto Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 14px;
}

.lp-grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.lp-grid--features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(17, 21, 31, 0.08);
}

.lp-card--muted {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 19, 25, 0.08);
}

.lp-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.lp-steps {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 18px;
}

.lp-steps li {
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 18px;
  border-radius: 16px;
}

.lp-grid--gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.lp-quote {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(17, 21, 31, 0.08);
}

.lp-grid--pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  align-items: stretch;
}

.lp-price {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(16, 19, 25, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
}

.lp-price__value {
  font-size: 2rem;
  margin: 0;
}

.lp-price__note {
  margin: 0;
  color: #6b757f;
  font-weight: 500;
}

.lp-price ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.lp-price .lp-button {
  margin-top: auto;
}

.lp-price--featured {
  background: linear-gradient(145deg, #0c111b 0%, #111827 55%, #0b1220 100%);
  color: #fff;
  border: none;
  box-shadow: 0 22px 40px rgba(6, 10, 16, 0.35);
}

.lp-price--featured .lp-button--primary {
  background: #fff;
  color: #0c111b;
}

.lp-price--featured .lp-price__value {
  font-size: 2.6rem;
  letter-spacing: -0.02em;
}

.lp-price--featured .lp-price__note {
  color: rgba(255, 255, 255, 0.72);
}

.lp-price--featured ul {
  gap: 10px;
}

.lp-price--featured li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-price--featured li::before {
  content: "•";
  font-weight: 700;
}

.lp-button--block {
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  justify-content: center;
}

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

.lp-faq {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(16, 19, 25, 0.08);
}

.lp-cta {
  margin: 40px 8vw 80px;
  padding: 36px 40px;
  background: #11151f;
  color: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-footer {
  padding: 30px 8vw 50px;
  display: flex;
  justify-content: space-between;
  color: #6b757f;
  border-top: 1px solid rgba(16, 19, 25, 0.08);
}

.lp-footer__links {
  display: flex;
  gap: 18px;
}

.lp-legal {
  padding: 40px 8vw 80px;
  max-width: 860px;
}

.lp-legal h1 {
  font-family: "Space Grotesk", "Segoe UI", "Noto Sans", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  margin-bottom: 12px;
}

.lp-legal h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.lp-legal ul {
  padding-left: 18px;
}

.lp-legal__updated {
  color: #6b757f;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .lp-header {
    flex-direction: column;
    gap: 14px;
  }

  .lp-hero,
  .lp-section--split {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .lp-nav {
    display: none;
  }

  .lp-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-grid--gallery,
  .lp-grid--testimonials,
  .lp-grid--faq {
    grid-template-columns: 1fr;
  }

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

  .lp-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes lp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-orb,
  .lp-button {
    animation: none;
    transition: none;
  }
}
