*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a0a0a;
  color: #f1f5f9;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  margin: 0 0 .75em;
}
p {
  margin: 0 0 1em;
  color: #94a3b8;
}
a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: #ec4899;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-fluid {
  max-width: 100%;
  padding: 0 24px;
}
.poe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}
.poe-btn--primary {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
}
.poe-btn--primary:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: #fff;
}
.poe-btn--ghost {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.poe-btn--ghost:hover {
  border-color: #8b5cf6;
  color: #a78bfa;
}
.poe-btn--outline {
  background: transparent;
  color: #a78bfa;
  border: 1px solid #8b5cf6;
}
.poe-btn--outline:hover {
  background: #8b5cf6;
  color: #fff;
}
.poe-btn--success {
  background: #059669;
  color: #fff;
}
.poe-btn--success:hover {
  background: #047857;
}
.poe-btn--success:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.poe-btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.poe-btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}
.poe-btn--full {
  width: 100%;
  justify-content: center;
}
.poe-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease;
}
.poe-header.poe-header--solid {
  background: #0a0a0a;
}
.poe-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.poe-header__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.5px;
  text-decoration: none;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.poe-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.poe-header__nav .poe-nav-link {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}
.poe-header__nav .poe-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.poe-header__nav .poe-nav-link:hover,
.poe-header__nav .poe-nav-link.active {
  color: #f1f5f9;
}
.poe-header__nav .poe-nav-link:hover::after,
.poe-header__nav .poe-nav-link.active::after {
  transform: scaleX(1);
}
.poe-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.poe-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.poe-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.poe-header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.poe-header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.poe-header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.poe-section {
  padding: 96px 0;
}
.poe-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-bottom: 12px;
}
.poe-section-title {
  font-size: clamp(32px, 5vw, 52px);
  color: #f1f5f9;
  margin-bottom: 16px;
}
.poe-section-sub {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 48px;
}
.poe-section-sub a {
  color: #a78bfa;
}
.poe-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.poe-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 20% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.poe-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 96px;
  position: relative;
  z-index: 1;
}
.poe-hero__text {
  max-width: 540px;
}
.poe-hero__title {
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1;
  margin: 20px 0 24px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.poe-hero__tagline {
  font-size: 20px;
  color: #94a3b8;
  margin-bottom: 12px;
  font-style: italic;
}
.poe-hero__sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.8;
}
.poe-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.poe-hero__image {
  position: relative;
}
.poe-hero__image::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 16px;
  z-index: -1;
  opacity: .5;
  filter: blur(20px);
}
.poe-hero__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 0.8;
  display: block;
}
.poe-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.poe-hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, #8b5cf6, transparent);
  margin: 0 auto;
  animation: scrollHint 2s ease infinite;
}
.poe-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid;
}
.poe-status-badge--open {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.08);
}
.poe-status-badge--open .poe-status-dot {
  background: #4ade80;
}
.poe-status-badge--closed {
  color: #64748b;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.poe-status-badge--closed .poe-status-dot {
  background: #64748b;
}
.poe-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.poe-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.poe-about__text h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #f1f5f9;
  margin-bottom: 20px;
}
.poe-about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.poe-feature {
  display: flex;
  gap: 16px;
}
.poe-feature__icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.poe-feature strong {
  display: block;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.poe-feature p {
  margin: 0;
  font-size: 14px;
}
.poe-packages {
  background: #111111;
}
.poe-packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.poe-pkg-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.poe-pkg-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-4px);
}
.poe-pkg-card--highlight {
  border-color: #8b5cf6;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.15) 0%, #1a1a1a 60%);
}
.poe-pkg-card--highlight .poe-pkg-card__price .poe-price-value {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.poe-pkg-card__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.poe-pkg-card__icon {
  font-size: 32px;
}
.poe-pkg-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.poe-pkg-card__desc {
  font-size: 13px;
  color: #64748b;
  flex: 1;
  margin: 0;
}
.poe-pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0;
}
.poe-price-currency {
  font-size: 16px;
  color: #64748b;
}
.poe-price-value {
  font-size: 38px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
}
.poe-bundles__title {
  font-size: 22px;
  color: #f1f5f9;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}
.poe-bundles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.poe-bundle-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.25s ease;
}
.poe-bundle-card:hover {
  border-color: #ec4899;
}
.poe-bundle-card--highlight {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}
.poe-bundle-card__name {
  font-weight: 700;
  font-size: 14px;
  color: #f1f5f9;
  flex: 1;
}
.poe-bundle-card__desc {
  font-size: 12px;
  color: #64748b;
}
.poe-bundle-card__price {
  font-weight: 800;
  color: #a78bfa;
  white-space: nowrap;
}
.poe-bundle-card__cta {
  color: #8b5cf6;
  font-weight: 700;
  font-size: 18px;
}
.poe-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
}
.poe-step__num {
  font-size: 48px;
  font-weight: 900;
  font-family: 'Playfair Display', Georgia, serif;
  color: rgba(139, 92, 246, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.poe-step h4 {
  color: #f1f5f9;
  font-size: 16px;
  margin-bottom: 8px;
}
.poe-step p {
  font-size: 14px;
  margin: 0;
}
@keyframes gallery-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.poe-gallery {
  padding: 64px 0;
  overflow: hidden;
}
.poe-gallery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.poe-gallery__header .poe-section-title {
  margin: 0;
}
.poe-gallery__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.25s ease;
}
.poe-gallery__ig-link svg {
  flex-shrink: 0;
}
.poe-gallery__ig-link:hover {
  color: #fff;
}
.poe-gallery__marquee {
  overflow: hidden;
  margin-bottom: 12px;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.poe-gallery__marquee:hover .poe-gallery__track {
  animation-play-state: paused;
}
.poe-gallery__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: gallery-marquee 28s linear infinite;
}
.poe-gallery__track--reverse {
  animation-duration: 24s;
  animation-direction: reverse;
}
.poe-gallery__item--marquee {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  width: 220px;
  height: 220px;
}
.poe-gallery__item--marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(0.85) saturate(0.9);
}
.poe-gallery__item--marquee:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.poe-pricing-block:not(:first-child) {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.poe-pricing-block__title {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
}
.poe-pricing-block__sub {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 32px;
}
.poe-individual__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.poe-ind-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.poe-ind-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-4px);
}
.poe-ind-card--highlight {
  border-color: #8b5cf6;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.12) 0%, #1a1a1a 55%);
}
.poe-ind-card__image {
  width: 100%;
  aspect-ratio: 1.33333333;
  overflow: hidden;
  flex-shrink: 0;
}
.poe-ind-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(0.9);
}
.poe-ind-card__image:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.poe-ind-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.poe-ind-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.poe-ind-card__desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  flex: 1;
  line-height: 1.6;
}
.poe-ind-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.poe-ind-card__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.poe-ind-card__price .poe-price-value {
  font-size: 26px;
}
.poe-contact__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.poe-contact__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.poe-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 24px;
  background: #111111;
}
.poe-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.poe-footer__brand .poe-footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.poe-footer__brand p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #64748b;
}
.poe-footer__links {
  display: flex;
  gap: 24px;
}
.poe-footer__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 14px;
}
.poe-footer__links a:hover {
  color: #a78bfa;
}
.poe-footer__copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
.poe-footer__copy p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}
.poe-client-page {
  min-height: 100vh;
  padding-top: 64px;
  background: #0a0a0a;
}
.poe-login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(36vh);
  padding: 40px 24px;
}
.poe-login-box {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
}
.poe-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.poe-login-logo .poe-login-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}
.poe-login-logo h2 {
  font-size: 26px;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.poe-login-logo p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}
.poe-field {
  margin-bottom: 20px;
}
.poe-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
}
.poe-field input[type="text"],
.poe-field input[type="email"],
.poe-field input[type="password"] {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color 0.25s ease;
}
.poe-field input[type="text"]:focus,
.poe-field input[type="email"]:focus,
.poe-field input[type="password"]:focus {
  outline: none;
  border-color: #8b5cf6;
}
.poe-field input[type="text"]::placeholder,
.poe-field input[type="email"]::placeholder,
.poe-field input[type="password"]::placeholder {
  color: #64748b;
}
.poe-field--check label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.poe-field--check label input[type="checkbox"] {
  margin: 0;
}
.poe-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.poe-alert--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.poe-alert--success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #86efac;
}
.poe-login-forgot {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
}
.poe-login-forgot a {
  color: #a78bfa;
}
.poe-client-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}
.poe-client-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.poe-client-header h2 {
  color: #f1f5f9;
  margin: 0 0 6px;
}
.poe-client-header p {
  color: #94a3b8;
  margin: 0;
}
.poe-empty-state {
  text-align: center;
  padding: 80px 24px;
}
.poe-empty-state .poe-empty-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 16px;
}
.poe-empty-state h3 {
  color: #f1f5f9;
  font-size: 22px;
  margin-bottom: 8px;
}
.poe-empty-state p {
  color: #64748b;
}
.poe-orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.poe-order-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.poe-order-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-2px);
}
.poe-order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.poe-order-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.poe-order-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.poe-order-card__meta span {
  font-size: 13px;
  color: #64748b;
}
.poe-order-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.poe-order-badge.poe-status-badge--pending {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}
.poe-order-badge.poe-status-badge--in_progress {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}
.poe-order-badge.poe-status-badge--sketch {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}
.poe-order-badge.poe-status-badge--review {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}
.poe-order-badge.poe-status-badge--delivered {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}
.poe-order-badge.poe-status-badge--completed {
  background: rgba(5, 150, 105, 0.15);
  color: #34d399;
}
.poe-order-badge.poe-status-badge--cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}
.poe-unread-dot {
  background: #ec4899;
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  min-width: 20px;
  text-align: center;
}
.poe-delivery-badge {
  font-size: 12px;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.poe-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.poe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.poe-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 90%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.poe-modal__close {
  position: sticky;
  top: 16px;
  margin: 16px 16px 0 auto;
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.25s ease;
}
.poe-modal__close:hover {
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.12);
}
.poe-modal__body {
  padding: 0 28px 28px;
}
.poe-spinner {
  text-align: center;
  padding: 60px;
  color: #64748b;
  font-size: 14px;
}
.poe-order-detail__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.poe-order-detail__head h2 {
  color: #f1f5f9;
  font-size: 24px;
  margin: 0;
  flex: 1;
}
.poe-order-detail__info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.poe-info-item--full {
  grid-column: 1 / -1;
}
.poe-info-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.poe-info-value {
  font-size: 14px;
  color: #f1f5f9;
}
.poe-receipt-banner {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.poe-receipt-banner p {
  color: #6ee7b7;
  margin-bottom: 12px;
}
.poe-receipt-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
  cursor: pointer;
  margin-bottom: 16px;
}
.poe-receipt-label input {
  margin-top: 2px;
}
.poe-receipt-confirmed {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #34d399;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: 600;
}
.poe-history {
  margin-bottom: 32px;
}
.poe-history__title {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.poe-no-updates {
  color: #64748b;
  font-size: 14px;
  font-style: italic;
}
.poe-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.poe-timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.poe-timeline-item--own {
  flex-direction: row-reverse;
}
.poe-timeline-item--own .poe-timeline-bubble {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.2);
  border-radius: 8px 8px 0 8px;
}
.poe-timeline-item--own .poe-timeline-meta {
  flex-direction: row-reverse;
}
.poe-timeline-item--own .poe-tl-msg {
  text-align: right;
}
.poe-timeline-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.poe-timeline-bubble {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 8px 8px 8px;
  padding: 14px 16px;
}
.poe-timeline-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.poe-tl-label {
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.poe-tl-date {
  font-size: 11px;
  color: #64748b;
}
.poe-tl-msg {
  font-size: 14px;
  color: #94a3b8;
  white-space: pre-wrap;
  margin: 0;
}
.poe-tl-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.poe-tl-file {
  display: block;
}
.poe-tl-file--image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.poe-tl-file--image img {
  display: block;
  max-height: 160px;
  border-radius: 8px;
}
.poe-tl-file--image .poe-download-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 4px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.poe-tl-file--image:hover .poe-download-badge {
  opacity: 1;
}
.poe-tl-file--generic {
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
}
.poe-tl-file--generic:hover {
  color: #a78bfa;
  border-color: #8b5cf6;
}
.poe-message-form {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
.poe-message-form h3 {
  font-size: 16px;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.poe-message-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  resize: vertical;
  transition: border-color 0.25s ease;
}
.poe-message-form textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}
.poe-message-form textarea::placeholder {
  color: #64748b;
}
.poe-message-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.poe-msg-status {
  font-size: 13px;
  color: #64748b;
}
.poe-payment-block {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 16px;
}
.poe-payment-block--modal {
  padding: 24px;
}
.poe-payment-block--modal h3 {
  color: #f1f5f9;
  margin: 0 0 12px;
  font-size: 18px;
}
.poe-payment-notice {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 14px;
}
.poe-payment-notice--waiting {
  color: #64748b;
  font-style: italic;
  margin: 0;
}
.poe-btn--pay {
  font-size: 15px;
  padding: 14px;
  letter-spacing: .3px;
}
.poe-dm-notice {
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.6;
}
.poe-dm-notice a {
  color: #a78bfa;
}
.poe-dm-notice--box {
  background: rgba(236, 72, 153, 0.06);
  border: 1px solid rgba(236, 72, 153, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-top: 16px;
}
.poe-dm-notice--box strong {
  color: #f9a8d4;
}
.poe-dm-notice--box a {
  color: #a78bfa;
}
.poe-password-section {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
.poe-password-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.poe-password-toggle:hover {
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.12);
}
.poe-password-toggle .poe-pwd-arrow {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.poe-password-form {
  max-width: 420px;
  margin-top: 20px;
}
.poe-password-form .poe-field {
  margin-bottom: 16px;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}
@keyframes scrollHint {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  80% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
@media (max-width: 992px) {
  .poe-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .poe-hero__image {
    display: none;
  }
  .poe-about__grid {
    grid-template-columns: 1fr;
  }
  .poe-header__nav {
    display: none;
  }
  .poe-header__toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .poe-section {
    padding: 64px 0;
  }
  .poe-packages__grid {
    grid-template-columns: 1fr 1fr;
  }
  .poe-individual__grid {
    grid-template-columns: 1fr 1fr;
  }
  .poe-gallery__item--marquee {
    width: 160px;
    height: 160px;
  }
  .poe-gallery__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .poe-orders-grid {
    grid-template-columns: 1fr;
  }
  .poe-modal__box {
    width: 96%;
    max-height: 94vh;
  }
  .poe-modal__body {
    padding: 0 16px 20px;
  }
  .poe-client-header {
    flex-direction: column;
    gap: 16px;
  }
  .poe-footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .poe-bundles__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .poe-packages__grid {
    grid-template-columns: 1fr;
  }
  .poe-individual__grid {
    grid-template-columns: 1fr;
  }
  .poe-gallery__item--marquee {
    width: 130px;
    height: 130px;
  }
  .poe-bundles__grid {
    grid-template-columns: 1fr;
  }
  .poe-process__steps {
    grid-template-columns: 1fr;
  }
  .poe-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .poe-login-box {
    padding: 28px 20px;
  }
}
.front-page .poe-header {
  background: transparent;
}
