:root {
  color-scheme: light;
  --pt-bg: #f2f5ee;
  --pt-bg-soft: #fbfcf8;
  --pt-card: #ffffff;
  --pt-ink: #1a1f1f;
  --pt-muted: #49504d;
  --pt-soft: #e3e9df;
  --pt-green: #1a4f33;
  --pt-green-deep: #0f3322;
  --pt-gold: #d4a044;
  --pt-stroke: rgba(26, 79, 51, 0.14);
  --pt-shadow: 0 24px 70px rgba(15, 51, 34, 0.12);
  --pt-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pt-page {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pt-ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(26, 79, 51, 0.10), transparent 32rem),
    linear-gradient(135deg, rgba(242, 245, 238, 0.98), rgba(251, 252, 248, 0.98)),
    var(--pt-bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.pt-green-page {
  background:
    radial-gradient(circle at 75% 4%, rgba(212, 160, 68, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--pt-green-deep), var(--pt-green) 44%, #23643f);
  color: #ffffff;
}

a {
  color: inherit;
}

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

.pt-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(26, 79, 51, 0.10);
  background: rgba(242, 245, 238, 0.82);
  backdrop-filter: blur(18px);
}

.pt-green-page .pt-header {
  background: rgba(15, 51, 34, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pt-nav {
  width: min(var(--pt-max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pt-brand,
.pt-nav-links,
.pt-footer-links,
.pt-app-topline,
.pt-card-heading,
.pt-support-link,
.pt-price-row {
  display: flex;
  align-items: center;
}

.pt-brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
}

.pt-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--pt-green);
  box-shadow: 0 12px 30px rgba(26, 79, 51, 0.16);
}

.pt-green-page .pt-brand-mark {
  color: var(--pt-green);
  background: #ffffff;
}

.pt-nav-links {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pt-nav-links a {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--pt-muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 750;
}

.pt-green-page .pt-nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.pt-nav-links a:hover,
.pt-nav-links a:focus-visible {
  color: var(--pt-green);
  background: rgba(26, 79, 51, 0.08);
  outline: none;
}

.pt-green-page .pt-nav-links a:hover,
.pt-green-page .pt-nav-links a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.pt-hero,
.pt-section,
.pt-footer-inner {
  width: min(var(--pt-max), calc(100% - 32px));
  margin: 0 auto;
}

.pt-hero {
  padding: 90px 0 54px;
}

.pt-home-hero {
  min-height: 44vh;
  display: grid;
  align-items: end;
}

.pt-swing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 42px;
  min-height: 72vh;
}

.pt-eyebrow {
  margin: 0 0 10px;
  color: var(--pt-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pt-green-page .pt-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.pt-hero h1,
.pt-section h2,
.pt-legal-hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.pt-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.pt-swing-hero h1 {
  color: #ffffff;
}

.pt-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--pt-muted);
  font-size: clamp(1.12rem, 2.3vw, 1.46rem);
  line-height: 1.4;
}

.pt-green-page .pt-lede {
  color: rgba(255, 255, 255, 0.82);
}

.pt-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
}

.pt-button-green,
.pt-button-dark {
  color: #ffffff;
  background: var(--pt-green);
  box-shadow: 0 16px 40px rgba(26, 79, 51, 0.18);
}

.pt-button-light {
  color: var(--pt-green);
  background: #ffffff;
}

.pt-button-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
}

.pt-section {
  padding: 66px 0;
}

.pt-section-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.pt-section h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.pt-app-grid,
.pt-feature-grid,
.pt-step-grid,
.pt-price-grid,
.pt-faq-grid,
.pt-support-grid {
  display: grid;
  gap: 16px;
}

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

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

.pt-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pt-price-grid,
.pt-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.pt-app-card,
.pt-card,
.pt-testimonial-card,
.pt-price-card,
.pt-legal-card,
.pt-support-card {
  background: var(--pt-card);
  color: var(--pt-ink);
  border: 1px solid rgba(26, 79, 51, 0.10);
  border-radius: 28px;
  box-shadow: var(--pt-shadow);
}

.pt-app-card {
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.swing-card {
  background:
    radial-gradient(circle at 85% 0%, rgba(212, 160, 68, 0.16), transparent 18rem),
    var(--pt-card);
}

.pt-app-topline {
  gap: 12px;
  margin-bottom: 28px;
  color: var(--pt-green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-chef-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  background: #2d241d;
}

.pt-swing-mark-small {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  object-fit: cover;
  background: var(--pt-green);
}

.pt-app-card h3,
.pt-card h3,
.pt-price-card h3,
.pt-testimonial-card h3,
.pt-support-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pt-app-card p,
.pt-card p,
.pt-price-card p,
.pt-testimonial-card p,
.pt-support-card p,
.pt-legal-card p,
.pt-legal-card li {
  color: var(--pt-muted);
}

.pt-app-card p {
  margin: 16px 0 24px;
  font-size: 1.04rem;
}

.pt-app-card .pt-button {
  margin-top: auto;
}

.pt-logo-stage {
  justify-self: center;
  width: min(440px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 62%);
}

.pt-swing-logo {
  width: min(340px, 86%);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.20);
}

.pt-card,
.pt-price-card,
.pt-testimonial-card,
.pt-support-card {
  padding: 24px;
}

.pt-card-icon,
.pt-step-number {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--pt-green);
  background: rgba(26, 79, 51, 0.10);
  font-weight: 900;
}

.pt-card h3 {
  font-size: 1.28rem;
}

.pt-card p,
.pt-price-card p,
.pt-support-card p {
  margin-top: 10px;
}

.pt-step-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.pt-step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.pt-step-number {
  color: var(--pt-green);
  background: #ffffff;
}

.pt-price-row {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.pt-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--pt-green);
  font-size: 0.78rem;
  font-weight: 850;
}

.pt-price {
  margin: 16px 0 0;
  color: var(--pt-green);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pt-testimonial-wrap {
  overflow: hidden;
}

.pt-testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 16px;
}

.pt-stars {
  color: var(--pt-gold);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pt-testimonial-card h3 {
  font-size: 1.45rem;
}

.pt-testimonial-card p {
  margin-top: 12px;
}

.pt-reviewer {
  display: block;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 79, 51, 0.14);
  color: var(--pt-green);
  font-weight: 900;
}

.pt-faq-item {
  padding: 20px 0;
  border-top: 1px solid rgba(26, 79, 51, 0.14);
}

.pt-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.pt-faq-item p {
  margin: 0;
  color: var(--pt-muted);
}

body.pt-green-page .pt-faq-item p {
  color: rgba(255, 255, 255, 0.86);
}

.pt-footer {
  padding: 38px 0;
  color: var(--pt-muted);
}

.pt-green-page .pt-footer {
  color: rgba(255, 255, 255, 0.72);
}

.pt-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(26, 79, 51, 0.12);
  padding-top: 24px;
}

.pt-green-page .pt-footer-inner {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.pt-footer-links {
  gap: 12px;
  flex-wrap: wrap;
}

.pt-footer a {
  text-decoration: none;
  font-weight: 750;
}

.pt-legal-page {
  min-height: 100vh;
}

.pt-legal-hero {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 24px;
}

.pt-legal-hero h1 {
  font-size: clamp(2.7rem, 7vw, 4.8rem);
}

.pt-legal-content {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 72px;
}

.pt-legal-card {
  padding: clamp(24px, 5vw, 42px);
}

.pt-legal-card h2 {
  margin: 30px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.pt-legal-card h2:first-child {
  margin-top: 0;
}

.pt-legal-card p,
.pt-legal-card li {
  margin-top: 10px;
}

.pt-legal-card ul {
  padding-left: 22px;
}

.pt-support-link {
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(26, 79, 51, 0.12);
  color: var(--pt-green);
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
}

.pt-support-link:first-of-type {
  border-top: 0;
  margin-top: 12px;
}

@media (max-width: 860px) {
  .pt-swing-hero,
  .pt-app-grid,
  .pt-feature-grid,
  .pt-step-grid,
  .pt-price-grid,
  .pt-faq-grid,
  .pt-support-grid {
    grid-template-columns: 1fr;
  }

  .pt-swing-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .pt-logo-stage {
    order: -1;
    width: min(320px, 86vw);
  }

  .pt-testimonial-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .pt-nav {
    min-height: 64px;
  }

  .pt-nav-links {
    gap: 2px;
  }

  .pt-nav-links a {
    padding: 8px;
    font-size: 0.88rem;
  }

  .pt-hero,
  .pt-section {
    width: min(100% - 28px, var(--pt-max));
  }

  .pt-hero {
    padding: 56px 0 34px;
  }

  .pt-section {
    padding: 48px 0;
  }

  .pt-app-card {
    min-height: 300px;
    padding: 24px;
  }

  .pt-card,
  .pt-price-card,
  .pt-testimonial-card,
  .pt-support-card {
    padding: 20px;
    border-radius: 24px;
  }
}
