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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #f3f4f6;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.pyk-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pyk-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.pyk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.pyk-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.pyk-logo-mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #e5e7eb;
}

.pyk-logo-text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #111827;
}

.pyk-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.pyk-nav-link {
  font-size: 0.9rem;
  color: #4b5563;
  opacity: 0.9;
  position: relative;
  padding: 0.15rem 0;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.pyk-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #22c55e, #0ea5e9);
  transition: width 0.2s ease;
}

.pyk-nav-link:hover {
  color: #111827;
  opacity: 1;
}

.pyk-nav-link:hover::after {
  width: 100%;
}

.pyk-nav-cta {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.7);
  background: #f9fafb;
}

.pyk-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
}

.pyk-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.pyk-hero {
  padding: 4.5rem 0 4rem;
  background: #ffffff;
  color: #111827;
}

.pyk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.pyk-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.pyk-hero h1 {
  font-size: clamp(2.4rem, 3.15vw + 1.4rem, 3.4rem);
  line-height: 1.05;
  margin: 0.7rem 0 1rem;
  letter-spacing: -0.04em;
}

.pyk-hero-text {
  max-width: 34rem;
  font-size: 1rem;
  color: #4b5563;
}

.pyk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 0.7rem;
}

.pyk-hero-sub {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 28rem;
}

.pyk-hero-compact {
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.pyk-hero-compact .pyk-container {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.pyk-hero-compact h1 {
  margin: 0.5rem 0 0.8rem;
}

.pyk-hero-text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pyk-hero-media {
  position: relative;
}

.pyk-hero-image-card {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.pyk-hero-image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.pyk-hero-image-card figcaption {
  padding: 0.75rem 0.95rem 0.9rem;
  font-size: 0.8rem;
  color: #4b5563;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: #f9fafb;
}

.pyk-section {
  padding: 3.8rem 0;
  background: #ffffff;
  color: #111827;
}

.pyk-section-alt {
  background: #f9fafb;
}

.pyk-section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2rem;
}

.pyk-section-header h2 {
  margin: 0.6rem 0 0.6rem;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.pyk-section-header p {
  color: #4b5563;
  font-size: 0.98rem;
}

.pyk-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.pyk-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.pyk-two-column h2 {
  margin: 0.6rem 0 0.7rem;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.pyk-two-column p {
  color: #4b5563;
  font-size: 0.97rem;
}

.pyk-two-column p + p {
  margin-top: 0.65rem;
}

.pyk-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pyk-image-stack {
  display: flex;
  justify-content: center;
}

.pyk-image-card {
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.pyk-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pyk-image-card figcaption {
  padding: 0.6rem 0.9rem 0.8rem;
  font-size: 0.8rem;
  color: #4b5563;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.pyk-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.pyk-feature-card {
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.pyk-feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.pyk-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.pyk-section-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pyk-stats-card {
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  background: #111827;
  border: 1px solid rgba(31, 41, 55, 1);
  color: #e5e7eb;
}

.pyk-stats-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin: 0;
}

.pyk-stats-card h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.pyk-stats-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.pyk-cta-section {
  background: #111827;
}

.pyk-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.pyk-cta-inner h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  color: #f9fafb;
}

.pyk-cta-inner p {
  margin: 0;
  color: #e5e7eb;
  max-width: 32rem;
}

.pyk-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pyk-faq-list {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
}

.pyk-faq-item {
  margin-bottom: 0.6rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  overflow: hidden;
}

.pyk-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 500;
  position: relative;
}

.pyk-faq-item summary::marker,
.pyk-faq-item summary::-webkit-details-marker {
  display: none;
}

.pyk-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 0.9rem;
  font-weight: 600;
  color: #cbd5f5;
}

.pyk-faq-item[open] summary::after {
  content: "–";
}

.pyk-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pyk-faq-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

.pyk-faq-footer a {
  color: #a5b4fc;
  text-decoration: underline;
}

.pyk-form {
  margin-top: 1.4rem;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.pyk-form-group {
  margin-bottom: 0.9rem;
}

.pyk-form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  color: #374151;
}

.pyk-form-group input,
.pyk-form-group select,
.pyk-form-group textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(209, 213, 219, 1);
  background: #ffffff;
  color: #111827;
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.pyk-form-group input::placeholder,
.pyk-form-group textarea::placeholder {
  color: #64748b;
}

.pyk-form-group input:focus,
.pyk-form-group select:focus,
.pyk-form-group textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
  background: #ffffff;
}

.pyk-form-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.pyk-contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pyk-contact-card {
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.pyk-logo-large .pyk-logo-mark {
  width: 1.9rem;
  height: 1.9rem;
}

.pyk-contact-info h3 {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.pyk-contact-info p {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: #4b5563;
}

.pyk-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
}

.pyk-contact-info li {
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}

.pyk-contact-info a {
  color: #2563eb;
}

.pyk-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  color: #6b7280;
  font-size: 0.8rem;
}

.pyk-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.4fr);
  align-items: flex-start;
  gap: 1.8rem;
  padding: 2rem 0 1.5rem;
}

.pyk-footer-brand p {
  margin-top: 0.7rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: #4b5563;
}

.pyk-footer-links h3,
.pyk-footer-contact h3 {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: #374151;
}

.pyk-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pyk-footer-links li {
  margin-bottom: 0.25rem;
}

.pyk-footer-links a {
  font-size: 0.82rem;
  color: #4b5563;
}

.pyk-footer-links a:hover {
  color: #111827;
}

.pyk-footer-contact p {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: #4b5563;
}

.pyk-footer-contact a {
  color: #2563eb;
}

.pyk-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #9ca3af;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  padding-top: 0.7rem;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .pyk-footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }
}

.pyk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.1s ease,
    box-shadow 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}

.pyk-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
}

.pyk-btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.pyk-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.3);
}

.pyk-btn-outline {
  border: 1px solid rgba(156, 163, 175, 0.8);
  background: #ffffff;
  color: #111827;
}

.pyk-btn-outline:hover {
  border-color: #2563eb;
  background: #eff6ff;
}

.pyk-btn-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pyk-btn-link::after {
  content: "→";
  font-size: 0.9rem;
}

.pyk-btn-light {
  background: #f9fafb;
  color: #020617;
}

.pyk-btn-outline-light {
  border: 1px solid rgba(209, 213, 219, 0.85);
  background: transparent;
  color: #e5e7eb;
}

.pyk-btn-outline-light:hover {
  background: rgba(31, 41, 55, 0.9);
}

@media (max-width: 900px) {
  .pyk-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pyk-hero-media {
    order: -1;
  }

  .pyk-two-column,
  .pyk-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 768px) {
  .pyk-header-inner {
    padding: 0.6rem 0;
  }

  .pyk-nav {
    position: fixed;
    inset: 56px 1.1rem auto;
    border-radius: 1rem;
    padding: 0.7rem 0.9rem;
    background: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .pyk-nav.pyk-nav-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .pyk-nav-toggle {
    display: inline-flex;
  }

  .pyk-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pyk-hero {
    padding: 3.3rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .pyk-hero h1 {
    font-size: 2.2rem;
  }

  .pyk-cta-inner {
    align-items: flex-start;
  }

  .pyk-cta-actions {
    width: 100%;
  }

  .pyk-btn {
    width: 100%;
    justify-content: center;
  }
}

