/* ================================================================
   Lovable Header & Footer — upload-visual-2
   OceanWP has html { font-size: 62.5% } (1rem = 10px) — all
   dimensions use px to avoid that distortion.
   OceanWP suppression scoped to .page-id-650101.
   All new styles scoped under .pp-lovable-layout.
   ================================================================ */

/* ================================================================
   Page background — force uniform #f7f8fb across the full page,
   including gaps between Elementor sections and OceanWP containers.
   Scoped to this page only via body.page-id-650101.
   ================================================================ */
body.page-id-650101,
body.page-id-650101 #outer-wrap,
body.page-id-650101 #wrap,
body.page-id-650101 #content-wrap,
body.page-id-650101 #primary,
body.page-id-650101 #content,
body.page-id-650101 .site-content-contain,
body.page-id-650101 .entry-content,
body.page-id-650101 .entry-content > .elementor {
    background-color: #f7f8fb !important;
}

/* Top sections (title + submit-card-intro) match the upload section background */
body.page-id-650101 .elementor-element-pp_title_s1,
body.page-id-650101 .elementor-element-6359a82 {
    background-color: #f7f8fb !important;
}

/* ================================================================
   Isolation resets — neutralise OceanWP globals inside our wrapper
   ================================================================ */
.pp-lovable-layout {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  line-height: 1.5;
}
.pp-lovable-layout *,
.pp-lovable-layout *::before,
.pp-lovable-layout *::after {
  box-sizing: inherit;
}

/* Reset links — OceanWP sets a { color: #333; transition: all 0.3s } */
.pp-lovable-layout a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: none;
}
.pp-lovable-layout a:hover,
.pp-lovable-layout a:focus,
.pp-lovable-layout a:active {
  color: inherit;
  text-decoration: none;
  outline: 0;
}

/* Reset lists — OceanWP zeros these but font: inherit clobbers weight */
.pp-lovable-layout ul,
.pp-lovable-layout ol {
  list-style: none;
  margin: 0;
  padding: 0;
  font: inherit;
}
.pp-lovable-layout li {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Reset buttons */
.pp-lovable-layout button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

/* Reset images — OceanWP sets img { max-width: 100% } which squishes logo */
.pp-lovable-layout img {
  max-width: none;
  height: auto;
  border: 0;
  display: inline-block;
  vertical-align: middle;
}

/* Reset headings inside footer columns */
.pp-lovable-layout h3 {
  margin: 0;
  font-weight: 700;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ================================================================
   HEADER
   ================================================================ */
.pp-lovable-layout .ppl-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #1e2132;               /* oklch(0.24 0.02 250) fallback */
  background-color: oklch(0.24 0.02 250);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pp-lovable-layout .ppl-header-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.pp-lovable-layout .ppl-accent-bar {
  height: 3px;
  width: 100%;
  background: linear-gradient(
    to right,
    oklch(0.72 0.16 70),
    oklch(0.55 0.18 265),
    oklch(0.72 0.16 70)
  );
}

.pp-lovable-layout .ppl-header-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
}

/* Logo */
.pp-lovable-layout .ppl-logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.pp-lovable-layout .ppl-logo {
  height: 48px;
  width: auto;
  max-width: none;            /* override OceanWP img { max-width: 100% } */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 500ms ease-out;
  transform-origin: center;
  display: block;
}
.pp-lovable-layout .ppl-logo-link:hover .ppl-logo {
  transform: scale(1.25) rotate(-8deg);
}

/* Desktop nav — hidden below 1024px */
.pp-lovable-layout .ppl-desktop-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.pp-lovable-layout .ppl-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pp-lovable-layout .ppl-nav-item {
  position: relative;
}

.pp-lovable-layout .ppl-nav-badge {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: -4px;
  z-index: 10;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: #dc2626;
  padding: 1px 6px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  outline: 1px solid rgba(248, 113, 113, 0.4);
}

.pp-lovable-layout .ppl-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color 150ms;
}
.pp-lovable-layout .ppl-nav-link:hover {
  color: oklch(0.78 0.16 70);
}

.pp-lovable-layout .ppl-nav-icon {
  color: oklch(0.78 0.16 70);
  flex-shrink: 0;
}

.pp-lovable-layout .ppl-nav-underline {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 2px;
  background: oklch(0.72 0.16 70);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms;
}
.pp-lovable-layout .ppl-nav-link:hover .ppl-nav-underline {
  transform: scaleX(1);
}

.pp-lovable-layout .ppl-chevron {
  flex-shrink: 0;
  transition: transform 300ms;
}
.pp-lovable-layout .ppl-nav-item:hover .ppl-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.pp-lovable-layout .ppl-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 9999;
  width: 288px;                /* 18rem × 16px — was 180px with 62.5% root */
  transform: translateX(-50%) translateY(4px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms, visibility 0s 200ms;
}
.pp-lovable-layout .ppl-nav-item:hover .ppl-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 200ms, transform 200ms, visibility 0s 0s;
}

.pp-lovable-layout .ppl-dropdown-inner {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: oklch(0.18 0.02 250 / 0.98);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  outline: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pp-lovable-layout .ppl-dropdown-accent {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to right,
    oklch(0.72 0.16 70),
    oklch(0.55 0.18 265),
    oklch(0.72 0.16 70)
  );
}

.pp-lovable-layout .ppl-dropdown-list {
  padding: 8px 0;
  max-height: 60vh;
  overflow-y: auto;
}

.pp-lovable-layout .ppl-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 150ms, color 150ms;
}
.pp-lovable-layout .ppl-dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: oklch(0.78 0.16 70);
}

.pp-lovable-layout .ppl-dropdown-link-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-lovable-layout .ppl-dropdown-icon {
  color: oklch(0.78 0.16 70);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 150ms;
}
.pp-lovable-layout .ppl-dropdown-link:hover .ppl-dropdown-icon {
  opacity: 1;
}

.pp-lovable-layout .ppl-dropdown-note {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.pp-lovable-layout .ppl-dropdown-view-all {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: oklch(0.78 0.16 70);
  transition: background-color 150ms;
}
.pp-lovable-layout .ppl-dropdown-view-all:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: oklch(0.78 0.16 70);
}

/* Action buttons */
.pp-lovable-layout .ppl-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.pp-lovable-layout .ppl-action-order-md {
  display: none;
  align-items: center;
  border-radius: 9999px;
  background-color: oklch(0.72 0.16 70);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.18 0.02 250);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: transform 150ms, filter 150ms;
}
.pp-lovable-layout .ppl-action-order-md:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
  color: oklch(0.18 0.02 250);
}

.pp-lovable-layout .ppl-action-icon {
  display: none;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 150ms, filter 150ms;
}
.pp-lovable-layout .ppl-action-icon:hover {
  transform: scale(1.05);
}

.pp-lovable-layout .ppl-action-email {
  background: #fff;
  color: oklch(0.18 0.02 250);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}
.pp-lovable-layout .ppl-action-email:hover {
  background-color: oklch(0.78 0.16 70);
  color: oklch(0.18 0.02 250);
}

.pp-lovable-layout .ppl-action-account {
  background-color: oklch(0.72 0.16 70);
  color: oklch(0.18 0.02 250);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}
.pp-lovable-layout .ppl-action-account:hover {
  filter: brightness(1.1);
  color: oklch(0.18 0.02 250);
}

.pp-lovable-layout .ppl-action-cart {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.15);
}
.pp-lovable-layout .ppl-action-cart:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pp-lovable-layout .ppl-action-discord {
  display: none;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: linear-gradient(to right, oklch(0.55 0.18 265), oklch(0.62 0.18 275));
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 10px 15px -3px oklch(0.55 0.18 265 / 0.3);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 150ms, box-shadow 150ms;
}
.pp-lovable-layout .ppl-action-discord:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 25px -5px oklch(0.55 0.18 265 / 0.3);
  color: #fff;
}

/* Hamburger */
.pp-lovable-layout .ppl-hamburger {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.15);
  border: none;
  flex-shrink: 0;
}

/* Mobile drawer */
.pp-lovable-layout .ppl-mobile-drawer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: oklch(0.18 0.02 250);
}

.pp-lovable-layout .ppl-mobile-nav-wrap {
  margin: 0 auto;
  max-width: 1400px;
  padding: 12px 16px;
}

.pp-lovable-layout .ppl-mobile-nav-list {
  display: flex;
  flex-direction: column;
}

.pp-lovable-layout .ppl-mobile-nav-link,
.pp-lovable-layout .ppl-mobile-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  transition: background-color 150ms, color 150ms;
}
.pp-lovable-layout .ppl-mobile-nav-link:hover,
.pp-lovable-layout .ppl-mobile-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: oklch(0.78 0.16 70);
}

.pp-lovable-layout .ppl-mobile-nav-icon {
  color: oklch(0.78 0.16 70);
  flex-shrink: 0;
}

.pp-lovable-layout .ppl-mobile-badge {
  border-radius: 9999px;
  background: #dc2626;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.pp-lovable-layout .ppl-mobile-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 300ms;
}
.pp-lovable-layout .ppl-mobile-chevron.is-open {
  transform: rotate(180deg);
}

.pp-lovable-layout .ppl-mobile-submenu {
  margin-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 12px;
  margin-bottom: 4px;
  display: none;
}
.pp-lovable-layout .ppl-mobile-submenu.is-open {
  display: block;
}

.pp-lovable-layout .ppl-mobile-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 150ms, color 150ms;
}
.pp-lovable-layout .ppl-mobile-submenu-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: oklch(0.78 0.16 70);
}
.pp-lovable-layout .ppl-mobile-submenu-link--header {
  font-weight: 700;
  color: oklch(0.78 0.16 70);
}

.pp-lovable-layout .ppl-mobile-submenu-note {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.pp-lovable-layout .ppl-mobile-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: linear-gradient(to right, oklch(0.55 0.18 265), oklch(0.62 0.18 275));
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 8px;
}

/* Utility */
.pp-lovable-layout .ppl-hidden {
  display: none !important;
}

/* Page bar */
.pp-lovable-layout .ppl-page-bar {
  width: 100%;
  background: #000;
  color: #fff;
}
.pp-lovable-layout .ppl-page-bar-inner {
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px;
}
.pp-lovable-layout .ppl-page-bar-name {
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pp-lovable-layout .ppl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
}
.pp-lovable-layout .ppl-breadcrumb-home {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: color 150ms;
}
.pp-lovable-layout .ppl-breadcrumb-home:hover {
  color: oklch(0.78 0.16 70);
}
.pp-lovable-layout .ppl-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ================================================================
   FOOTER
   ================================================================ */
.pp-lovable-layout .ppl-footer {
  position: relative;
  margin-top: 96px;           /* 6rem × 16px */
  overflow: hidden;
  background-color: oklch(0.18 0.02 250);
  color: #fff;
}

.pp-lovable-layout .ppl-footer-texture {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 22px 22px;
}

.pp-lovable-layout .ppl-footer-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.4));
}

.pp-lovable-layout .ppl-footer-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  padding: 24px 16px 16px;
}

/* Discord CTA */
.pp-lovable-layout .ppl-discord-cta {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    to right,
    oklch(0.72 0.16 70 / 0.15),
    rgba(255, 255, 255, 0.05),
    oklch(0.55 0.18 265 / 0.15)
  );
  padding: 16px 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pp-lovable-layout .ppl-discord-cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pp-lovable-layout .ppl-discord-icon-wrap {
  display: none;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(to bottom right, oklch(0.55 0.18 265), oklch(0.62 0.18 275));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-lovable-layout .ppl-discord-cta-text {
  min-width: 0;
}

.pp-lovable-layout .ppl-discord-cta-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: oklch(0.78 0.16 70);
  display: block;
}

.pp-lovable-layout .ppl-discord-cta-sub {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.pp-lovable-layout .ppl-discord-cta-btn {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: linear-gradient(to right, oklch(0.55 0.18 265), oklch(0.62 0.18 275));
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 150ms, filter 150ms;
}
.pp-lovable-layout .ppl-discord-cta-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
  color: #fff;
}

/* Footer grid */
.pp-lovable-layout .ppl-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.pp-lovable-layout .ppl-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pp-lovable-layout .ppl-footer-logo {
  height: 48px;
  width: auto;
  max-width: none;            /* override OceanWP img { max-width: 100% } */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 500ms ease-out;
  transform-origin: center;
  display: block;
}
.pp-lovable-layout .ppl-footer-logo-link:hover .ppl-footer-logo {
  transform: scale(1.1) rotate(-6deg);
}

.pp-lovable-layout .ppl-footer-tagline {
  margin-top: 16px;
  max-width: 288px;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer link columns */
.pp-lovable-layout .ppl-footer-col-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: oklch(0.78 0.16 70);
}

.pp-lovable-layout .ppl-footer-col-title-line {
  display: inline-block;
  margin-left: 8px;
  height: 2px;
  width: 24px;
  background-color: oklch(0.72 0.16 70 / 0.6);
  flex-shrink: 0;
}

.pp-lovable-layout .ppl-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-lovable-layout .ppl-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 150ms;
}
.pp-lovable-layout .ppl-footer-link:hover {
  color: oklch(0.78 0.16 70);
}

.pp-lovable-layout .ppl-footer-link-text {
  border-bottom: 1px solid transparent;
  transition: border-color 150ms;
}
.pp-lovable-layout .ppl-footer-link:hover .ppl-footer-link-text {
  border-bottom-color: oklch(0.72 0.16 70 / 0.5);
}

.pp-lovable-layout .ppl-footer-link-arrow {
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 200ms, opacity 200ms;
  flex-shrink: 0;
}
.pp-lovable-layout .ppl-footer-link:hover .ppl-footer-link-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* Footer bottom */
.pp-lovable-layout .ppl-footer-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.pp-lovable-layout .ppl-footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   Responsive breakpoints
   ================================================================ */
@media (min-width: 640px) {
  .pp-lovable-layout .ppl-discord-icon-wrap {
    display: flex;
  }
  .pp-lovable-layout .ppl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .pp-lovable-layout .ppl-action-icon {
    display: inline-flex;
  }
  .pp-lovable-layout .ppl-action-discord {
    display: inline-flex;
  }
  .pp-lovable-layout .ppl-footer-inner {
    padding: 28px 24px 20px;
  }
  .pp-lovable-layout .ppl-discord-cta {
    padding: 16px 24px;
  }
  .pp-lovable-layout .ppl-page-bar-inner {
    padding: 8px 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pp-lovable-layout .ppl-action-order-md {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .pp-lovable-layout .ppl-desktop-nav {
    display: flex;
  }
  .pp-lovable-layout .ppl-hamburger {
    display: none;
  }
  .pp-lovable-layout .ppl-logo {
    height: 54px;              /* 3.4rem × 16px */
  }
  .pp-lovable-layout .ppl-header-inner {
    padding: 12px 24px;
  }
  .pp-lovable-layout .ppl-footer-grid {
    grid-template-columns: 3fr 3fr 3fr 3fr;
  }
}

/* ================================================================
   Submit-card intro block  (.pp-submit-card-intro)
   Scoped entirely to this wrapper — no global selectors.
   ================================================================ */
.pp-submit-card-intro {
  width: 100%;
  max-width: 100%;
  padding: 28px 24px 12px;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.pp-submit-card-intro *,
.pp-submit-card-intro *::before,
.pp-submit-card-intro *::after {
  box-sizing: inherit;
}

/* ── top label ──────────────────────────────────────────────── */
.pp-sci-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pp-sci-label-line {
  flex: 1;
  height: 1px;
  max-width: 200px;
}
.pp-sci-label-line--left  { background: linear-gradient(to right, transparent, #e07b30); }
.pp-sci-label-line--right { background: linear-gradient(to left,  transparent, #e07b30); }
.pp-sci-label-inner {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e07b30;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── card shell ─────────────────────────────────────────────── */
.pp-sci-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: stretch;
  padding: 30px 28px 30px 30px;
  gap: 0;
  overflow: hidden;
}

/* ── left column ────────────────────────────────────────────── */
.pp-sci-left {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* icon column — sits to the left of title/content */
.pp-sci-icon-col {
  flex-shrink: 0;
  padding-top: 4px;
}

/* text column */
.pp-sci-content {
  flex: 1;
  min-width: 0;
}

.pp-sci-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #fff7ef;
  border-radius: 14px;
  position: relative;
  color: #e07b30;
}
.pp-sci-icon-sparkle {
  position: absolute;
  top: -5px;
  right: -7px;
  color: #e07b30;
  line-height: 1;
}

.pp-sci-title {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #1a1a1a !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  font-family: inherit !important;
  border: none !important;
  background: none !important;
}

.pp-sci-question {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  line-height: 1.55 !important;
}

.pp-sci-community {
  color: #e07b30 !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}
.pp-sci-community:hover {
  color: #c96820 !important;
}

.pp-sci-body {
  font-size: 13.5px !important;
  color: #5a5a5a !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── vertical divider ───────────────────────────────────────── */
.pp-sci-divider {
  width: 1px;
  background: #e07b30;
  opacity: 0.3;
  margin: 0 30px;
  flex-shrink: 0;
  align-self: stretch;
}

/* ── right column ───────────────────────────────────────────── */
.pp-sci-right {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  position: relative;
  overflow: hidden;
}

.pp-sci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.pp-sci-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff7ef;
  border: 1.5px solid #f0d4b0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e07b30;
}

.pp-sci-item-text strong {
  display: block;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  font-family: inherit !important;
}
.pp-sci-item-text span {
  font-size: 12.5px !important;
  color: #666 !important;
  line-height: 1.45 !important;
  display: block;
}

/* dotted orange pattern — far right */
.pp-sci-dots {
  position: absolute;
  right: -16px;
  top: -10px;
  bottom: -10px;
  width: 70px;
  background-image: radial-gradient(circle, #e07b30 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* ── tablet ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pp-sci-right {
    flex: 0 0 200px;
  }
  .pp-sci-title {
    font-size: 23px !important;
  }
}

/* ── mobile (stack) ─────────────────────────────────────────── */
@media (max-width: 680px) {
  .pp-submit-card-intro {
    padding: 20px 16px 8px;
  }
  .pp-sci-card {
    flex-direction: column;
    padding: 24px 20px;
  }
  .pp-sci-left {
    padding-right: 0;
    gap: 14px;
  }
  .pp-sci-icon-col {
    padding-top: 2px;
  }
  .pp-sci-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0;
    align-self: auto;
  }
  .pp-sci-right {
    flex: unset;
    width: 100%;
    gap: 20px;
  }
  .pp-sci-dots {
    display: none;
  }
  .pp-sci-title {
    font-size: 21px !important;
  }
}

/* ================================================================
   Reusable page title component  (.pp-page-title-wrap)
   Usage: [pp_page_title title="..."]
   Scoped to these classes only — no global heading impact.
   ================================================================ */
.pp-page-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px 24px 22px;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.pp-page-title-line {
  flex: 1;
  height: 1.5px;
  max-width: 260px;
  background: linear-gradient(to var(--_dir, right), transparent 0%, #e07b30 100%);
  border: none;
}
.pp-page-title-line:first-child { --_dir: right; }
.pp-page-title-line:last-child  { --_dir: left;  }

.pp-page-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  font-size: 31px !important;
  font-weight: 900 !important;
  color: #e07b30 !important;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.1 !important;
  font-family: inherit !important;
  text-align: center;
  white-space: nowrap;
}

.pp-page-title-icon {
  font-style: normal;
  font-size: 0.6em;
  line-height: 1;
  color: #e07b30;
  flex-shrink: 0;
  display: inline-block;
  transform: translateY(-1px);
}

/* ── tablet ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pp-page-title {
    font-size: 25px !important;
    letter-spacing: 2px;
  }
}

/* ── mobile ─────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .pp-page-title-wrap {
    gap: 12px;
    padding: 22px 16px 16px;
  }
  .pp-page-title {
    font-size: 20px !important;
    letter-spacing: 1.5px;
    white-space: normal;
    text-align: center;
  }
  .pp-page-title-line {
    max-width: 60px;
  }
}
