/* For Creatives - Persona Page Styles */

/* ===================================
   HERO
   =================================== */

/* Horizontal inset matches /new/for-creatives .hero-content (creatives-landing.css) */
.persona-hero,
.secondary-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 160px var(--layout-inset-fluid) var(--spacing-2xl);
  max-width: none;
  width: 100%;
  min-height: 950px;
  margin: 0;
  box-sizing: border-box;
}

.secondary-hero--layered {
  position: relative;
  overflow: hidden;
  background: var(--brand-blue);
}

.hero-fg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  pointer-events: none;
}

.secondary-hero--layered::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-blue) 0%, var(--brand-blue) 25%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-layered-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.secondary-hero--natural {
  min-height: auto;
  aspect-ratio: 7200 / 2672;
}

.secondary-hero--natural .hero-fg-img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.persona-hero .pill-tag,
.secondary-hero .pill-tag {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.6;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 16px;
}

.persona-hero h1,
.secondary-hero h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.persona-hero .hero-subtitle,
.secondary-hero .hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(223, 223, 223, 0.8);
}

.secondary-hero .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.secondary-hero .hero-fineprint {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===================================
   PERSONA NAV (sub-navigation)
   =================================== */

.persona-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
}

.persona-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--type-light-60);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.persona-nav a:hover {
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.persona-nav a.active {
  color: var(--brand-fun-green);
  background: var(--brand-highlighter);
  border-color: var(--brand-highlighter);
}

/* ===================================
   CALLOUT QUOTE
   =================================== */

.callout-quote {
  padding: var(--spacing-2xl) var(--layout-inset-fluid, 60px);
}

.callout-quote__layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1328px;
  margin: 0 auto;
}

.callout-quote__text {
  flex: 1;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: white;
  margin: 0;
}

.callout-quote__text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  transition: color 0.3s ease;
  cursor: default;
}

.callout-quote__text em:hover {
  color: var(--brand-highlighter, #d1ff6e);
}

.callout-quote__img {
  width: 280px;
  height: auto;
  flex-shrink: 0;
}

/* ===================================
   PAIN POINTS
   =================================== */

.pain-section {
  padding: var(--spacing-2xl) var(--spacing-xl) 100px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--background);
  box-shadow: 0 0 0 100vmax var(--background);
  clip-path: inset(0 -100vmax);
}

.pain-section > h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--type);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.pain-card {
  background: #ffffff;
  border: 1px solid rgba(22, 22, 22, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
}

.pain-card svg {
  width: 24px;
  height: 24px;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.pain-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--type);
}

.pain-card p {
  font-size: 14px;
  color: var(--type-60);
}

/* Split pain section: heading + lead left, stacked items right (persona pages) */
.pain-section--split {
  max-width: 1328px;
  padding-bottom: 0;
}

.pain-section--split .pain-section__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  max-width: 1440px;
}

.pain-section__decorative-img {
  position: absolute;
  bottom: 0;
  right: -450px;
  width: 350px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.pain-section--inverted {
  overflow: visible;
}

.pain-section__headline {
  text-align: center;
  margin: 0 0 var(--spacing-lg);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: var(--type);
  white-space: nowrap;
}

.pain-section__headline em {
  font-style: italic;
  font-weight: 600;
}

.pain-section--split .pain-section__list {
  border-top: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.pain-section--split .pain-item {
  padding: var(--spacing-lg);
  margin: 0;
  background: white;
  border-radius: var(--radius-md, 12px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-section--split .pain-section__list:hover .pain-item {
  opacity: 0.5;
}

.pain-section--split .pain-section__list:hover .pain-item:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pain-section--split .pain-item:last-child {
  border-bottom: none;
}

.pain-section--split .pain-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--type);
}

.pain-section--split .pain-item p {
  max-width: none;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--type-60);
}

/* Flat pain layout (Figma: two-column, no cards) */
.pain-flat__bg {
  position: relative;
  background-color: white;
  background-image: url("/assets/for-creative-pros/wallpaper-background-grey.svg");
  background-size: var(--cutting-mat-bg-size);
  background-position: center top;
  background-repeat: repeat;
  margin: 0 calc(-1 * var(--layout-inset-fluid, 60px));
  padding: 0 var(--layout-inset-fluid, 60px);
}

.pain-section--flat {
  max-width: 1328px;
  background: none;
  box-shadow: none;
  clip-path: none;
}

.pain-flat__layout {
  display: flex;
  gap: 70px;
  align-items: start;
  background: var(--background, #e5eaed);
  border-radius: 20px;
  padding: 60px;
}

.pain-flat__left {
  flex-shrink: 0;
  width: 420px;
  padding-top: 32px;
}

.pain-flat__left h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1.08px;
  color: var(--type);
  margin: 0;
}

.pain-flat__subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.36px;
  color: var(--type-60, rgba(22, 22, 22, 0.6));
  margin-top: 12px;
}

.pain-flat__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pain-flat__item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.pain-flat__item:last-child {
  border-bottom: none;
}

.pain-flat__item h3 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.96px;
  color: var(--type-60, rgba(22, 22, 22, 0.6));
  margin: 0 0 12px;
}

.pain-flat__item p {
  font-size: 16px;
  letter-spacing: -0.48px;
  color: var(--type);
  margin: 0;
  line-height: 1.5;
}

/* ===================================
   SOLUTION / HOW MONODESK HELPS
   =================================== */

.solution-section {
  padding: var(--spacing-2xl) var(--spacing-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.solution-section > h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-size: 42px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.solution-card {
  background: var(--surface-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  text-align: left;
}

.solution-card h3 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 8px;
  text-align: left;
}

.solution-card p {
  font-size: 14px;
  margin: 0;
  text-align: left;
}

.solution-section--flat {
  position: relative;
  max-width: none;
  background-color: white;
  background-image: url("/assets/for-creative-pros/wallpaper-background-grey.svg");
  background-size: var(--cutting-mat-bg-size);
  background-position: center top;
  background-repeat: repeat;
  margin: 0 calc(-1 * var(--layout-inset-fluid, 60px));
  padding: var(--spacing-2xl) var(--layout-inset-fluid, 60px);
}

.solution-section--flat > h2 {
  color: var(--type, #161616);
}

.solution-section--flat .solution-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.solution-section--flat .solution-card h3 {
  color: var(--type, #161616);
}

.solution-section--flat .solution-card p {
  color: var(--type-60, rgba(22, 22, 22, 0.6));
}

/* ===================================
   FEATURE HIGHLIGHT
   =================================== */

.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2xl);
  padding: 160px var(--spacing-xl);
  max-width: 1100px;
  margin: 0 auto;
  min-height: 550px;
  box-sizing: border-box;
}

.feature-highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

.feature-highlight-content.reversed {
  direction: rtl;
}

.feature-highlight-content.reversed > * {
  direction: ltr;
}

.feature-highlight-text h2 {
  margin-bottom: 16px;
}

/* Content creators — first feature block headline */
.feature-highlight-text__headline-lg {
  font-size: 36px;
  line-height: 1.15;
}

.feature-highlight-text p {
  margin-bottom: 12px;
}

.feature-highlight-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: transparent;
  max-width: 60%;
}

.feature-highlight-media video,
.feature-highlight-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   TESTIMONIAL / QUOTE
   =================================== */

.quote-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.quote-section blockquote {
  font-size: 24px;
  font-weight: 300;
  color: var(--brand-white);
  line-height: 1.4;
  margin: 0 auto 16px;
  width: 640px;
  max-width: 100%;
  font-style: normal;
}

.quote-section cite {
  font-size: 14px;
  color: var(--type-light-60);
  font-style: normal;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 24px;
  font-size: 18px;
  color: rgba(223, 223, 223, 0.8);
}

.cta-banner--layered {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding: 120px var(--spacing-xl);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-banner__fg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 80%;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.cta-banner--layered:hover .cta-banner__fg {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
  .pain-section__decorative-img {
    right: -300px;
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .pain-section__decorative-img {
    display: none;
  }
}

@media (max-width: 768px) {
  .persona-hero,
  .secondary-hero {
    padding: 100px var(--layout-inset-fluid-sm) var(--spacing-lg);
    min-height: auto;
  }

  .secondary-hero--layered .hero-fg-img,
  .secondary-hero--natural .hero-fg-img {
    display: none;
  }

  .secondary-hero--layered::after {
    display: none;
  }

  .secondary-hero--natural {
    aspect-ratio: auto;
  }

  .persona-hero h1,
  .secondary-hero h1 {
    font-size: 36px;
  }

  .persona-nav {
    gap: 6px;
  }

  .persona-nav a {
    font-size: 12px;
    padding: 6px 12px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .solution-cards {
    grid-template-columns: 1fr;
  }

  .feature-highlight-content,
  .feature-highlight-content.reversed {
    grid-template-columns: 1fr !important;
    direction: ltr;
    max-width: 100% !important;
    gap: var(--spacing-lg) !important;
  }

  .feature-highlight-text__headline-lg {
    font-size: 28px;
  }

  .pain-section,
  .solution-section,
  .feature-highlight,
  .quote-section,
  .cta-banner {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
  }

  .feature-highlight {
    min-height: auto;
  }

  .pain-section--split .pain-section__layout {
    gap: var(--spacing-lg);
  }

  .pain-section--split .pain-section__list {
    max-width: none;
  }

  .pain-section--split .pain-section__list {
    grid-template-columns: 1fr;
  }

  .pain-section--split .pain-section__lead {
    max-width: none;
  }

  .pain-section__decorative-img {
    display: none;
  }

  .pain-section--split .pain-section__list {
    grid-template-columns: 1fr;
  }

  .persona-hero .hero-subtitle,
  .secondary-hero .hero-subtitle {
    font-size: 16px;
  }

  .persona-hero .hero-cta-row,
  .secondary-hero .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner--layered {
    padding: 60px var(--spacing-sm);
  }

  .cta-banner__fg {
    height: 50%;
    opacity: 0.3;
  }

  .quote-section__video {
    max-width: 100%;
  }

  .callout-quote {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .callout-quote__layout {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .callout-quote__img {
    width: 200px;
  }

  .pain-section__headline {
    white-space: normal;
    text-align: center;
  }

  .pain-section--split {
    max-width: 100%;
  }

  .pain-flat__bg {
    display: none;
  }

  .pain-section--flat {
    display: none;
  }

  .solution-section--flat {
    margin-left: calc(-1 * var(--layout-inset-fluid-sm));
    margin-right: calc(-1 * var(--layout-inset-fluid-sm));
    padding-left: var(--layout-inset-fluid-sm);
    padding-right: var(--layout-inset-fluid-sm);
  }

  .solution-card h3 {
    font-size: 24px;
  }

  .feature-highlight {
    padding: var(--spacing-2xl) var(--spacing-sm);
    min-height: auto;
  }

  .feature-highlight-content {
    gap: var(--spacing-lg);
  }

  .feature-highlight-media {
    max-width: 100%;
  }

  .feature-highlight-media img {
    border-radius: var(--radius-sm) !important;
  }
}

/* ===================================
   PERSONA PAGE - black main + cutting mat on header, hero, & bottom CTA (hub uses mat on hero)
   =================================== */

body.persona-page--graph-paper {
  position: relative;
  min-height: 100vh;
  padding: 0;
  box-sizing: border-box;
  background: var(--brand-blue);
}

/* Gridded mat on the fixed bar: main is solid black, so the hub’s “glass over blue mat”
   effect is painted onto the header itself (same SVG + scale as CTA / section-hero). */
body.persona-page--graph-paper .menu {
  left: 60px;
  right: 60px;
  max-width: calc(100vw - 120px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Blue cutting mat behind page content - not behind the fixed header */
body.persona-page--graph-paper main.page-content {
  position: relative;
  margin: 0;
  padding-top: 0;
  background-color: var(--brand-blue);
  background-image: url("/assets/for-creative-pros/wallpaper-background-white.svg");
  background-size: var(--cutting-mat-bg-size);
  background-position: center top;
  background-repeat: repeat;
  box-sizing: border-box;
}

/* ScrollSmoother wrapper: inherit the blue grid so it isn't hidden behind #smooth-wrapper's dark bg */
body.persona-page--graph-paper #smooth-wrapper {
  background-color: var(--brand-blue);
  background-image: url("/assets/for-creative-pros/wallpaper-background-white.svg");
  background-size: var(--cutting-mat-bg-size);
  background-position: center top;
  background-repeat: repeat;
}

/* Hero: transparent so the page-level cutting mat grid shows through */
body.persona-page--graph-paper .persona-hero {
  background: transparent;
  box-sizing: border-box;
}

body.persona-page--graph-paper .secondary-hero {
  background: transparent;
  box-sizing: border-box;
}

/* Background image only on the hub page (not sub-pages with grid-2x) */
body.persona-page--graph-paper:not(.persona-page--grid-2x) .secondary-hero {
  background-color: var(--brand-blue);
  background-image: url("/assets/for-creative-pros/hero-background.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Pain block sits on black main: drop light “card” bleed + use light text.
   Horizontal inset matches .persona-hero and solution / feature / quote bands. */
body.persona-page--graph-paper .pain-section {
  background: transparent;
  box-shadow: none;
  clip-path: none;
  max-width: calc(100vw - 24px);
  margin: 0 auto;
  border-radius: 0;
  box-sizing: border-box;
  padding-left: var(--layout-inset-fluid);
  padding-right: var(--layout-inset-fluid);
}

body.persona-page--graph-paper .pain-section > h2 {
  color: var(--brand-white);
}

body.persona-page--graph-paper .pain-section--split .pain-section__intro h2 {
  color: var(--brand-white);
}

body.persona-page--graph-paper .pain-section--split .pain-section__lead {
  color: var(--type-light-60);
}

body.persona-page--graph-paper .pain-section--split .pain-section__list {
  border-top: none;
}

body.persona-page--graph-paper .pain-section--split .pain-item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.persona-page--graph-paper .pain-section--split .pain-item:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.persona-page--graph-paper .pain-section--split .pain-item h3 {
  color: var(--brand-white);
}

body.persona-page--graph-paper .pain-section--split .pain-item p {
  color: var(--type-light-60);
}

/* Inverted pain section: light background with dark text (overrides graph-paper theme) */
body.persona-page--graph-paper .pain-section--inverted {
  position: relative;
  background: var(--background);
  box-shadow: 0 0 0 100vmax var(--background);
  clip-path: inset(0 -100vmax);
  border-radius: 0;
  margin: 0;
  max-width: none;
  padding-left: var(--layout-inset-fluid);
  padding-right: var(--layout-inset-fluid);
  padding-bottom: 100px !important;
  box-sizing: border-box;
}

body.persona-page--graph-paper .pain-section--inverted::before {
  display: none;
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-section__intro h2 {
  color: var(--type);
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-section__intro {
  padding-left: 40px;
  padding-top: 0;
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-section__lead {
  color: var(--type-60);
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-section__list {
  border-top: none;
  max-width: none;
  justify-self: stretch;
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-item {
  border-bottom-color: rgba(22, 22, 22, 0.12);
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-item:last-child {
  border-bottom-color: rgba(22, 22, 22, 0.12);
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-item h3 {
  color: var(--type);
}

body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-item p {
  color: var(--type-60);
}

/* Solution, features, quote: full-bleed black bands (aligned inset with .persona-hero) */
body.persona-page--graph-paper .solution-section,
body.persona-page--graph-paper .feature-highlight,
body.persona-page--graph-paper .quote-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  background-color: #0a0a0a;
  box-sizing: border-box;
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  padding-left: var(--layout-inset-fluid);
  padding-right: var(--layout-inset-fluid);
}

body.persona-page--graph-paper .feature-highlight {
  min-height: 550px;
  background-color: #0a0a0a;
}

body.persona-page--graph-paper .solution-section {
  background-color: transparent;
}

body.persona-page--graph-paper .solution-section > h2 {
  max-width: 880px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

body.persona-page--graph-paper .solution-section > .solution-cards {
  max-width: none;
  width: 100%;
}

body.persona-page--graph-paper .solution-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.persona-page--graph-paper .solution-card h3 {
  color: var(--brand-white);
}

body.persona-page--graph-paper .solution-card p {
  color: var(--type-light-60);
}

body.persona-page--graph-paper .solution-section--flat {
  background-color: white;
  background-image: url("/assets/for-creative-pros/wallpaper-background-grey.svg");
  background-size: var(--cutting-mat-bg-size);
  background-position: center top;
  background-repeat: repeat;
}

body.persona-page--graph-paper .solution-section--flat .solution-card {
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}

body.persona-page--graph-paper .solution-section--flat .solution-card h3 {
  color: var(--type, #161616);
}

body.persona-page--graph-paper .solution-section--flat .solution-card p {
  color: var(--type-60, rgba(22, 22, 22, 0.6));
}

body.persona-page--graph-paper .feature-highlight .feature-highlight-content {
  max-width: 1100px;
  margin: 0 auto;
}

body.persona-page--graph-paper .quote-section blockquote {
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  body.persona-page--graph-paper:not(.persona-page--grid-2x) .secondary-hero {
    background-image: none;
  }

  body.persona-page--graph-paper .menu {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  body.persona-page--graph-paper .pain-section,
  body.persona-page--graph-paper .solution-section,
  body.persona-page--graph-paper .feature-highlight,
  body.persona-page--graph-paper .quote-section {
    padding-left: var(--layout-inset-fluid-sm);
    padding-right: var(--layout-inset-fluid-sm);
  }

  body.persona-page--graph-paper .pain-section--inverted {
    padding-left: var(--layout-inset-fluid-sm);
    padding-right: var(--layout-inset-fluid-sm);
    padding-bottom: 60px !important;
  }

  body.persona-page--graph-paper .pain-section--inverted.pain-section--split .pain-section__intro {
    padding-left: 0;
  }

  body.persona-page--graph-paper .cta-banner {
    min-height: auto;
    padding: var(--spacing-xl) var(--spacing-sm);
  }
}

/* Bottom CTA: cutting mat grid matching the page background */
body.persona-page--graph-paper .cta-banner {
  max-width: none;
  width: 100%;
  margin: 0;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  background-color: var(--brand-blue);
  background-image: url("/assets/for-creative-pros/wallpaper-background-white.svg");
  background-position: center top;
  background-repeat: repeat;
  background-size: var(--cutting-mat-bg-size);
  box-sizing: border-box;
}

/* Fixed 18px grid squares on pages with .persona-page--grid-2x */
body.persona-page--grid-2x main.page-content {
  background-size: var(--cutting-mat-bg-size);
  background-repeat: repeat;
  background-position: center top;
}

body.persona-page--grid-2x .cta-banner {
  background-size: var(--cutting-mat-bg-size);
  background-repeat: repeat;
  background-position: center top;
}

body.persona-page--graph-paper .cta-banner h2,
body.persona-page--graph-paper .cta-banner p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--brand-white);
}

body.persona-page--graph-paper .site-footer {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

body.persona-page--graph-paper .site-footer-inner {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* ===================================
   SPLIT HERO (green, two-column)
   =================================== */

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: #026232;
  width: 100%;
}

.split-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 160px var(--spacing-xl) var(--spacing-2xl) var(--layout-inset-fluid);
  box-sizing: border-box;
}

.split-hero .pill-tag {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 16px;
}

.split-hero h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.split-hero .hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 400px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
}

.split-hero__media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.split-hero__img {
  width: 32%;
  height: auto;
  display: block;
}

.split-hero__overlay {
  position: absolute;
  bottom: 40px;
  right: calc(18% + 40px);
  width: 21%;
  height: auto;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.split-hero__media:hover .split-hero__overlay {
  transform: translate(4px, -4px);
}

.split-hero--video {
  background: #FF5B26;
}

.split-hero--web {
  background: #FF3CFE;
}

@media (max-width: 768px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-hero__text {
    padding: 120px var(--layout-inset-fluid-sm) var(--spacing-lg);
  }

  .split-hero h1 {
    font-size: 36px;
  }

  .split-hero__media {
    height: 350px;
  }

  .split-hero__img {
    width: 60%;
  }
}

/* ===================================
   FOLDER TAB SWITCHER
   =================================== */

.gd-folders-section {
  background: #f5f5f6;
  padding: var(--spacing-2xl) 0 120px;
  box-shadow: 0 0 0 100vmax #f5f5f6;
  clip-path: inset(0 -100vmax);
}

.gd-folders-section__heading {
  font-size: clamp(28px, 4vw, 39px);
  font-weight: 500;
  color: var(--type);
  text-align: center;
  margin: 0 0 var(--spacing-xl);
  line-height: 1.2;
  letter-spacing: -0.78px;
}

.gd-folders-switcher {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* --- Tabs: offset like physical folder tabs --- */

.gd-folders-tabs {
  display: flex;
  align-items: flex-end;
  padding-left: 0;
}

.gd-folders-tab {
  appearance: none;
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: #4B87FF;
  border: none;
  cursor: pointer;
  padding: 12px 32px;
  border-radius: 12px 12px 0 0;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  z-index: 1;
}

.gd-folders-tab:nth-child(3) {
  background: #7FAAFF;
}

.gd-folders-tab:hover:not(.is-active) {
  filter: brightness(1.08);
  color: #ffffff;
}

.gd-folders-tab.is-active {
  background: #1C64F5;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 36px;
  z-index: 3;
}

/* --- Folder body: SVG shape with content overlay --- */

.gd-folder-body {
  position: relative;
  margin-top: -2px;
}

.gd-folder-body__shape {
  width: 100%;
  height: auto;
  display: block;
}

.gd-folder-body__inner {
  position: absolute;
  top: 22%;
  left: 2.5%;
  right: 13%;
  bottom: 10%;
  overflow: hidden;
}

.gd-folder-panel {
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--spacing-xl);
  align-items: center;
  height: 100%;
}

.gd-folder-panel.is-active {
  display: grid;
  animation: folderFadeIn 0.3s ease;
}

@keyframes folderFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gd-folder-panel__text p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 380px;
}

.gd-folder-panel__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gd-folder-panel__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-md, 12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* --- Mobile --- */

@media (max-width: 768px) {
  .gd-folders-tab {
    font-size: 12px;
    padding: 10px 16px;
  }

  .gd-folders-tab.is-active {
    padding: 12px 18px;
  }

  .gd-folder-body__inner {
    top: 24%;
    left: 4%;
    right: 15%;
    bottom: 8%;
  }

  .gd-folder-panel.is-active {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .gd-folder-panel__media img {
    max-width: 100%;
  }
}

/* ===================================
   FEATURE SHOWCASE (dark 2x2 grid)
   =================================== */

.feature-showcase {
  background: #0a0a0a;
  width: 100%;
  max-width: none;
  padding: var(--spacing-2xl) var(--layout-inset-fluid);
  box-sizing: border-box;
}

.feature-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl) var(--spacing-xl);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.feature-showcase__cell h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.feature-showcase__cell > p {
  font-size: 15px;
  color: var(--type-light-60);
  line-height: 1.6;
  max-width: 420px;
}

.feature-showcase__tagline {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.72px;
}

.feature-showcase__checklist {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.kanban-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 340px;
}

.kanban-preview__card {
  display: flex;
  align-items: center;
  background: #f5f6f6;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
}

.kanban-preview__card--tilt-left {
  transform: rotate(-2.5deg);
}

.kanban-preview__card--tilt-right {
  transform: rotate(0.52deg);
}

.kanban-preview__title {
  font-family: "Geist", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--type);
  letter-spacing: -0.52px;
  flex: 1;
}

.kanban-preview__count {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--type);
  background: #ffffff;
  border-radius: 10px;
  padding: 3px 7px;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  line-height: 1;
}

.kanban-preview__dots {
  font-size: 16px;
  color: var(--type-60);
  margin-left: 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .feature-showcase {
    padding: var(--spacing-lg) var(--layout-inset-fluid-sm);
  }

  .feature-showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .feature-showcase__tagline {
    font-size: 28px;
  }

  .feature-showcase__cell h2 {
    font-size: 28px;
  }
}

