/* gws-pages.css — Page-specific layouts */

/* ============================================================
   INDEX — Hero
   ============================================================ */
.gws-hero {
  background-color: var(--gws-bg-dark);
  overflow: hidden;
  position: relative;
  padding: 96px 0 80px;
}

.gws-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gws-hero__label {
  display: inline-block;
  font-family: var(--gws-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-dark);
  background-color: rgba(232, 132, 90, 0.12);
  padding: 4px 10px;
  border-radius: var(--gws-radius-tag);
  margin-bottom: 20px;
}

.gws-hero__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gws-fg-on-dark-primary);
  margin-bottom: 20px;
}

.gws-hero__headline em {
  font-style: normal;
  color: var(--gws-accent-aa-on-dark);
}

.gws-hero__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gws-fg-on-dark-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.gws-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gws-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .gws-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gws-hero__headline {
    font-size: 36px;
  }

  .gws-hero__visual {
    order: -1;
  }
}

/* ============================================================
   INDEX — Mechanism / 3-step
   ============================================================ */
.gws-mechanism {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-mechanism__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-mechanism__header {
  text-align: center;
  margin-bottom: 56px;
}

.gws-mechanism__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

/* ============================================================
   INDEX — Differentiator
   ============================================================ */
.gws-differentiator {
  background-color: var(--gws-bg-light);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-differentiator__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-differentiator__header {
  margin-bottom: 40px;
}

.gws-differentiator__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  max-width: 560px;
}

/* ============================================================
   INDEX — Quote artifact
   ============================================================ */
.gws-quote-artifact {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-quote-artifact__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-quote-artifact__header {
  text-align: center;
  margin-bottom: 40px;
}

.gws-quote-artifact__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-quote-artifact__img-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  box-shadow: var(--gws-shadow-warm-md);
}

.gws-quote-artifact__img-wrap img {
  width: 100%;
  height: auto;
}

/* ============================================================
   INDEX — Use cases
   ============================================================ */
.gws-use-cases {
  background-color: var(--gws-bg-light);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-use-cases__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-use-cases__header {
  margin-bottom: 40px;
}

.gws-use-cases__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-use-cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gws-use-case-card {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  box-shadow: var(--gws-shadow-warm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gws-use-case-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--gws-radius-card);
  background-color: rgba(196, 98, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gws-use-case-card__icon i {
  font-size: 20px;
  color: var(--gws-accent-aa-on-light);
}

.gws-use-case-card__audience {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-light);
}

.gws-use-case-card__hook {
  font-family: var(--gws-font-heading);
  font-size: 19px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  line-height: 1.3;
}

.gws-use-case-card__detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 640px) {
  .gws-use-cases__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INDEX — Integrations strip
   ============================================================ */
.gws-integrations-strip {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-integrations-strip__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-integrations-strip__header {
  text-align: center;
  margin-bottom: 36px;
}

.gws-integrations-strip__headline {
  font-family: var(--gws-font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-integrations-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.gws-integrations-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.1);
  border-radius: var(--gws-radius-card);
  font-size: 13px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  box-shadow: var(--gws-shadow-warm);
}

.gws-integrations-strip__badge i {
  font-size: 15px;
  color: var(--gws-accent-aa-on-light);
}

/* ============================================================
   INDEX — Testimonials
   ============================================================ */
.gws-testimonials {
  background-color: var(--gws-bg-light);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-testimonials__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-testimonials__header {
  margin-bottom: 40px;
}

.gws-testimonials__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 640px) {
  .gws-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INDEX — Pricing teaser
   ============================================================ */
.gws-pricing-teaser {
  background-color: var(--gws-bg-dark-alt);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-pricing-teaser__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  text-align: center;
}

.gws-pricing-teaser__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--gws-fg-on-dark-primary);
  margin-bottom: 16px;
}

.gws-pricing-teaser__note {
  font-size: 15px;
  color: var(--gws-fg-on-dark-secondary);
  margin-bottom: 40px;
}

.gws-pricing-teaser__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gws-pricing-teaser__card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 239, 232, 0.12);
  border-radius: var(--gws-radius-card);
  padding: 24px 32px;
  min-width: 200px;
}

.gws-pricing-teaser__tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gws-fg-on-dark-secondary);
  margin-bottom: 10px;
}

.gws-pricing-teaser__price {
  font-family: var(--gws-font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gws-fg-on-dark-primary);
}

.gws-pricing-teaser__price-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--gws-fg-on-dark-secondary);
}

.gws-pricing-teaser__action {
  margin-top: 0;
}

/* ============================================================
   INDEX — CTA Band
   ============================================================ */
.gws-cta-band {
  background-color: var(--gws-bg-dark);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-cta-band__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  text-align: center;
}

.gws-cta-band__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--gws-fg-on-dark-primary);
  margin-bottom: 12px;
}

.gws-cta-band__subhead {
  font-size: 17px;
  color: var(--gws-fg-on-dark-secondary);
  margin-bottom: 36px;
}

.gws-cta-band__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOW IT WORKS — step sections
   ============================================================ */
.gws-hiw-step {
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-hiw-step__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gws-hiw-step__inner--reverse {
  direction: rtl;
}

.gws-hiw-step__inner--reverse > * {
  direction: ltr;
}

.gws-hiw-step__step-num {
  display: inline-block;
  font-family: var(--gws-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-light);
  margin-bottom: 8px;
}

.gws-hiw-step__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 16px;
}

.gws-hiw-step__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
}

.gws-hiw-step__img {
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  box-shadow: var(--gws-shadow-warm-md);
  background-color: var(--gws-bg-cream);
  aspect-ratio: 8/5;
}

.gws-hiw-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gws-hiw-step__inner,
  .gws-hiw-step__inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
}

/* ============================================================
   ABOUT — founder section
   ============================================================ */
.gws-about-founder {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-about-founder__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.gws-about-founder__portrait {
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  box-shadow: var(--gws-shadow-warm-md);
  background-color: var(--gws-bg-light);
  aspect-ratio: 1;
}

.gws-about-founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gws-about-founder__name {
  font-family: var(--gws-font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 4px;
}

.gws-about-founder__title {
  font-size: 14px;
  color: var(--gws-accent-aa-on-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 24px;
}

.gws-about-founder__story {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 768px) {
  .gws-about-founder__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gws-about-founder__portrait {
    max-width: 280px;
  }
}

/* ============================================================
   ABOUT — values
   ============================================================ */
.gws-values {
  background-color: var(--gws-bg-light);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-values__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-values__header {
  margin-bottom: 40px;
}

.gws-values__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gws-value-item__title {
  font-family: var(--gws-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 10px;
}

.gws-value-item__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 700px) {
  .gws-values__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   ABOUT — contact section
   ============================================================ */
.gws-about-contact {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-about-contact__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-about-contact__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 28px;
}

.gws-contact-block {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  padding: 32px;
  max-width: 460px;
  box-shadow: var(--gws-shadow-warm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gws-contact-block__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.gws-contact-block__row i {
  font-size: 15px;
  color: var(--gws-accent-aa-on-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.gws-contact-block__text {
  font-size: 15px;
  color: var(--gws-fg-on-light-secondary);
  line-height: 1.55;
}

.gws-contact-block__link {
  color: var(--gws-accent-aa-on-light);
  text-decoration: none;
}

.gws-contact-block__link:hover {
  text-decoration: underline;
}

/* ============================================================
   AUDIENCE PAGES (for-pms / for-researchers)
   ============================================================ */
.gws-audience-hero {
  background-color: var(--gws-bg-dark);
  padding: 96px 0 80px;
  overflow: hidden;
}

.gws-audience-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gws-audience-hero__tag {
  display: inline-block;
  font-family: var(--gws-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-dark);
  background-color: rgba(232, 132, 90, 0.12);
  padding: 4px 10px;
  border-radius: var(--gws-radius-tag);
  margin-bottom: 16px;
}

.gws-audience-hero__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--gws-fg-on-dark-primary);
  margin-bottom: 16px;
}

.gws-audience-hero__subhead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gws-fg-on-dark-secondary);
  margin-bottom: 32px;
}

.gws-audience-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .gws-audience-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* PM scenario cards */
.gws-scenario-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gws-scenario-card {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  box-shadow: var(--gws-shadow-warm);
  padding: 28px;
}

.gws-scenario-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-light);
  margin-bottom: 10px;
}

.gws-scenario-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 700px) {
  .gws-scenario-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INTEGRATIONS page
   ============================================================ */
.gws-integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gws-integration-card {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  box-shadow: var(--gws-shadow-warm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gws-integration-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--gws-radius-card);
  background-color: rgba(196, 98, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gws-integration-card__icon i {
  font-size: 22px;
  color: var(--gws-accent-aa-on-light);
}

.gws-integration-card__name {
  font-family: var(--gws-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
}

.gws-integration-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

/* ============================================================
   BLOG — index page
   ============================================================ */
.gws-blog-index-hero {
  background-color: var(--gws-bg-light);
  padding: 64px 0 56px;
}

.gws-blog-index-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-blog-index-hero__title {
  font-family: var(--gws-font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 12px;
}

.gws-blog-index-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gws-fg-on-light-secondary);
  max-width: 560px;
}

.gws-blog-grid {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-blog-grid__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .gws-blog-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gws-blog-grid__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG — article page
   ============================================================ */
.gws-article-hero {
  background-color: var(--gws-bg-light);
  padding: 64px 0 48px;
}

.gws-article-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-article-hero__breadcrumb {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 20px;
}

.gws-article-hero__breadcrumb a {
  color: var(--gws-fg-on-light-secondary);
  text-decoration: none;
}

.gws-article-hero__breadcrumb a:hover {
  color: var(--gws-accent-aa-on-light);
}

.gws-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gws-article-hero__title {
  font-family: var(--gws-font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 16px;
  max-width: 800px;
}

.gws-article-hero__excerpt {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gws-fg-on-light-secondary);
  max-width: 700px;
  margin-bottom: 32px;
}

.gws-article-hero__cover {
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  box-shadow: var(--gws-shadow-warm-md);
  max-width: 860px;
  aspect-ratio: 16/9;
  background-color: var(--gws-bg-cream);
}

.gws-article-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gws-article-content {
  background-color: var(--gws-bg-light);
  padding: 56px 0 96px;
}

.gws-article-content__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
}

.gws-article-sidebar {
  padding-top: 4px;
}

.gws-article-sidebar__title {
  font-family: var(--gws-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 14px;
}

.gws-article-sidebar__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gws-accent-aa-on-light);
  text-decoration: none;
  margin-bottom: 24px;
}

.gws-article-sidebar__back:hover {
  text-decoration: underline;
}

.gws-article-sidebar__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
}

.gws-article-sidebar__author-role {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 900px) {
  .gws-article-content__inner {
    grid-template-columns: 1fr;
  }
  .gws-article-sidebar {
    order: -1;
  }
}

/* ============================================================
   FEATURES page
   ============================================================ */
.gws-features-grid-section {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-features-grid-section__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .gws-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gws-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Features deep section */
.gws-features-deep {
  background-color: var(--gws-bg-light);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-features-deep__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-features-deep__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 20px;
}

.gws-features-deep__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
}

/* ============================================================
   SATURATION chart section (how-it-works)
   ============================================================ */
.gws-saturation-section {
  background-color: var(--gws-bg-cream);
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-saturation-section__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-saturation-section__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 16px;
}

.gws-saturation-section__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

.gws-saturation-chart-wrap {
  max-width: 760px;
}

/* ============================================================
   CHANGELOG page
   ============================================================ */
.gws-changelog-list {
  max-width: 760px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* ============================================================
   LOGIN page
   ============================================================ */
.gws-login-header {
  background-color: var(--gws-bg-dark);
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
}

.gws-login-header__logo img {
  height: 26px;
  width: auto;
}

/* ============================================================
   LEGAL pages
   ============================================================ */
.gws-legal-hero {
  background-color: var(--gws-bg-light);
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(26, 21, 16, 0.08);
}

.gws-legal-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-legal-hero__breadcrumb {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 14px;
}

.gws-legal-hero__breadcrumb a {
  color: var(--gws-fg-on-light-secondary);
  text-decoration: none;
}

.gws-legal-hero__breadcrumb a:hover {
  color: var(--gws-accent-aa-on-light);
}

.gws-legal-content {
  background-color: var(--gws-bg-light);
  padding: 48px 0 96px;
}

.gws-legal-content__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* Narrative editorial section */
.gws-editorial {
  padding: var(--gws-section-pad-desktop) 0;
}

.gws-editorial__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  max-width: min(760px, 100% - clamp(40px, 8vw, 80px));
  margin-left: auto;
  margin-right: auto;
}

.gws-editorial__headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 20px;
}

.gws-editorial__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
}

/* General sections for audiences */
.gws-section-inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.gws-section-header {
  margin-bottom: 40px;
}

.gws-section-header--centered {
  text-align: center;
}

.gws-section-headline {
  font-family: var(--gws-font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
}

.gws-section--dark .gws-section-headline,
.gws-section--dark-alt .gws-section-headline {
  color: var(--gws-fg-on-dark-primary);
}

.gws-section-subhead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gws-fg-on-light-secondary);
  margin-top: 12px;
  max-width: 680px;
}

.gws-section--dark .gws-section-subhead,
.gws-section--dark-alt .gws-section-subhead {
  color: var(--gws-fg-on-dark-secondary);
}

/* HIW hero */
.gws-hiw-hero {
  background-color: var(--gws-bg-light);
  padding: 72px 0 56px;
}

.gws-hiw-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  max-width: min(760px, 100% - clamp(40px, 8vw, 80px));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Integrations hero */
.gws-integrations-hero {
  background-color: var(--gws-bg-light);
  padding: 72px 0 56px;
}

.gws-integrations-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* Pricing hero */
.gws-pricing-hero {
  background-color: var(--gws-bg-light);
  padding: 72px 0 56px;
}

.gws-pricing-hero__inner {
  max-width: var(--gws-container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  max-width: min(760px, 100% - clamp(40px, 8vw, 80px));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Saturation image */
.gws-uxr-saturation-wrap {
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  box-shadow: var(--gws-shadow-warm-md);
  background-color: var(--gws-bg-cream);
}

.gws-uxr-saturation-wrap img {
  width: 100%;
  height: auto;
}

/* ============================================================
   ARTICLE SIDEBAR — CTA card + related links
   ============================================================ */
.gws-article-sidebar__card {
  background-color: var(--gws-bg-white);
  border: 1px solid rgba(196, 98, 45, 0.18);
  border-radius: var(--gws-radius-card);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--gws-shadow-warm);
}

.gws-article-sidebar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-light);
  margin-bottom: 10px;
}

.gws-article-sidebar__pitch {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 16px;
}

.gws-article-sidebar__related {
  border-top: 1px solid rgba(26, 21, 16, 0.08);
  padding-top: 24px;
}

.gws-article-sidebar__link {
  display: block;
  font-size: 14px;
  color: var(--gws-accent-aa-on-light);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 21, 16, 0.06);
  line-height: 1.45;
}

.gws-article-sidebar__link:hover {
  text-decoration: underline;
}

.gws-article-hero__byline {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
  margin-top: 8px;
}

/* ============================================================
   LEGAL pages layout
   ============================================================ */
.gws-legal-main {
  background-color: var(--gws-bg-light);
  padding: 56px 0 96px;
}

.gws-legal-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.gws-legal-toc {
  position: sticky;
  top: 80px;
}

.gws-legal-toc__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 14px;
}

.gws-legal-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gws-legal-toc__link {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.4;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color 0.15s, border-color 0.15s;
}

.gws-legal-toc__link:hover {
  color: var(--gws-accent-aa-on-light);
  border-left-color: var(--gws-accent-aa-on-light);
}

/* Legal article content */
.legal-article {
  min-width: 0;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(196, 98, 45, 0.2);
}

.legal-header h1 {
  font-family: var(--gws-font-heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 10px;
}

.legal-meta {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 4px;
}

.legal-article section {
  margin-bottom: 40px;
}

.legal-article h2 {
  font-family: var(--gws-font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 14px;
  padding-top: 8px;
}

.legal-article h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 10px;
  margin-top: 20px;
}

.legal-article p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 14px;
}

.legal-article ul, .legal-article ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-article li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 8px;
}

.legal-article address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
  background-color: var(--gws-bg-cream);
  border-radius: var(--gws-radius-card);
  padding: 20px 24px;
  margin-top: 16px;
}

.legal-article a {
  color: var(--gws-accent-aa-on-light);
  text-decoration: underline;
  text-decoration-color: rgba(163, 78, 31, 0.35);
}

.legal-article a:hover {
  text-decoration-color: var(--gws-accent-aa-on-light);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 20px;
}

.legal-table th {
  background-color: var(--gws-bg-cream);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gws-fg-on-light-primary);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(26, 21, 16, 0.1);
}

.legal-table td {
  padding: 10px 14px;
  color: var(--gws-fg-on-light-secondary);
  border-bottom: 1px solid rgba(26, 21, 16, 0.06);
  vertical-align: top;
}

.legal-table tbody tr:hover {
  background-color: rgba(196, 98, 45, 0.03);
}

@media (max-width: 768px) {
  .gws-legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gws-legal-toc {
    position: static;
  }
}

/* ============================================================
   AUTH pages (login / signup / reset)
   ============================================================ */
.gws-auth-page {
  min-height: 100vh;
  background-color: var(--gws-bg-dark);
}

.gws-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 480px 1fr;
}

.gws-auth-layout--centered {
  grid-template-columns: 480px;
  place-content: center;
  min-height: 100vh;
}

.gws-auth-panel {
  background-color: var(--gws-bg-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.gws-auth-panel--narrow {
  min-height: unset;
  margin: 10vh auto 0;
  width: 100%;
  max-width: 480px;
  min-height: unset;
  border-radius: var(--gws-radius-card);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}

.gws-auth-panel__header {
  padding: clamp(24px, 5vw, 40px) clamp(24px, 5vw, 56px) 0;
}

.gws-auth-panel__logo img {
  height: 26px;
  width: auto;
  max-width: 160px;
}

.gws-auth-panel__body {
  padding: 40px clamp(24px, 5vw, 56px);
  flex: 1;
}

.gws-auth-panel__title {
  font-family: var(--gws-font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 8px;
}

.gws-auth-panel__sub {
  font-size: 15px;
  color: var(--gws-fg-on-light-secondary);
  margin-bottom: 32px;
}

.gws-auth-panel__switch {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
  margin-top: 24px;
  text-align: center;
}

.gws-auth-panel__switch-link {
  color: var(--gws-accent-aa-on-light);
  text-decoration: none;
  font-weight: 500;
}

.gws-auth-panel__switch-link:hover {
  text-decoration: underline;
}

.gws-auth-panel__footer {
  padding: 20px clamp(24px, 5vw, 56px) clamp(20px, 3vw, 32px);
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(26, 21, 16, 0.08);
}

.gws-auth-panel__legal-link {
  font-size: 13px;
  color: var(--gws-fg-on-light-secondary);
  text-decoration: none;
}

.gws-auth-panel__legal-link:hover {
  color: var(--gws-accent-aa-on-light);
}

.gws-auth-panel__legal-sep {
  font-size: 13px;
  color: rgba(26, 21, 16, 0.3);
}

/* Auth form */
.gws-auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gws-auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gws-auth-form__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gws-auth-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gws-auth-form__forgot {
  font-size: 12px;
  font-weight: 400;
  color: var(--gws-accent-aa-on-light);
  text-decoration: none;
}

.gws-auth-form__forgot:hover {
  text-decoration: underline;
}

.gws-auth-form__input {
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid rgba(26, 21, 16, 0.18);
  border-radius: 8px;
  font-family: var(--gws-font-body);
  font-size: 15px;
  color: var(--gws-fg-on-light-primary);
  background-color: var(--gws-bg-white);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.gws-auth-form__input:focus {
  border-color: var(--gws-accent-aa-on-light);
  box-shadow: 0 0 0 3px rgba(163, 78, 31, 0.12);
}

.gws-auth-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A1510' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--gws-fg-on-light-primary);
  background-color: var(--gws-bg-white);
}

.gws-auth-form__select option {
  background-color: var(--gws-bg-white);
  color: var(--gws-fg-on-light-primary);
}

.gws-auth-form__submit {
  margin-top: 4px;
}

.gws-auth-form__legal {
  font-size: 12px;
  color: var(--gws-fg-on-light-secondary);
  text-align: center;
  line-height: 1.5;
  margin-top: -8px;
}

.gws-auth-form__legal-link {
  color: var(--gws-accent-aa-on-light);
  text-decoration: none;
}

.gws-auth-form__legal-link:hover {
  text-decoration: underline;
}

/* Auth aside panel */
.gws-auth-aside {
  background-color: var(--gws-bg-dark-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.gws-auth-aside__inner {
  max-width: 440px;
}

.gws-auth-aside__quote {
  margin: 0 0 40px;
  border-left: 3px solid var(--gws-accent);
  padding-left: 24px;
}

.gws-auth-aside__quote p {
  font-family: var(--gws-font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gws-fg-on-dark-primary);
  margin-bottom: 12px;
}

.gws-auth-aside__quote-attr {
  font-size: 13px;
  color: var(--gws-fg-on-dark-secondary);
}

.gws-auth-aside__proof {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.gws-auth-aside__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gws-auth-aside__stat-num {
  font-family: var(--gws-font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gws-accent-aa-on-dark);
  line-height: 1;
}

.gws-auth-aside__stat-label {
  font-size: 12px;
  color: var(--gws-fg-on-dark-secondary);
  letter-spacing: 0.02em;
}

.gws-auth-aside__headline {
  font-family: var(--gws-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gws-fg-on-dark-primary);
  margin-bottom: 20px;
}

.gws-auth-aside__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gws-auth-aside__checklist li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--gws-fg-on-dark-primary);
}

.gws-auth-aside__checklist i {
  color: var(--gws-accent-aa-on-dark);
  flex-shrink: 0;
  font-size: 16px;
}

.gws-auth-aside__note {
  font-size: 13px;
  color: var(--gws-fg-on-dark-secondary);
  padding-top: 16px;
  border-top: 1px solid rgba(245, 239, 232, 0.1);
}

@media (max-width: 800px) {
  .gws-auth-layout {
    grid-template-columns: 1fr;
  }

  .gws-auth-aside {
    display: none;
  }

  .gws-auth-panel {
    min-height: 100vh;
  }
}

/* ============================================================
   PRICING page
   ============================================================ */
.gws-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.gws-pricing-card {
  background-color: var(--gws-bg-white);
  border: 1.5px solid rgba(26, 21, 16, 0.1);
  border-radius: var(--gws-radius-card);
  box-shadow: var(--gws-shadow-warm);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.gws-pricing-card--popular {
  border-color: var(--gws-accent);
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.15);
}

.gws-pricing-card__popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gws-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.gws-pricing-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gws-fg-on-light-secondary);
}

.gws-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.gws-pricing-card__amount {
  font-family: var(--gws-font-heading);
  font-size: 44px;
  font-weight: 600;
  color: var(--gws-fg-on-light-primary);
  line-height: 1;
}

.gws-pricing-card__currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gws-fg-on-light-secondary);
  align-self: flex-start;
  margin-top: 8px;
}

.gws-pricing-card__period {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
}

.gws-pricing-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gws-fg-on-light-secondary);
}

.gws-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gws-pricing-card__feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
  line-height: 1.45;
}

.gws-pricing-card__feature i {
  color: var(--gws-accent-aa-on-light);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .gws-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Enterprise row */
.gws-pricing-enterprise {
  background-color: var(--gws-bg-cream);
  border: 1px solid rgba(26, 21, 16, 0.08);
  border-radius: var(--gws-radius-card);
  padding: 28px 36px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gws-pricing-enterprise__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gws-accent-aa-on-light);
  margin-bottom: 6px;
}

.gws-pricing-enterprise__title {
  font-family: var(--gws-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 4px;
}

.gws-pricing-enterprise__desc {
  font-size: 14px;
  color: var(--gws-fg-on-light-secondary);
}

/* ============================================================
   CHANGELOG entries
   ============================================================ */
.gws-changelog-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26, 21, 16, 0.08);
}

.gws-changelog-entry__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gws-changelog-entry__date {
  font-family: var(--gws-font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gws-fg-on-light-secondary);
}

.gws-changelog-entry__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--gws-radius-tag);
}

.gws-changelog-entry__tag--new {
  background-color: rgba(196, 98, 45, 0.12);
  color: var(--gws-accent-aa-on-light);
}

.gws-changelog-entry__tag--improved {
  background-color: rgba(26, 21, 16, 0.07);
  color: var(--gws-fg-on-light-secondary);
}

.gws-changelog-entry__tag--fixed {
  background-color: rgba(43, 110, 80, 0.1);
  color: #2B6E50;
}

.gws-changelog-entry__title {
  font-family: var(--gws-font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--gws-fg-on-light-primary);
  margin-bottom: 10px;
}

.gws-changelog-entry__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gws-fg-on-light-secondary);
}

@media (max-width: 600px) {
  .gws-changelog-entry {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
