:root {
  --pw-bg: #0f1419;
  --pw-bg-soft: #161d26;
  --pw-surface: #1c2530;
  --pw-text: #f3f5f7;
  --pw-muted: #9aa6b2;
  --pw-accent: #3d8bfd;
  --pw-accent-2: #6ee7b7;
  --pw-border: rgba(255, 255, 255, 0.08);
  --pw-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --pw-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --pw-radius: 18px;
  --pw-max: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 139, 253, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(110, 231, 183, 0.12), transparent 55%),
    var(--pw-bg);
  color: var(--pw-text);
  font-family: var(--pw-font);
  line-height: 1.55;
  min-height: 100%;
}

a {
  color: var(--pw-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
.pw-btn:focus-visible {
  outline: 2px solid var(--pw-accent-2);
  outline-offset: 3px;
}

.pw-skip {
  position: absolute;
  left: -9999px;
}
.pw-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 20;
  background: var(--pw-surface);
  padding: 8px 12px;
}

.pw-header {
  border-bottom: 1px solid var(--pw-border);
  backdrop-filter: blur(10px);
  background: rgba(15, 20, 25, 0.72);
  position: sticky;
  top: 0;
  z-index: 10;
}

.pw-header__inner {
  max-width: var(--pw-max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pw-brand {
  font-family: var(--pw-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pw-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.pw-nav {
  display: flex;
  gap: 14px;
  margin-left: auto;
}
.pw-nav a {
  color: var(--pw-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.pw-nav a:hover {
  color: var(--pw-text);
}

.pw-lang {
  display: flex;
  gap: 8px;
}
.pw-lang a {
  color: var(--pw-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.pw-lang a[aria-current='true'] {
  color: var(--pw-text);
  border-color: var(--pw-border);
  background: var(--pw-surface);
}

.pw-main {
  max-width: var(--pw-max);
  margin: 0 auto;
  padding: 36px 20px 64px;
}

.pw-footer {
  max-width: var(--pw-max);
  margin: 0 auto;
  padding: 24px 20px 48px;
  color: var(--pw-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--pw-border);
}
.pw-footer__note {
  max-width: 52ch;
}

.pw-landing__brand,
.pw-org__name,
.pw-showcase__header h1 {
  font-family: var(--pw-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.pw-landing__body,
.pw-org__desc,
.pw-showcase__summary {
  color: var(--pw-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.pw-section {
  margin-top: 40px;
}
.pw-section h2 {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pw-muted);
  margin: 0 0 16px;
}

.pw-cap-list,
.pw-card-list,
.pw-contact-list,
.pw-gallery__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pw-cap-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pw-cap {
  background: var(--pw-surface);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 16px 18px;
}
.pw-cap h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.pw-cap p {
  margin: 0;
  color: var(--pw-muted);
  font-size: 0.95rem;
}

.pw-card-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pw-card__link {
  display: block;
  height: 100%;
  padding: 18px;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  background: linear-gradient(160deg, rgba(61, 139, 253, 0.08), transparent 50%), var(--pw-surface);
  color: inherit;
  text-decoration: none;
}
.pw-card__link h3 {
  margin: 0 0 8px;
}
.pw-card__link p {
  margin: 0 0 12px;
  color: var(--pw-muted);
}
.pw-card__cta {
  font-weight: 700;
  color: var(--pw-accent);
  font-size: 0.9rem;
}

.pw-contact-list {
  display: grid;
  gap: 10px;
}
.pw-label {
  color: var(--pw-muted);
  font-size: 0.85rem;
  margin-right: 8px;
}

.pw-btn,
.pw-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--pw-border);
  background: var(--pw-surface);
  color: var(--pw-text);
  font-weight: 700;
  text-decoration: none;
}
.pw-btn--primary {
  background: linear-gradient(135deg, #2f6fed, #3d8bfd);
  border: none;
}

.pw-state {
  padding: 48px 0;
  max-width: 36rem;
}
.pw-state h1 {
  font-family: var(--pw-display);
}

.pw-crumb {
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.pw-showcase__org {
  color: var(--pw-muted);
  margin: 0 0 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pw-showcase__blocks {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.pw-block {
  background: rgba(28, 37, 48, 0.55);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 20px;
}

.pw-hero {
  display: grid;
  gap: 16px;
}
.pw-hero__headline {
  margin: 0;
  font-family: var(--pw-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.pw-hero__sub {
  margin: 8px 0 0;
  color: var(--pw-muted);
}
.pw-hero__image,
.pw-image__img,
.pw-gallery__img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: var(--pw-bg-soft);
}
.pw-img-fallback {
  min-height: 160px;
  border-radius: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pw-bg-soft),
    var(--pw-bg-soft) 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.pw-text p {
  margin: 0;
  white-space: pre-wrap;
}

.pw-gallery__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.pw-video__el {
  width: 100%;
  max-height: 420px;
  border-radius: 14px;
  background: #000;
}

.pw-cta--inert .pw-cta__label {
  font-weight: 700;
  color: var(--pw-muted);
}
.pw-cta__hint {
  color: var(--pw-muted);
  font-size: 0.9rem;
}
.pw-cta__links {
  margin-top: 8px;
}
.pw-muted {
  color: var(--pw-muted);
}

.pw-org__cta {
  margin-top: 20px;
}

.pw-lead {
  max-width: 560px;
}
.pw-lead__header h1 {
  margin: 0 0 8px;
  font-family: var(--pw-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.pw-lead__context {
  color: var(--pw-muted);
  margin: 0 0 20px;
}
.pw-lead__form {
  display: grid;
  gap: 14px;
}
.pw-field {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}
.pw-field input,
.pw-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--pw-border, rgba(255, 255, 255, 0.14));
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--pw-bg-soft, rgba(255, 255, 255, 0.04));
  color: inherit;
  font: inherit;
}
.pw-field input:focus,
.pw-field textarea:focus {
  outline: 2px solid var(--pw-accent, #3d8bfd);
  outline-offset: 1px;
}
.pw-lead__error {
  margin: 0;
  color: #f07178;
}
.pw-lead__success {
  margin: 0;
  color: #7fd99a;
}
.pw-flash {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
}
.pw-flash--success {
  background: rgba(127, 217, 154, 0.12);
  color: #7fd99a;
}
.pw-flash--error,
.pw-flash--warn {
  background: rgba(240, 113, 120, 0.12);
  color: #f07178;
}

.pw-pricing {
  display: grid;
  gap: 28px;
}
.pw-pricing__hero h1 {
  font-family: var(--pw-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 8px;
}
.pw-pricing__toggle {
  border: 1px solid var(--pw-border);
  border-radius: 999px;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin: 0;
}
.pw-pricing__toggle legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.pw-pricing__toggle label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.pw-pricing:has([value="year"]:checked) .pw-pricing__toggle label:has([value="year"]),
.pw-pricing:has([value="month"]:checked) .pw-pricing__toggle label:has([value="month"]) {
  background: var(--pw-surface);
}
.pw-pricing:has([value="month"]:checked) .pw-price--year,
.pw-pricing:has([value="year"]:checked) .pw-price--month {
  display: none;
}
.pw-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pw-price-card {
  background: var(--pw-surface);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 22px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.pw-price-card--recommended {
  border-color: rgba(110, 231, 183, 0.45);
  box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.18);
}
.pw-price-card__badge {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pw-accent-2);
}
.pw-price-card h2 {
  margin: 0;
}
.pw-price {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
}
.pw-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pw-muted);
}
.pw-price-card__features {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--pw-muted);
}
.pw-price-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.pw-pricing__tax,
.pw-pricing__note {
  color: var(--pw-muted);
  margin: 0;
  font-size: 0.92rem;
}
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--pw-border);
  color: var(--pw-text);
  text-decoration: none;
  font-weight: 700;
}
.pw-btn--primary {
  background: var(--pw-accent);
  border-color: transparent;
  color: #061018;
}
@media (max-width: 900px) {
  .pw-pricing__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .pw-nav {
    margin-left: 0;
    width: 100%;
  }
  .pw-header__inner {
    align-items: flex-start;
  }
  .pw-main {
    padding: 24px 16px 48px;
  }
  .pw-block {
    padding: 14px;
  }
}
