/**
 * StreetMBA public marketing website
 * Isolated from tenant dashboard CSS.
 */

:root {
  --pw-ink: #1e293b;
  --pw-ink-soft: #475569;
  --pw-muted: #64748b;
  --pw-line: #e2e8f0;
  --pw-line-strong: #cbd5e1;
  --pw-bg: #f4f6f8;
  --pw-bg-warm: #eef2f6;
  --pw-surface: #fff;
  --pw-accent: #1e293b;
  --pw-accent-2: #64748b;
  --pw-accent-soft: #eef2f6;
  --pw-gold: #1e293b;
  --pw-danger: #b42318;
  --pw-ok: #166534;
  --pw-ok-bg: #ecfdf5;
  --pw-warn: #b54708;
  --pw-1: 8px;
  --pw-2: 16px;
  --pw-3: 24px;
  --pw-4: 32px;
  --pw-5: 40px;
  --pw-6: 48px;
  --pw-radius: 16px;
  --pw-radius-sm: 7px;
  --pw-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  --pw-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --pw-header: 68px;
  --pw-max: 1120px;
  --pw-gutter: 40px;
  --pw-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pw-display: "Space Grotesk", Manrope, -apple-system, BlinkMacSystemFont, sans-serif;
  --pw-serif: "Space Grotesk", Manrope, sans-serif;
  --pw-space: clamp(2.75rem, 4vw, 4.25rem);
  --pw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--pw-header) + 12px);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.pw-body {
  margin: 0;
  font-family: var(--pw-sans);
  color: var(--pw-ink);
  background: var(--pw-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.pw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pw-skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--pw-ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.pw-skip:focus { top: 12px; }

.pw-container {
  width: min(var(--pw-max), calc(100% - (var(--pw-gutter) * 2)));
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
}
.pw-narrow { width: min(680px, calc(100% - (var(--pw-gutter) * 2))); }

.pw-announce {
  background: var(--pw-ink);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.pw-announce a { color: #fff; }

.pw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--pw-header);
  background: #fff;
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--pw-line);
  transition: background 0.25s var(--pw-ease), border-color 0.25s var(--pw-ease), box-shadow 0.25s var(--pw-ease);
}
.pw-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--pw-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.pw-header-inner {
  width: min(var(--pw-max), calc(100% - (var(--pw-gutter) * 2)));
  margin: 0 auto;
  height: var(--pw-header);
  display: flex;
  align-items: center;
  gap: var(--pw-3);
  max-width: 100%;
  min-width: 0;
}
.pw-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.pw-logo-img {
  width: auto;
  height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.pw-logo-img-footer { height: 64px; }
.pw-logo-text { display: none; }

.pw-nav-desktop { flex: 1; display: flex; justify-content: center; }
.pw-nav-center {
  list-style: none;
  margin: 0;
  padding: 0.28rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  background: rgba(244, 246, 248, 0.95);
  border: 1px solid var(--pw-line);
  border-radius: 999px;
}
.pw-nav-center > li > a,
.pw-nav-dd-btn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.48rem 0.82rem;
  text-decoration: none;
  color: var(--pw-ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  border-radius: 999px;
}
.pw-nav-center > li > a:hover,
.pw-nav-dd-btn:hover,
.pw-nav-center > li > a:focus-visible,
.pw-nav-dd-btn:focus-visible {
  color: var(--pw-ink);
  background: #fff;
  outline: none;
}
.pw-nav-center > li > a[aria-current="page"] {
  color: #fff;
  background: var(--pw-ink);
  font-weight: 600;
}

.pw-nav-dd { position: relative; }
.pw-nav-dd-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 228px;
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 14px;
  box-shadow: var(--pw-shadow);
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  display: none;
}
.pw-nav-dd.is-open .pw-nav-dd-menu { display: block; }
.pw-nav-dd-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  border-radius: 8px;
  color: var(--pw-ink);
  font-size: 0.92rem;
}
.pw-nav-dd-menu a:hover,
.pw-nav-dd-menu a:focus-visible { background: var(--pw-bg-warm); outline: none; }

.pw-nav-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.52rem 1.05rem;
  border-radius: var(--pw-radius-sm);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
  line-height: 1.2;
  gap: 0.4rem;
  transition: transform 0.25s var(--pw-ease), background 0.25s var(--pw-ease), border-color 0.25s var(--pw-ease), color 0.25s var(--pw-ease), box-shadow 0.25s var(--pw-ease);
}
.pw-btn:hover { transform: translateY(-1px); }
.pw-btn:active { transform: translateY(0); }
.pw-btn:focus-visible {
  outline: 2px solid var(--pw-ink);
  outline-offset: 2px;
}
.pw-btn-primary {
  background: var(--pw-ink);
  color: #fff;
  border-color: var(--pw-ink);
  box-shadow: inset 0 1px rgba(255,255,255,0.08), 0 8px 20px rgba(15, 23, 42, 0.12);
}
.pw-btn-primary:hover { background: #2d3238; border-color: #2d3238; }
.pw-btn-secondary {
  background: rgba(255,255,255,0.65);
  color: var(--pw-ink);
  border-color: rgba(30, 41, 59, 0.16);
  backdrop-filter: blur(8px);
}
.pw-btn-secondary:hover { background: #fff; border-color: rgba(30, 41, 59, 0.35); }
.pw-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--pw-ink-soft);
  border-color: transparent;
}
.pw-btn-ghost:hover { color: var(--pw-ink); background: rgba(30, 41, 59, 0.05); }
.pw-btn-on-dark,
.pw-hero .pw-btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
}
.pw-btn-on-dark:hover,
.pw-hero .pw-btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.45); }
.pw-btn-lg { min-height: 44px; padding: 0.62rem 1.2rem; font-size: 0.875rem; }
.pw-btn-block { width: 100%; }

.pw-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}
.pw-menu-btn:focus-visible { outline: 2px solid var(--pw-accent-2); }
.pw-menu-bars { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.pw-menu-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s var(--pw-ease), opacity 0.2s var(--pw-ease);
}

.pw-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 20, 0.5);
  z-index: 80;
  opacity: 0;
  transition: opacity 0.28s var(--pw-ease);
}
.pw-drawer-backdrop.is-open { opacity: 1; }
.pw-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100%;
  background: var(--pw-surface);
  z-index: 90;
  padding: 1.1rem 1.35rem 2rem;
  overflow: auto;
  box-shadow: var(--pw-shadow-lg);
  transform: translateX(100%);
  transition: transform 0.28s var(--pw-ease);
}
.pw-drawer.is-open { transform: translateX(0); }
.pw-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.pw-drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--pw-bg);
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
}
.pw-drawer-nav { list-style: none; margin: 0; padding: 0; }
.pw-drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  border-bottom: 1px solid var(--pw-line);
  font-weight: 500;
}
.pw-drawer-label {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pw-muted);
  font-weight: 600;
}
.pw-drawer-cta { display: grid; gap: 0.6rem; margin-top: 1.5rem; }

body.pw-home .pw-header,
body.pw-contact-page .pw-header {
  position: sticky;
}
body.pw-home .pw-header:not(.is-scrolled),
body.pw-contact-page .pw-header:not(.is-scrolled) {
  border-bottom-color: transparent;
  box-shadow: none;
}
body.pw-contact-page {
  background: #fff;
}

.pw-hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  padding: 2.25rem 0 2.15rem;
  color: var(--pw-ink);
  overflow: visible;
  background: #fff;
}
.pw-hero-grid { align-items: center; }
.pw-hero .pw-eyebrow { color: var(--pw-muted); }
.pw-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--pw-display);
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 14ch;
  text-wrap: balance;
  color: var(--pw-ink);
}
.pw-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.1rem);
  line-height: 1.5;
  font-weight: 600;
  color: var(--pw-ink-soft);
  max-width: 42ch;
}
.pw-hero .pw-lead { color: var(--pw-ink-soft); font-weight: 600; }
.pw-hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pw-center-cta { justify-content: center; }
.pw-hero-proof {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--pw-ink);
  font-size: 0.78rem;
  font-weight: 700;
}
.pw-hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.pw-hero-proof .pw-icon { width: 14px; height: 14px; color: var(--pw-ink); }
.pw-hero-grid,
.pw-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--pw-6);
  align-items: center;
}
.pw-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pw-muted);
}
.pw-eyebrow-on-dark { color: rgba(255, 255, 255, 0.65); }
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.12; color: inherit; }
.pw-hero .pw-btn-primary {
  background: var(--pw-ink);
  color: #fff;
  border-color: var(--pw-ink);
}
.pw-hero .pw-btn-primary:hover { background: #2d3238; }
.pw-hero-visual {
  min-height: 0;
  position: relative;
  z-index: 5;
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 20px;
  padding: 0.85rem 0.85rem 1rem;
  max-width: 100%;
  min-width: 0;
}
.pw-hero-visual .pw-frame {
  transform: none;
  margin-bottom: 0;
  box-shadow: none;
}

.pw-section {
  padding: 2.5rem 0 2.15rem;
  scroll-margin-top: calc(var(--pw-header) + 12px);
}
.pw-section + .pw-section {
  padding-top: 1.85rem;
}
.pw-section-strip { padding: 1.1rem 0 0.35rem; background: var(--pw-bg); }
.pw-section-strip + .pw-section {
  padding-top: 1.75rem;
}
.pw-section-photo + .pw-section-surface,
.pw-section-surface + .pw-section-surface {
  padding-top: 0.35rem;
}
#showcase.pw-section + #pricing.pw-section,
#pricing.pw-section + #faq.pw-section {
  padding-top: 1.5rem;
}
.pw-section-muted { background: var(--pw-bg-warm); }
.pw-section-surface { background: #fff; }
.pw-section-dark {
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(14, 110, 102, 0.18), transparent 55%),
    #11151b;
  color: #e8eaed;
}
.pw-section-dark h2 { color: #fff; }
.pw-section-dark .pw-section-desc { color: #b7c0ca; }
.pw-section-head {
  max-width: 40rem;
  margin: 0 auto 1.65rem;
  text-align: center;
}
.pw-section-head-left { margin-left: 0; margin-right: 0; max-width: 42rem; text-align: left; }
.pw-section-head-left .pw-section-desc { margin-left: 0; }
.pw-section-head h2,
.pw-page-hero h1,
.pw-cta-band h2 {
  font-family: var(--pw-display);
  font-weight: 700;
}
.pw-section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--pw-ink);
}
.pw-section-desc { margin: 0 auto; color: var(--pw-ink-soft); font-size: 1.05rem; line-height: 1.65; max-width: 40rem; }

.pw-pills-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}
.pw-pills-wrap::-webkit-scrollbar { display: none; }
.pw-pills {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  max-width: 52rem;
}
.pw-pills li {
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-sm);
  padding: 0 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: default;
  transition: transform 0.2s var(--pw-ease), box-shadow 0.2s var(--pw-ease);
  max-width: 100%;
}
.pw-pills .pw-icon { width: 15px; height: 15px; color: var(--pw-ink); }
@media (hover: hover) {
  .pw-pills li:hover {
    transform: translateY(-2px);
    box-shadow: var(--pw-shadow);
  }
}

.pw-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.pw-problem-card {
  padding: 1.5rem;
  box-shadow: var(--pw-shadow);
}
.pw-tile-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pw-muted);
}
.pw-card-industry h3 {
  font-family: var(--pw-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.pw-feature-grid,
.pw-industry-grid,
.pw-card-grid {
  display: grid;
  gap: 1.25rem;
}
.pw-card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pw-feature-grid { grid-template-columns: repeat(3, 1fr); }
.pw-industry-grid { grid-template-columns: repeat(4, 1fr); }
.pw-card {
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: var(--pw-3);
  box-shadow: none;
  transition: transform 0.2s var(--pw-ease), box-shadow 0.2s var(--pw-ease), border-color 0.2s var(--pw-ease);
}
.pw-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pw-shadow);
  border-color: rgba(18, 21, 26, 0.14);
}
.pw-card-index {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pw-gold);
  font-weight: 600;
}
.pw-card h3 { margin: 0 0 0.5rem; font-size: 1.12rem; letter-spacing: -0.03em; color: var(--pw-ink); }
.pw-card p { margin: 0; color: var(--pw-muted); font-size: 0.96rem; }
.pw-card-industry { min-height: 100%; }
.pw-card-photo { padding: 0; overflow: hidden; }
.pw-card-photo .pw-card-media {
  height: 148px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.pw-card-photo .pw-card-body { padding: 1.1rem 1.2rem 1.35rem; }
.pw-card-photo .pw-icon-well { margin-bottom: 0.7rem; }

.pw-capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pw-capability-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--pw-line);
  color: var(--pw-ink);
  border-radius: var(--pw-radius-sm);
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.2s var(--pw-ease), box-shadow 0.2s var(--pw-ease);
}
@media (hover: hover) {
  .pw-capability-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--pw-shadow);
  }
}
.pw-capability-list .pw-icon { width: 15px; height: 15px; }

.pw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  position: relative;
}
.pw-how-intro { margin-bottom: 1.5rem; align-items: center; }
.pw-how-photo {
  min-height: 280px;
  aspect-ratio: 4 / 3;
}
.pw-how-photo img { object-position: center 30%; }
.pw-steps li {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 18px;
  padding: 1.25rem 1.15rem 1.4rem;
  position: relative;
  min-height: 100%;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.pw-step-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.05rem;
}
.pw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--pw-ink);
  font-family: var(--pw-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1;
}
.pw-step-rail {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--pw-ink) 0%, var(--pw-line) 100%);
  border-radius: 99px;
}
.pw-steps .pw-icon-well {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pw-ink);
  color: #fff;
  border: 0;
  margin-bottom: 0.95rem;
}
.pw-steps h3 { margin: 0 0 0.45rem; font-size: 1.05rem; color: var(--pw-ink); }
.pw-steps p { margin: 0; color: var(--pw-muted); font-size: 0.92rem; }

.pw-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.pw-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--pw-ink-soft);
  font-size: 1.02rem;
}
.pw-checklist .pw-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--pw-ink);
}

.pw-frame {
  background: #161a20;
  border-radius: 16px;
  padding: 11px 10px 14px;
  box-shadow: var(--pw-shadow-lg);
  margin: 0;
  max-width: 100%;
  min-width: 0;
}
.pw-frame-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px 11px;
}
.pw-frame-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.pw-frame-chrome span:nth-child(1) { background: #ff5f57; }
.pw-frame-chrome span:nth-child(2) { background: #febc2e; }
.pw-frame-chrome span:nth-child(3) { background: #28c840; }
.pw-frame-url {
  width: auto !important;
  height: auto !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  padding: 0.18rem 0.6rem;
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.pw-frame-caption {
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}
.pw-hero .pw-frame-caption { color: rgba(255, 255, 255, 0.72); }
.pw-section-muted .pw-frame-caption { color: var(--pw-muted); }

.pw-dash-shot {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: #10151b;
  cursor: zoom-in;
}
.pw-dash-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.45s var(--pw-ease), opacity 0.25s ease;
}
.pw-dash-shot img[hidden] { display: none; }
.pw-dash-shot.is-explore img:not([hidden]) {
  transition: transform 0.12s linear;
}
.pw-dash-hotspots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.65rem 0 0;
}
.pw-dash-hotspot {
  border: 0;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
}
.pw-dash-hotspot.is-on,
.pw-dash-hotspot:hover,
.pw-dash-hotspot:focus-visible {
  background: #0f766e;
}
.pw-dash-hotspot-zoom {
  margin-left: auto;
  background: rgba(255,255,255,0.92);
  color: #14181c;
}
.pw-dash-lightbox {
  position: relative;
  border: 0;
  padding: 0;
  max-width: min(96vw, 1120px);
  width: min(96vw, 100%);
  background: #0b0e12;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.pw-dash-lightbox::backdrop {
  background: rgba(10, 12, 16, 0.72);
}
.pw-dash-lightbox img {
  display: block;
  width: 100%;
  height: auto;
}
.pw-dash-lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255,255,255,0.92);
  color: #14181c;
  cursor: pointer;
}
.pw-dash-lightbox form { margin: 0; }

.pw-dash {
  display: flex;
  background: #f3f5f8;
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
  text-align: left;
  color: var(--pw-ink);
}
.pw-dash-rail {
  width: 148px;
  flex-shrink: 0;
  background: #14181c;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255,255,255,0.55);
}
.pw-dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 6px 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pw-dash-nav { display: grid; gap: 2px; }
.pw-dash-nav-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.38rem 8px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-family: inherit;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.pw-dash-nav-item:hover,
.pw-dash-nav-item:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.08);
  outline: none;
}
.pw-dash-nav span.pw-dash-nav-item { cursor: default; }
.pw-dash-nav span.pw-dash-nav-item:hover { background: transparent; color: inherit; }
.pw-dash-nav-item.is-on {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.pw-dash-rail-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 6px 2px;
  font-size: 0.68rem;
}
.pw-dash-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e6e66, #b0894a);
}
.pw-dash-main { padding: 14px 14px 16px; flex: 1; min-width: 0; }
.pw-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 12px;
}
.pw-dash-kicker {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pw-muted);
}
.pw-dash-top strong { font-size: 0.98rem; letter-spacing: -0.03em; }
.pw-demo-badge {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #11151b;
  color: #d7ddd8;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.pw-dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.pw-dash-kpi {
  position: relative;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-sm);
  padding: 10px;
  transition: border-color 0.18s ease;
}
.pw-dash-kpi[data-pw-tip] { cursor: default; }
.pw-dash-kpi[data-pw-tip]:hover,
.pw-dash-kpi[data-pw-tip]:focus-visible {
  border-color: rgba(15, 118, 110, 0.4);
  outline: none;
}
.pw-dash-kpi[data-pw-tip]:hover::after,
.pw-dash-kpi[data-pw-tip]:focus-visible::after {
  content: attr(data-pw-tip);
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #12151a;
  color: #fff;
  font-size: 0.62rem;
  line-height: 1.3;
  padding: 5px 7px;
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}
.pw-dash-kpi span { display: block; font-size: 0.64rem; color: var(--pw-muted); }
.pw-dash-kpi strong { display: block; font-size: 1.12rem; letter-spacing: -0.04em; margin: 2px 0 2px; }
.pw-dash-kpi em { font-style: normal; font-size: 0.62rem; color: var(--pw-muted); }
.pw-dash-body {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8px;
}
.pw-dash-chart {
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: 12px;
  padding: 10px 10px 8px;
}
.pw-dash-chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--pw-muted);
  margin-bottom: 8px;
}
.pw-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 92px;
}
.pw-dash-bars span {
  flex: 1;
  height: 12%;
  background: linear-gradient(180deg, #0f766e, #1a1d21);
  border-radius: 3px 3px 2px 2px;
  min-height: 12%;
  transition: height 0.55s var(--pw-ease);
}
.pw-dash.is-inview .pw-dash-bars span { height: var(--pw-bar, 40%); }
.pw-dash-mark-img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
}
.pw-dash-table {
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: 12px;
  overflow: hidden;
}
.pw-dash-row {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.7fr;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.74rem;
  border-top: 1px solid var(--pw-line);
  align-items: center;
}
.pw-dash-row:first-child { border-top: 0; }
.pw-dash-row-head {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pw-muted);
  background: #f8f7f4;
}
.pw-dash-row span:nth-child(3) { color: var(--pw-muted); }
.pw-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  background: #eef0f3;
  color: var(--pw-ink-soft);
}
.pw-status.is-progress { background: #e8f4f2; color: #0e6e66; }
.pw-status.is-warn { background: #fef4e6; color: #9a6700; }
.pw-status.is-ok { background: #ecfdf3; color: #067647; }

.pw-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.pw-showcase-tabs button {
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--pw-line);
  background: var(--pw-surface);
  font-family: inherit;
  font-weight: 550;
  cursor: pointer;
  color: var(--pw-ink-soft);
}
.pw-showcase-tabs button[aria-selected="true"] {
  background: var(--pw-ink);
  color: #fff;
  border-color: var(--pw-ink);
}
.pw-showcase-tabs button:focus-visible { outline: 2px solid var(--pw-accent-2); outline-offset: 2px; }
.pw-showcase-stage {
  background: #11151b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--pw-shadow-lg);
}

.pw-pricing { max-width: 720px; }
.pw-pricing-panel {
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 2rem 1.6rem 1.8rem;
  text-align: center;
  box-shadow: var(--pw-shadow);
}
.pw-pricing-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pw-accent-2);
  font-weight: 600;
}
.pw-pricing-panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--pw-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pw-ink);
}
.pw-pricing-panel > p { color: var(--pw-muted); margin: 0 0 1.4rem; }

.pw-cta-band {
  position: relative;
  background: #0b0d11;
  color: #fff;
  text-align: center;
  padding: var(--pw-space) 0;
  overflow: hidden;
}
.pw-cta-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(14, 110, 102, 0.28), transparent 60%);
  pointer-events: none;
}
.pw-cta-band .pw-container { position: relative; }
.pw-cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 0.7rem;
}
.pw-cta-band p { color: #c5cbd3; margin: 0 0 1.5rem; }
.pw-cta-band .pw-btn-primary {
  background: #fff;
  color: var(--pw-ink);
}

.pw-faq-wrap { width: min(760px, calc(100% - 2.5rem)); }
.pw-faq details {
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 14px;
  padding: 0 1.1rem;
  margin-bottom: 0.55rem;
}
.pw-faq summary {
  cursor: pointer;
  font-weight: 600;
  min-height: 56px;
  display: flex;
  align-items: center;
  list-style: none;
  letter-spacing: -0.02em;
}
.pw-faq summary::-webkit-details-marker { display: none; }
.pw-faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--pw-muted);
  font-weight: 500;
  font-size: 1.2rem;
}
.pw-faq details[open] summary::after { content: "–"; }
.pw-faq summary:focus-visible { outline: 2px solid var(--pw-accent-2); outline-offset: 2px; }
.pw-faq p { margin: 0 0 1rem; color: var(--pw-muted); }

.pw-footer {
  background: #090b0e;
  color: #d5d8dd;
  padding-top: 4rem;
}
.pw-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.8rem;
}
.pw-footer .pw-logo { color: #fff; }
.pw-footer .pw-logo-img { background: transparent; height: 64px; }
.pw-footer-brand p { color: #9aa3ae; font-size: 0.95rem; max-width: 32ch; }
.pw-footer-title {
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.95rem;
}
.pw-footer ul { list-style: none; margin: 0; padding: 0; }
.pw-footer li { margin: 0 0 0.5rem; }
.pw-footer a { color: #c5cbd3; text-decoration: none; }
.pw-footer a:hover,
.pw-footer a:focus-visible { color: #fff; text-decoration: underline; }
.pw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.15rem 0;
  font-size: 0.86rem;
  color: #8b949e;
}

.pw-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.pw-icon-well {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--pw-ink);
  transition: transform 0.2s var(--pw-ease);
}
.pw-card:hover .pw-icon-well { transform: translateY(-2px); }

.pw-photo-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--pw-line);
  box-shadow: var(--pw-shadow);
  background: #dbe3ea;
}
.pw-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 1.1s var(--pw-ease);
}
[data-pw-reveal].is-visible .pw-photo-frame img { transform: scale(1); }

.pw-bridge,
.pw-seam {
  display: none;
}
.pw-seam-white span { background: #fff; }
.pw-seam-warm span { background: var(--pw-bg-warm); }
.pw-section-photo .pw-photo-frame img { object-position: center 20%; }
.pw-vis-layout {
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}
.pw-vis-copy .pw-section-head { margin-bottom: 1.35rem; }
.pw-vis-visual .pw-frame { margin: 0; }

.pw-contact {
  background: #fff;
  padding: 2.25rem 0 5rem;
}
.pw-contact-head {
  max-width: 40rem;
  margin: 0 0 2.5rem;
}
.pw-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.5rem 3rem;
  align-items: start;
}
.pw-contact-photo {
  max-height: none;
  height: min(64vh, 560px);
  margin-bottom: 1.25rem;
}
.pw-contact-photo img { object-position: center 18%; }
.pw-contact-head h1,
.pw-contact-intro h1 {
  font-family: var(--pw-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
}
.pw-contact-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.pw-contact-points li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border: 1px solid var(--pw-line);
  border-radius: 12px;
  background: var(--pw-bg);
}
.pw-contact-points li > div {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
}
.pw-contact-points .pw-icon-well { margin: 0; }
.pw-contact-points strong { display: block; font-size: 0.88rem; }
.pw-contact-points span { color: var(--pw-ink-soft); font-size: 0.92rem; }
.pw-contact-points a { font-weight: 600; color: var(--pw-ink); }
.pw-contact-panel {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 16px;
  padding: 1.7rem 1.55rem 1.8rem;
  box-shadow: var(--pw-shadow);
}
@media (min-width: 901px) {
  .pw-contact-panel {
    position: sticky;
    top: calc(var(--pw-header) + 1.15rem);
  }
}
.pw-contact-panel h2 {
  font-family: var(--pw-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
}

.pw-page-hero { padding: 4.2rem 0 0.5rem; }
.pw-page-hero h1 {
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  margin: 0 0 1rem;
  max-width: none;
  color: var(--pw-ink);
  font-family: var(--pw-display);
  font-weight: 700;
}
.pw-prose h2 { font-size: 1.25rem; margin: 2rem 0 0.6rem; font-family: var(--pw-display); font-weight: 700; }
.pw-prose p { color: var(--pw-ink-soft); }
.pw-form { display: grid; gap: 1rem; }
.pw-field label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.pw-field input,
.pw-field textarea,
.pw-field select {
  width: 100%;
  border: 1px solid var(--pw-line-strong);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: var(--pw-surface);
}
.pw-field input:focus,
.pw-field textarea:focus,
.pw-field select:focus {
  outline: 2px solid var(--pw-accent-2);
  outline-offset: 1px;
}
.pw-optional { font-weight: 500; color: var(--pw-ink-soft); }
.pw-anchor { scroll-margin-top: 5.5rem; }
.pw-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.pw-alert { padding: 0.85rem 1rem; border-radius: 12px; margin-bottom: 1rem; }
.pw-alert-ok { background: var(--pw-ok-bg); color: var(--pw-ok); }
.pw-alert-error { background: #fef3f2; color: var(--pw-danger); }
.pw-contact-email { margin-bottom: 1.25rem; }

body.pw-nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  :root { --pw-gutter: 24px; }
  .pw-problem-grid,
  .pw-industry-grid,
  .pw-card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-nav-desktop { display: none; }
  .pw-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .pw-nav-right .pw-btn-primary { display: none; }
  .pw-nav-right .pw-menu-btn { display: inline-flex; }
  .pw-dash { display: flex; }
  .pw-dash-rail { width: 52px; }
  .pw-dash-brand-name,
  .pw-dash-nav-item,
  .pw-dash-rail-foot span:last-child { display: none; }
  .pw-dash-nav-item {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 4px auto;
    border-radius: 99px;
    overflow: hidden;
    text-indent: -999px;
    background: rgba(255,255,255,0.18);
  }
  .pw-dash-nav-item.is-on { background: #0f766e; }
}

@media (max-width: 900px) {
  .pw-hero { min-height: auto; padding: 1.75rem 0 2rem; overflow-x: hidden; }
  .pw-hero-grid,
  .pw-split { grid-template-columns: minmax(0, 1fr); gap: 1.35rem; }
  .pw-hero-copy { max-width: none; }
  .pw-hero-copy,
  .pw-section-head,
  .pw-card,
  .pw-contact-aside,
  .pw-contact-panel { min-width: 0; max-width: 100%; }
  .pw-hero h1,
  .pw-section-head h2,
  .pw-section-desc,
  .pw-lead,
  .pw-card p { overflow-wrap: break-word; word-break: normal; }
  .pw-hero h1 { max-width: none; font-size: clamp(1.85rem, 8.4vw, 2.4rem); text-wrap: wrap; }
  .pw-lead { max-width: none; }
  .pw-problem-grid,
  .pw-feature-grid,
  .pw-card-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-hero-visual { min-height: 0; padding: 0.55rem; max-width: 100%; }
  .pw-hero-cta { width: 100%; }
  .pw-hero-cta .pw-btn { flex: 1 1 100%; }
  .pw-contact-grid { grid-template-columns: minmax(0, 1fr); }
  .pw-contact-photo { height: 240px; }
  .pw-how-intro { margin-bottom: 1.25rem; }
  .pw-how-photo { min-height: 200px; }
  .pw-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-pills { flex-wrap: wrap; justify-content: center; }
  .pw-pills li { white-space: normal; max-width: 100%; height: auto; min-height: 40px; padding: 0.45rem 0.75rem; }
  .pw-dash-kpis { grid-template-columns: 1fr 1fr; }
  .pw-dash-body { grid-template-columns: 1fr; }
  .pw-dash-hotspot-zoom { margin-left: 0; }
  .pw-frame-caption { padding: 0 0.35rem; }
  .pw-contact-panel { padding: 1.25rem 1.1rem 1.4rem; }
  .pw-drawer { width: min(100vw, 380px); }
}

@media (max-width: 640px) {
  .pw-problem-grid,
  .pw-feature-grid,
  .pw-industry-grid,
  .pw-card-grid-3,
  .pw-card-grid-4,
  .pw-steps { grid-template-columns: minmax(0, 1fr); }
  .pw-step-rail { display: none; }
  .pw-steps li {
    padding-left: 1.15rem;
  }
  .pw-footer-grid { grid-template-columns: 1fr; }
  .pw-container,
  .pw-narrow,
  .pw-faq-wrap { width: min(var(--pw-max), calc(100% - 1.5rem)); max-width: 100%; }
  .pw-header-inner { width: min(var(--pw-max), calc(100% - 1.5rem)); max-width: 100%; }
  .pw-btn-lg { width: 100%; }
  .pw-logo-img { height: 36px; }
  .pw-nav-right { gap: 0.2rem; flex-shrink: 0; }
  .pw-hero { min-height: auto; padding: 1.5rem 0 1.75rem; }
  .pw-hero-proof { gap: 0.4rem; }
  .pw-hero-proof li { font-size: 0.72rem; padding: 0.35rem 0.65rem; }
  .pw-dash-row { grid-template-columns: 1fr; }
  .pw-dash-row-head { display: none; }
  .pw-dash-shot { aspect-ratio: 4 / 3; }
  .pw-section { padding: 2rem 0 1.75rem; }
  .pw-section + .pw-section { padding-top: 1.5rem; }
  .pw-section-head { margin-bottom: 1.25rem; }
  .pw-section-head h2 { font-size: clamp(1.45rem, 7vw, 1.9rem); }
  .pw-contact { padding: 1.75rem 0 3.5rem; }
  .pw-contact-head { margin-bottom: 1.5rem; }
  .pw-contact-head h1,
  .pw-contact-intro h1 { font-size: clamp(1.7rem, 8vw, 2.15rem); }
  .pw-contact-panel { padding: 1.15rem 1rem 1.25rem; }
  .pw-form-row { grid-template-columns: minmax(0, 1fr); }
  .pw-pills { flex-direction: column; align-items: stretch; flex-wrap: wrap; justify-content: center; }
  .pw-pills li { width: 100%; white-space: normal; }
  .pw-showcase-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .pw-showcase-tabs button { flex: 0 0 auto; }
  .pw-showcase-stage { padding: 0.65rem; }
  .pw-cta-band .pw-hero-cta { flex-direction: column; }
  .pw-cta-band .pw-btn { width: 100%; }
  .pw-drawer {
    width: 100%;
    padding: max(1rem, env(safe-area-inset-top)) 1.15rem max(1.5rem, env(safe-area-inset-bottom));
  }
  :root { --pw-gutter: 16px; --pw-header: 60px; }
}

@media (min-width: 1920px) {
  :root { --pw-max: 1400px; }
}

.pw-auth-wrap { padding: 3rem 0 4.5rem; }
.pw-auth-card {
  width: min(520px, calc(100% - 2rem));
  margin: 0 auto;
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--pw-shadow);
}
.pw-auth-card h1 {
  font-family: var(--pw-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin: 0 0 0.6rem;
  max-width: none;
  font-weight: 700;
}
.pw-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.pw-optional { color: var(--pw-muted); font-weight: 500; }
.pw-hint { margin: 0.35rem 0 0; color: var(--pw-muted); font-size: 0.85rem; }
.pw-field-error { margin: 0.35rem 0 0; color: var(--pw-danger); font-size: 0.88rem; }
.pw-password-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  align-items: center;
}
.pw-password-toggle {
  min-height: 44px;
  padding: 0 0.85rem;
  border: 1px solid var(--pw-line-strong);
  background: var(--pw-surface);
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--pw-ink-soft);
}
.pw-password-toggle:focus-visible { outline: 2px solid var(--pw-accent-2); }
.pw-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--pw-ink-soft);
}
.pw-check input { margin-top: 0.25rem; width: 18px; height: 18px; flex-shrink: 0; }
.pw-auth-alt { margin: 1.1rem 0 0; text-align: center; color: var(--pw-muted); }
.pw-auth-alt a { font-weight: 600; color: var(--pw-ink); }

@media (max-width: 640px) {
  .pw-form-row { grid-template-columns: minmax(0, 1fr); }
  .pw-pills { flex-direction: column; align-items: stretch; flex-wrap: wrap; justify-content: center; padding-bottom: 0; }
  .pw-pills li { width: 100%; white-space: normal; }
  :root { --pw-gutter: 16px; }
}

@media (min-width: 641px) and (max-width: 768px) {
  :root { --pw-gutter: 24px; }
}

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

[data-pw-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--pw-ease), transform 0.45s var(--pw-ease);
}
[data-pw-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-pw-reveal].is-visible .pw-card,
[data-pw-reveal].is-visible .pw-steps li {
  animation: pw-stagger 0.45s var(--pw-ease) both;
}
[data-pw-reveal].is-visible .pw-card:nth-child(1),
[data-pw-reveal].is-visible .pw-steps li:nth-child(1) { animation-delay: 0ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(2),
[data-pw-reveal].is-visible .pw-steps li:nth-child(2) { animation-delay: 50ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(3),
[data-pw-reveal].is-visible .pw-steps li:nth-child(3) { animation-delay: 90ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(4),
[data-pw-reveal].is-visible .pw-steps li:nth-child(4) { animation-delay: 130ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(5),
[data-pw-reveal].is-visible .pw-steps li:nth-child(5) { animation-delay: 170ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(6) { animation-delay: 210ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(7) { animation-delay: 250ms; }
[data-pw-reveal].is-visible .pw-card:nth-child(8) { animation-delay: 290ms; }
[data-pw-reveal].is-visible .pw-pills li,
[data-pw-reveal].is-visible .pw-capability-list li {
  animation: pw-stagger 0.45s var(--pw-ease) both;
}
[data-pw-reveal].is-visible .pw-pills li:nth-child(1) { animation-delay: 0ms; }
[data-pw-reveal].is-visible .pw-pills li:nth-child(2) { animation-delay: 40ms; }
[data-pw-reveal].is-visible .pw-pills li:nth-child(3) { animation-delay: 80ms; }
[data-pw-reveal].is-visible .pw-pills li:nth-child(4) { animation-delay: 120ms; }
[data-pw-reveal].is-visible .pw-pills li:nth-child(5) { animation-delay: 160ms; }
[data-pw-reveal].is-visible .pw-pills li:nth-child(6) { animation-delay: 200ms; }
@keyframes pw-stagger {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-pw-reveal] { opacity: 1; transform: none; }
  [data-pw-reveal].is-visible .pw-card,
  [data-pw-reveal].is-visible .pw-steps li,
  [data-pw-reveal].is-visible .pw-pills li,
  [data-pw-reveal].is-visible .pw-capability-list li { animation: none; }
  .pw-photo-frame img { transform: none; transition: none; }
  .pw-dash-shot img { transform: none; transition: none; }
  .pw-dash-bars span { transition: none; }
  .pw-drawer,
  .pw-drawer-backdrop { transition: none; }
}
