/**
 * Bundled CSS for jobboardly.com
 * Redesigned with Instrument Serif + DM Sans design system
 */

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   ======================================== */

:root {
  /* New design tokens */
  --ink: #0e0e0e;
  --ink-soft: #3d3d3d;
  --ink-muted: #888;
  --paper: #f4f1eb;
  --paper-light: #faf8f3;
  --paper-dark: #ede9e0;
  --accent: #2a5cff;
  --accent-dim: #eef1ff;
  --green: #1a9e6b;
  --green-dim: #e6f5ef;
  --amber: #d97706;
  --border: #ddd9d0;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --radius: 10px;

  /* Legacy vars mapped to new palette (for backward compat) */
  --color-blue: #2a5cff;
  --color-blue-transparent: rgba(42, 92, 255, 0.15);
  --color-black: #0e0e0e;
  --color-gray: #faf8f3;
  --color-light-gray: #ddd9d0;
  --color-secondary: #888;
  --color-orange: #d97706;
}

/* ========================================
   RESET
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body, html {
  font-family: var(--sans);
  background: var(--paper-light);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

ul, li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6, p, a {
  margin: 0;
  color: var(--ink);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

h4, h5, h6 {
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h2.subheading { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; }
h5 { font-size: 0.9rem; font-family: var(--sans); font-weight: 600; }
h6 { font-size: 0.8rem; font-family: var(--sans); font-weight: 600; }

p { font-weight: 400; line-height: 1.65; letter-spacing: 0; }

p + p, p + h2, p + h3, p + h4, p + h5, p + h6 { margin-top: 14px; }
h1 + p, h1 + h2, h1 + h3, h1 + h4 { margin-top: 20px; }
h2 + p, h2 + h3, h2 + h4 { margin-top: 12px; }
h3 + p, h3 + h4 { margin-top: 10px; }

.align-center { text-align: center; }
.align-left { text-align: left; }
.align-right { text-align: right; }

.callout--blue { color: var(--accent); }

.callout-block--blue {
  padding: 8px 12px;
  position: relative;
  line-height: 1.5;
  display: inline;
  color: var(--ink);
  font-style: italic;
}

.badge, .badge--blue, .badge--orange {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.badge { background: var(--paper-dark); color: var(--ink-muted); }
.badge--blue { background: var(--accent-dim); color: var(--accent); }
.badge--orange { background: #fff3e0; color: var(--amber); }

/* ========================================
   HELPERS
   ======================================== */

.flex-push-left { margin-left: auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.row { display: flex; }
.hidden { display: none !important; }
.filter--blue {
  filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(4392%) hue-rotate(214deg) brightness(101%) contrast(105%);
}

.fade { position: relative; }
.fade:after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(250,248,243,0) 50%, rgba(250,248,243,1) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .flex-push-left { margin-left: initial; }
  .row { flex-direction: column; }
}

/* ========================================
   LAYOUT
   ======================================== */

.wrapper {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

section + section,
section + .wrapper,
.wrapper + section {
  margin-top: 80px;
}

@media (max-width: 768px) {
  section + section,
  section + .wrapper,
  .wrapper + section {
    margin-top: 48px;
  }
}

/* ========================================
   NAV
   ======================================== */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav .logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  padding: 0;
}

nav .logo img {
  height: 22px;
  position: static;
  top: auto;
  filter: brightness(0) saturate(100%);
}

nav .logo::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
}

nav ul a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 400;
  padding: 0;
  transition: color 0.15s;
  letter-spacing: 0;
}

nav ul a:hover,
nav ul a.callout {
  color: var(--ink);
  text-decoration: none;
}

nav .nav-login {
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
  transition: color 0.15s;
  font-weight: 400;
}

nav .nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--ink);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: opacity 0.15s;
  font-family: var(--sans);
}

nav .nav-cta:hover {
  opacity: 0.82;
  text-decoration: none;
}

nav #menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  width: 36px;
  height: 36px;
}

nav #menu-toggle:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/images/icons/menu.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  left: 0;
  transition: none;
}

nav #menu-toggle.open:after {
  background-image: url("/images/icons/menu-close.svg");
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 54px;
  }

  nav .logo img {
    height: 18px;
  }

  nav #menu-toggle {
    display: inline-block;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--paper-light);
    z-index: 9;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  nav ul.open {
    display: flex;
  }

  nav ul a,
  nav .nav-login,
  nav .nav-cta {
    font-size: 1.2rem !important;
    font-weight: 600;
    padding: 0;
  }

  nav .nav-cta {
    padding: 12px 28px;
  }
}

/* Offset body content for fixed nav */
body {
  padding-top: 58px;
}

@media (max-width: 768px) {
  body {
    padding-top: 54px;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.button,
.arrow-link {
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  background: var(--paper-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, opacity 0.15s, transform 0.12s;
}

.button:hover, .arrow-link:hover {
  background: var(--paper);
  text-decoration: none;
}

/* Remove old pseudo-element arrow behavior */
.button:after, .arrow-link:after {
  content: none;
}

.button-blue {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(42,92,255,0.25);
}

.button-blue:hover {
  background: #1a4bef;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42,92,255,0.3);
}

.button-blue img {
  height: 18px;
  filter: brightness(0) saturate(100%) invert(100%);
  margin-left: 4px;
}

/* Ghost button variant */
.button.back {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 0.875rem;
}

.button.back:before {
  content: '←';
  margin-right: 6px;
  background: none;
  border: none;
  width: auto;
  height: auto;
  display: inline;
  position: static;
  filter: none;
  transform: none;
}

.button.back:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.button.open-modal {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.875rem;
  padding: 10px 18px;
}

.button.open-modal:hover {
  background: var(--accent);
  color: white;
}

.button.close {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background-image: url("/images/icons/close.svg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
}

.button.close:after { content: none; }

/* ========================================
   MODAL
   ======================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal h4 {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}

.modal h4 + p { margin-top: 0; }

.modal h4 img {
  margin-right: 10px;
  height: 28px;
}

.modal h5 { margin-bottom: 14px; }

.modal p {
  font-size: 1rem;
  line-height: 1.7;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 48px;
  border-radius: 16px;
  max-width: 900px;
  position: relative;
}

.modal-content .wrapper {
  background: var(--paper-light);
  padding: 40px;
  border-radius: 12px;
}

.modal-content .image-wrapper {
  display: inline-block;
  margin-top: 40px;
}

.modal-content img {
  max-width: 100%;
}

.modal-content .close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  height: 36px;
  width: 36px;
  background-size: cover;
  background-image: url("/images/icons/close.svg");
  border-radius: 6px;
}

.modal-content .close:after { background: none; }

.modal-content .inline-link {
  color: var(--accent);
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.modal-content .inline-link:before {
  content: '←';
  margin-right: 6px;
}

.modal-content .inline-link:after { content: none; }

#modal-all-features ul { list-style-type: none; }

#modal-all-features .button,
#modal-all-features .arrow-link {
  background: none;
  color: var(--accent);
  font-size: 0.95rem;
  text-decoration: none;
  padding: 6px 0;
}

#modal-all-features .button:hover,
#modal-all-features .arrow-link:hover {
  background: none;
  text-decoration: underline;
}

#modal-all-features .button:after,
#modal-all-features .arrow-link:after { content: none; }

@media (max-width: 768px) {
  .modal-content {
    padding: 24px;
    margin: 10% 16px;
  }
  .modal-content .wrapper { padding: 24px; }
}

/* ========================================
   CTA BUY / PRICING CTA (legacy components)
   ======================================== */

.cta-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.cta-buy.cta-mini {
  max-width: 320px;
  margin: 0 auto;
}

.cta-buy .badge {
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
}

.cta-buy .social-proof {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.cta-buy .button {
  width: 100%;
  justify-content: center;
}

.cta-buy img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .cta-buy.cta-mini {
    transform: scale(1);
  }
}

/* ========================================
   VIDEO PREVIEW
   ======================================== */

.video {
  max-width: 640px;
  width: 90%;
  position: relative;
}

.video .video-pointer {
  position: absolute;
  left: -80px;
  top: -60px;
}

#video-preview {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42,92,255,0.2), 0 0 0 1px rgba(42,92,255,0.08);
  cursor: pointer;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

#video-preview iframe {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100% !important;
}

.youtube-facade {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.youtube-facade .youtube-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-facade .youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 44px;
  background-color: rgba(255, 0, 0, 0.85);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.youtube-facade .youtube-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.youtube-facade:hover .youtube-play-button {
  background-color: rgba(255, 0, 0, 1);
}

.youtube-facade.activated { cursor: default; }

#video-preview-demo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42,92,255,0.2);
  cursor: pointer;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

#video-preview-demo iframe {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100% !important;
  border: none;
}

@media (max-width: 768px) {
  .video .video-pointer {
    display: none;
  }
}

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

#intro {
  margin-top: 0;
  padding: 56px 0 48px;
  text-align: center;
}

#intro.wrapper {
  max-width: 1080px;
}

#intro h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 860px;
  margin: 0 auto 24px;
  font-weight: 400;
}

#intro .callout-block--blue {
  color: var(--ink);
  font-style: italic;
}

#intro .callout--blue {
  color: var(--accent);
  font-style: italic;
}

#intro > p {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

#intro .subheadline {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 400;
}

#intro .senja-embed-intro {
  margin: 40px auto 20px;
  max-width: 380px;
}

#intro .row.flex-center {
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

#intro .cta-mini {
  transform: none;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #intro {
    padding: 32px 0 24px;
  }

  #intro h1 {
    font-size: 2rem;
  }

  #intro > p {
    font-size: 1rem;
  }

  #intro .row.flex-center {
    gap: 32px;
  }

  #intro .cta-mini {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* Announcement / hero badge */
.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.announce-tag {
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========================================
   PARTNERS / LOGO BAR
   ======================================== */

#partners {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

#partners h2.callout--blue {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 28px;
}

#partners h2.subheading {
  display: none;
}

#partners #partner-grid {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

#partners #partner-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
}

#partners #partner-grid img {
  width: auto;
  height: 36px;
  max-width: 180px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.2s, filter 0.2s;
}

#partners #partner-grid img:hover {
  filter: grayscale(0%);
  opacity: 0.8;
}

#partners .cta {
  margin-top: 4rem;
  gap: 3rem;
}

#partners .cta-buy.cta-mini {
  margin: 0 0 18px;
}

@media (max-width: 768px) {
  #partners #partner-grid {
    gap: 32px;
  }

  #partners #partner-grid img {
    height: 28px;
  }
}

/* ========================================
   FEATURES
   ======================================== */

#features {
  padding: 80px 0;
}

#features h2.callout--blue {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  font-style: normal;
}

#features h2:not(.callout--blue) {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 10px;
}

#features h2 + p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.7;
}

#features .feature-grid {
  display: grid;
  gap: 12px;
  margin-top: 48px;
  grid-template-columns: repeat(6, 1fr);
}

#features .feature {
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#features .feature:hover {
  border-color: #c9c4ba;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

#features .feature h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}

#features .feature h3 img {
  height: 22px;
  width: 22px;
  flex-shrink: 0;
}

#features .feature p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1.65;
}

#features .feature ul {
  list-style-type: none;
}

#features .feature .arrow-link,
#features .feature .button {
  background: none;
  color: var(--accent);
  font-size: 0.84rem;
  padding: 0;
  margin-top: auto;
  margin-left: auto;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#features .feature .arrow-link:hover,
#features .feature .button:hover {
  background: none;
  text-decoration: underline;
}

#features #feature-1 { grid-column: span 4; }
#features #feature-2 { grid-column: span 2; }
#features #feature-3,
#features #feature-4 { grid-column: span 3; }
#features #feature-all-features { grid-column: span 6; }

#features #feature-all-features {
  background: var(--ink);
  color: white;
  border-color: transparent;
}

#features #feature-all-features h3 {
  color: white;
}

#features #feature-all-features p {
  font-size: 1.1rem;
  width: 50%;
  clear: right;
  float: left;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

#features #feature-all-features .feature-list {
  float: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

#features #feature-all-features .feature-list .arrow-link,
#features #feature-all-features .feature-list .button {
  margin-left: 0;
}

#features #feature-all-features ul {
  list-style-type: none;
  font-size: 0.875rem;
  float: right;
  margin-right: 40px;
  position: relative;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

#features #feature-all-features .arrow-link,
#features #feature-all-features .button {
  position: relative;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.84rem;
}

#features #feature-all-features .arrow-link:hover,
#features #feature-all-features .button:hover {
  background: rgba(255,255,255,0.18);
  text-decoration: none;
  color: white;
}

.feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  #features h2 + p {
    font-size: 1rem;
  }

  #features .feature-grid {
    grid-template-columns: 1fr;
  }

  #features .feature {
    padding: 24px;
  }

  #features .feature p {
    font-size: 0.9rem;
    margin-top: 12px;
    margin-bottom: 16px;
  }

  #features #feature-1,
  #features #feature-2,
  #features #feature-3,
  #features #feature-4 {
    grid-column: span 1;
  }

  #features #feature-all-features p {
    width: 100%;
    font-size: 1rem;
    float: none;
  }

  #features #feature-all-features .feature-list {
    float: none;
  }

  #features #feature-all-features ul {
    float: none;
    margin-right: 0;
  }

  #features #feature-all-features .arrow-link,
  #features #feature-all-features .button {
    margin-left: 0;
    margin-top: 16px;
  }
}

/* ========================================
   DEMO SECTION
   ======================================== */

#demo {
  padding: 80px 0;
}

#demo h2.callout--blue {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

#demo h2:not(.callout--blue) {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
}

#demo h2 a {
  color: var(--accent);
  text-decoration: none;
  font-family: inherit;
}

#demo h2 a:hover { text-decoration: underline; }

#demo .row {
  margin-top: 48px;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

#demo .caption {
  font-size: 0.78rem;
  text-align: center;
  color: var(--ink-muted);
  margin-top: 10px;
}

#demo .senja-embed-demo {
  margin-top: 64px;
}

/* ========================================
   PRICING
   ======================================== */

#pricing {
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 56px 48px;
  max-width: 900px;
}

#pricing h2.callout--blue {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
  text-align: center;
}

#pricing h2.subheading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}

#pricing .pricing-note {
  text-align: center;
  margin: 12px auto 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

#pricing .features {
  margin-top: 2rem;
}

#pricing .row {
  margin-top: 2rem;
}

#pricing .features ul {
  list-style-type: none;
  column-count: 3;
}

#pricing .features li {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

#pricing .features img {
  height: 18px;
  width: 18px;
  flex-shrink: 0;
}

#pricing .board-pricing-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 28px auto 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  max-width: 300px;
  width: 100%;
  overflow: hidden;
}

#pricing .pricing-option {
  padding: 9px 20px;
  background: transparent;
  border: none;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-muted);
  flex: 1;
  text-align: center;
  font-size: 0.875rem;
  font-family: var(--sans);
  transition: background 0.15s, color 0.15s;
}

#pricing .pricing-option.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

#pricing .pricing-option:after { content: none; }

#pricing .pricing-option .save-badge {
  margin-left: 6px;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--green-dim);
  color: var(--green);
  border: none;
}

#pricing .cta-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 0;
}

#pricing .pricing-cta {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.15s;
}

#pricing .pricing-cta:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

#pricing .pricing-cta[data-tier="pro"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(42,92,255,0.1);
}

#pricing .headline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink-muted);
  margin-bottom: 12px;
  text-align: left;
}

#pricing .pricing {
  font-weight: 700;
  margin: 0 0 6px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

#pricing .price {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--ink);
}

#pricing .meta {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-muted);
  padding-bottom: 4px;
  font-family: var(--sans);
}

#pricing .billing-detail {
  margin: -4px 0 20px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  min-height: 1.2em;
}

#pricing .secondary {
  margin-top: 0;
}

#pricing .pricing-cta img {
  max-width: 100%;
}

#pricing .cta-buy {
  margin-top: 0;
  width: 100%;
}

#pricing .cta-buy .button {
  max-width: 100%;
  width: 100%;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

#pricing .cta-buy .button:after { content: none; }

#pricing .cta-buy .button .button-arrow {
  font-size: 1em;
  line-height: 1;
}

/* Pro plan button stays blue, standard uses ghost */
#pricing .pricing-cta[data-tier="pro"] .cta-buy .button {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(42,92,255,0.25);
}

#pricing .pricing-cta[data-tier="pro"] .cta-buy .button:hover {
  background: #1a4bef;
}

#pricing .pricing-cta[data-tier="standard"] .cta-buy .button {
  background: var(--paper-dark);
  color: var(--ink);
  box-shadow: none;
}

#pricing .pricing-cta[data-tier="standard"] .cta-buy .button:hover {
  background: var(--paper);
}

/* "Most Popular" badge for pro tier */
#pricing .pricing-cta[data-tier="pro"]::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--sans);
}

#pricing .plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

#pricing .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-size: 0.875rem;
}

#pricing .plan-features .feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

#pricing .plan-features .feature-text {
  text-decoration: none;
}

#pricing .plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

#pricing .payment-methods {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

#pricing .payment-methods img {
  max-width: 14rem;
  width: 100%;
}

#pricing .plan-guarantee {
  text-align: center;
  margin-top: 24px;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  #pricing {
    padding: 32px 20px;
    border-radius: 12px;
  }

  #pricing .features ul { column-count: 1; }

  #pricing .cta-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #pricing .plan-features { gap: 10px; }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

#testimonials {
  padding: 80px 0;
}

#testimonials h2.callout--blue {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

#testimonials h2.subheading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 40px;
}

/* ========================================
   FAQ
   ======================================== */

#faq {
  padding: 80px 0;
}

#faq h2.callout--blue {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

#faq h2.subheading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 8px;
}

.container--gray {
  margin-top: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.container--gray > p:first-of-type {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--paper-light);
}

.container--gray > p:first-of-type a {
  color: var(--accent);
}

.faq-list {
  list-style-type: none;
}

.faq-list li {
  padding: 22px 28px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
}

.faq-list li + li {
  border-top: 1px solid var(--border);
}

.faq-list li p:first-of-type {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.faq-list li p:last-of-type {
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-list li {
    padding: 18px 20px;
  }
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 40px 40px;
  margin-top: 80px !important;
  margin-bottom: 0 !important;
  border-radius: 0;
  display: block;
}

footer .footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

footer .footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.7fr;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer--navigation-wide a {
  white-space: nowrap;
}

.footer--company {
  display: flex;
  flex-direction: column;
  max-width: 260px;
}

.footer--logo {
  height: 28px;
  width: auto;
  margin-bottom: 14px;
}

.footer--brand-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 12px;
  display: inline-block;
}

.footer--description p {
  color: rgba(255,255,255,0.4);
  font-size: 0.84rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.footer--description a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 500;
}

.footer--description a:hover {
  color: white;
}

.footer--social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
}

.footer--social-links svg {
  fill: rgba(255,255,255,0.45);
  height: 1.2rem;
  transition: fill 0.15s;
}

.footer--social-links a:hover svg {
  fill: rgba(255,255,255,0.85);
}

.footer--legal p {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  margin-top: 20px;
  letter-spacing: 0;
}

.footer--navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Navigation column headers (when used in new footer) */
.footer--navigation h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  font-family: var(--sans);
}

.footer--navigation a {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0;
}

.footer--navigation a:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* Legacy single-column wrapper style */
footer.wrapper {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-direction: row;
  justify-content: space-around;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 28px;
    margin-top: 48px !important;
  }

  footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer--company {
    order: 1;
    max-width: 100%;
  }
}

/* ========================================
   PAGE / BLOG LAYOUTS
   ======================================== */

.page {
  margin-top: 3rem;
  text-align: left;
}

.page p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 16px;
}

.page h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
}

.page h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.page h4 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.page h5 { font-size: 0.95rem; font-weight: 600; color: var(--ink); }

.page img {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 12px 0;
  max-width: 100%;
}

.page ul, .page ol {
  list-style-position: outside;
  margin: 12px 0 12px 20px;
}

.page ol li, .page ul li {
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.page.narrow.wrapper {
  max-width: 1000px;
  text-align: left;
  padding-top: 24px;
  padding-bottom: 80px;
}

/* Table styling */
.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.page th, .page td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

.page thead {
  background: var(--paper-dark);
}

.page thead th {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}

/* Blockquotes in blog posts */
.page blockquote {
  border-left: 3px solid var(--accent);
  margin: 24px 0;
  padding: 12px 20px;
  background: var(--accent-dim);
  border-radius: 0 8px 8px 0;
}

.page blockquote p {
  color: var(--ink);
  font-style: italic;
  margin: 0;
}

/* Code in blog posts */
.page code,
.post-content code {
  background: var(--paper-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.85em;
  color: var(--ink);
}

.page pre,
.post-content pre {
  background: var(--ink);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
  max-width: 100%;
}

.page pre code,
.post-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.85);
}

/* About page - cofounders */
.cofounders {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 48px 0 64px;
}

.cofounder {
  display: flex;
  gap: 24px;
  text-align: left;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.cofounder img {
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  height: 100px;
  width: 100px;
  border: 1px solid var(--border);
  margin: 0;
}

.cofounder--details {
  padding: 4px 0;
  width: 100%;
}

p.cofounder--name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

p.cofounder--title {
  color: var(--ink-muted);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 4px 0 0;
}

p.cofounder--title a { color: var(--accent); text-decoration: none; }
p.cofounder--title a:hover { text-decoration: underline; }

.cofounder--details hr {
  border: 0;
  border-top: 1px solid var(--border);
  display: block;
  margin: 12px 0;
  width: 40px;
}

p.cofounder--description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 768px) {
  .cofounder {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Blog list */
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}

.blog-post-list--post {
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.blog-post-list--post:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(42,92,255,0.07);
}

a.blog-post-list--post--title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
}

a.blog-post-list--post--title:hover {
  color: var(--accent);
}

.blog-post-list--post--excerpt {
  display: -webkit-box;
  line-clamp: 2;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-post-list--post--excerpt p {
  color: var(--ink-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.blog-post-list--post--details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

p.blog-post-list--post--author {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

p.blog-post-list--post--date {
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.2;
  margin: 2px 0 0;
}

img.blog-post-list--post--avatar {
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  height: 36px;
  width: 36px;
  border: none;
}

/* Blog post */
h1.blog--title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 20px;
}

.blog--heading hr {
  border: 0;
  border-top: 1px solid var(--border);
  display: block;
  margin: 20px 0;
  width: 48px;
}

.blog--metadata {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.blog--metadata--details { text-align: left; }

.blog--metadata--avatar {
  border-radius: 50%;
  object-fit: cover;
  height: 40px;
  width: 40px;
  border: none;
  margin: 0;
}

p.blog--metadata--author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

p.blog--metadata--date {
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.2;
  margin: 2px 0 0;
}

.blog--content {
  margin-top: 36px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.blog--content h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}

.blog--content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog--content p { margin-bottom: 16px; }

.blog--content a {
  color: var(--accent);
  text-decoration: underline;
}

.blog--content ul,
.blog--content ol {
  margin: 12px 0 16px 20px;
}

.blog--content li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ========================================
   FEATURE PAGE
   ======================================== */

.feature-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.15;
}

.feature-page img.feature-screenshot {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.feature-page .page {
  text-align: left;
}

/* ========================================
   RIBBON (top announcement bar)
   ======================================== */

#ribbon {
  padding: 10px 0;
  background: var(--accent);
  color: white;
  text-align: center;
}

#ribbon .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#ribbon p {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0;
}

#ribbon img {
  height: 18px;
  position: static;
  top: auto;
  margin-right: 0;
  filter: brightness(0) invert(1);
}

#ribbon .button {
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
}

#ribbon .button:hover {
  background: rgba(255,255,255,0.3);
}

#ribbon .button:after { content: none; }

@media (max-width: 768px) {
  #ribbon { padding: 12px 16px; }
  #ribbon .wrapper { flex-direction: column; gap: 8px; }
  #ribbon .button { margin-left: 0; margin-top: 4px; }
}

/* ========================================
   MOCKUP REDESIGN — NEW SECTIONS & OVERRIDES
   v2 (applied from homepage mockup)
   ======================================== */

/* ─── UTILITY / SHARED CLASSES ─── */

.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.h2-serif {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.body-lg {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--sans);
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(42,92,255,0.3);
}
.btn-primary:hover { background: #1a4bef; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,92,255,0.35); color: #fff; text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { border-color: var(--ink-soft); color: var(--ink); background: var(--paper); }

.btn-white {
  background: white;
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--sans);
  transition: opacity 0.15s, transform 0.12s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-2px); color: var(--ink); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.15s, color 0.15s;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: white; }

.link-arrow {
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.link-arrow:hover { gap: 10px; }

/* ─── TICKER / MARQUEE ─── */

.ticker-wrap {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  overflow: hidden;
}

.ticker-inner-wrap { position: relative; }

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.ticker-item:last-child { border-right: none; }

.ticker-item:hover { opacity: 0.7; }

.ticker-item-name {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker-item-logo {
  height: 26px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.9;
}
.ticker-item-logo--invert {
  filter: brightness(0) invert(1);
}

/* ─── WHY JOB BOARDLY (PROBLEM) ─── */

.problem {
  padding: 100px 40px;
  background: var(--paper-light);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  transition: border-color 0.15s;
}
.pain-card:hover { border-color: #c9c4ba; }

.pain-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pain-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.pain-card p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .problem { padding: 64px 20px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── BENTO FEATURES SECTION ─── */

#features.bento-section {
  padding: 100px 40px !important;
  background: var(--paper) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  max-width: none !important;
  margin-top: 0 !important;
}

#features.bento-section .feature-grid { display: none; }

.bento-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bento-features-head {
  text-align: center;
  margin-bottom: 56px;
}

.bento-features-head .body-lg {
  max-width: 520px;
  margin: 12px auto 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.bc {
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
  position: relative;
}

.bc-1 { grid-column: 1 / 7; grid-row: 1; background: var(--ink); color: white; }
.bc-2 { grid-column: 7 / 13; grid-row: 1; background: white; border: 1px solid var(--border); }
.bc-3 { grid-column: 1 / 5; grid-row: 2; background: var(--accent); color: white; }
.bc-4 { grid-column: 5 / 9; grid-row: 2; background: white; border: 1px solid var(--border); }
.bc-5 { grid-column: 9 / 13; grid-row: 2; background: var(--paper-light); border: 1px solid var(--border); }
.bc-6 { grid-column: 1 / 7; grid-row: 3; background: white; border: 1px solid var(--border); }
.bc-7 { grid-column: 7 / 13; grid-row: 3; background: var(--ink); color: white; }

.bc-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.bc h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.bc-1 h3, .bc-7 h3 { color: white; }
.bc-3 h3 { color: white; }

.bc > p {
  font-size: 0.855rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.bc-1 > p, .bc-7 > p { color: rgba(255,255,255,0.55); }
.bc-3 > p { color: rgba(255,255,255,0.75); }

/* Bento visuals */
.bc-1-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.agg-row {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.agg-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.agg-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agg-count {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.bc-2-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-top: 20px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent-dim);
  transition: background 0.15s;
}
.bar:hover { background: var(--accent); }
.bar.peak { background: var(--accent); }

.bc-3-visual {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.money-tag {
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
  white-space: nowrap;
}

.bc-4-visual {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--paper-light);
  border-radius: 6px;
  font-size: 0.78rem;
  border: 1px solid var(--border);
}

.lang-flag { font-size: 1rem; }
.lang-name { flex: 1; margin-left: 10px; color: var(--ink-soft); }
.lang-check { color: var(--green); font-size: 0.85rem; }

.bc-5-visual { margin-top: 18px; }

.seo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.seo-item:last-child { border-bottom: none; }
.seo-icon { font-size: 0.95rem; flex-shrink: 0; }

.bc-6-visual { margin-top: 20px; }

.nocode-steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nocode-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.78rem;
}

.nocode-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  color: var(--ink-muted);
}

.nocode-step.done .nocode-step-num { background: var(--green); border-color: var(--green); color: white; }
.nocode-step.active { border-color: var(--accent); background: var(--accent-dim); }
.nocode-step.active .nocode-step-num { background: var(--accent); border-color: var(--accent); color: white; }

.nocode-step-label { flex: 1; color: var(--ink-soft); }
.nocode-step.done .nocode-step-label { color: var(--ink-muted); text-decoration: line-through; }
.nocode-step.active .nocode-step-label { color: var(--accent); font-weight: 600; }

.nocode-step-tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.nocode-step.done .nocode-step-tag { background: var(--green-dim); color: var(--green); }
.nocode-step.active .nocode-step-tag { background: rgba(42,92,255,0.12); color: var(--accent); }
.nocode-step:not(.done):not(.active) .nocode-step-tag { background: var(--paper-dark); color: var(--ink-muted); }

.bc-7-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.stat-box .num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: white;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.stat-box .lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  #features.bento-section { padding: 64px 20px !important; }
  .bento { grid-template-columns: 1fr; gap: 10px; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7 { grid-column: 1 !important; grid-row: auto !important; }
  .bc { padding: 28px 24px; }
  .bc-7-visual { grid-template-columns: repeat(3, 1fr); }
}

/* ─── MONETISE YOUR WAY ─── */

.paywall-feature {
  padding: 100px 40px;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.paywall-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.paywall-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.pw-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pw-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pw-bullet strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.pw-bullet p {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

.paywall-image-wrap {
  position: relative;
}

.paywall-img-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.paywall-tab {
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.paywall-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.paywall-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.paywall-tab-panel {
  display: none;
}

.paywall-tab-panel.active {
  display: block;
}

.paywall-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  display: block;
}

.paywall-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--green);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(26,158,107,0.4);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .paywall-feature { padding: 64px 20px; }
  .paywall-inner { grid-template-columns: 1fr; gap: 40px; }
  .paywall-image-wrap { order: -1; }
  .paywall-badge { right: 0; top: -12px; }
}

/* ─── HOW IT WORKS ─── */

.how-section {
  padding: 100px 40px;
  background: var(--paper-light);
}

.how-inner { max-width: 1100px; margin: 0 auto; }

.how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.how-step {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}

.how-step:first-child .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  font-style: normal;
}

.how-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.835rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-dim);
  padding: 3px 9px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .how-section { padding: 64px 20px; }
  .how-head { grid-template-columns: 1fr; gap: 24px; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .how-steps::before { display: none; }
}

/* ─── COMMUNITY SHOWCASE ─── */

.showcase-section {
  padding: 100px 40px;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-inner { max-width: 1100px; margin: 0 auto; }

.showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.boards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.board-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.board-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(42,92,255,0.1);
  transform: translateY(-3px);
}

.board-thumb {
  height: 180px;
  overflow: hidden;
  background: var(--paper);
}
.board-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.board-info {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}

.board-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.board-desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.board-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
}

.board-niche {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 10px;
  color: var(--ink-soft);
  font-weight: 500;
}

.board-country { color: var(--ink-muted); }

@media (max-width: 900px) {
  .showcase-section { padding: 64px 20px; }
  .boards-grid { grid-template-columns: 1fr; }
  .showcase-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── TESTIMONIALS (REDESIGNED CARDS) ─── */

#testimonials.testi-section {
  padding: 100px 40px !important;
  background: var(--paper-light) !important;
  text-align: left !important;
}

.testi-inner { max-width: 1100px; margin: 0 auto; }

.testi-head { text-align: center; margin-bottom: 56px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.testi-card:hover { border-color: #c9c4ba; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

.testi-stars { color: #f59e0b; letter-spacing: 3px; font-size: 0.85rem; }

.testi-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--paper-dark);
  border: 2px solid var(--border);
}

.testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 0.78rem; color: var(--ink-muted); }

.testi-senja-wrap { margin-top: 64px; }

@media (max-width: 900px) {
  #testimonials.testi-section { padding: 64px 20px !important; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ─── SEO FEATURES ─── */

.seo-features-section {
  padding: 100px 40px;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seo-features-inner { max-width: 1100px; margin: 0 auto; }

.seo-features-head {
  text-align: center;
  margin-bottom: 56px;
}

.seo-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.seo-feat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.seo-feat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(42,92,255,0.08);
}

.seo-feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.seo-feat-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 10px;
}

.seo-feat-card > p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.seo-feat-detail {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.seo-feat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 7px 10px;
  background: var(--paper-light);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.seo-feat-check { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .seo-features-section { padding: 64px 20px; }
  .seo-feat-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ACCORDION (REDESIGNED) ─── */

#faq.faq-section {
  padding: 100px 40px !important;
  background: var(--paper) !important;
  border-top: 1px solid var(--border) !important;
  max-width: none !important;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

/* Override old list styles within accordion */
#faq.faq-section .container--gray { display: none; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }

.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.15s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-dim);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

@media (max-width: 900px) {
  #faq.faq-section { padding: 64px 20px !important; }
}

/* ─── FINAL CTA ─── */

.cta-final {
  background: var(--ink);
  padding: 110px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-final-inner { position: relative; z-index: 1; }

.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: white;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.cta-final h2 em { font-style: italic; color: rgba(255,255,255,0.5); }

.cta-final-inner > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-fine {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.cta-final + footer,
.cta-final ~ footer,
.about-cta + footer,
body:has(.cta-final) > footer,
body:has(.about-cta) > footer {
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  .cta-final { padding: 80px 20px; }
}

/* ─── SCROLL FADE-IN ─── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   INNER PAGES — v2 redesign
   (about, feature, showcase, blog)
   ======================================== */

/* ─── SHARED PAGE HERO ─── */

.about-hero,
.showcase-hero,
.blog-hero,
.feature-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px 72px;
}

.about-hero-inner,
.showcase-hero-inner,
.blog-hero-inner,
.feature-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.feature-hero-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: block;
}

/* ─── ABOUT PAGE ─── */

.about-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-text p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.about-team {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

/* ─── ABOUT CTA (shared with showcase) ─── */

.about-cta {
  background: var(--ink);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
}

.about-cta .h2-serif em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

/* ─── FEATURE PAGE ─── */

.feature-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.feature-body img.feature-screenshot {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: block;
}

.feature-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 60px;
}

.feature-prose p { margin-bottom: 18px; }

.feature-bottom-cta {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 52px 40px;
  text-align: center;
}

/* ─── COMMUNITY SHOWCASE ─── */

.showcase-list-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

.showcase-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.showcase-item-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}

.showcase-item-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: var(--accent);
  text-decoration: none;
  color: var(--ink);
}

.showcase-item-logo {
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.showcase-item-logo img {
  max-height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.showcase-item-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.showcase-item-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.showcase-item-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ─── BLOG PAGE ─── */

.blog-list-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ─── RESPONSIVE: INNER PAGES ─── */

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-stats {
    grid-template-columns: 1fr 1fr;
  }
  .feature-bottom-cta {
    padding: 36px 24px;
  }
}

@media (max-width: 600px) {
  .about-hero,
  .showcase-hero,
  .blog-hero,
  .feature-hero {
    padding: 60px 20px 52px;
  }
  .about-content {
    padding: 48px 20px;
    gap: 48px;
  }
  .about-story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .showcase-cards {
    grid-template-columns: 1fr;
  }
  .feature-body {
    padding: 40px 20px 60px;
  }
  .about-cta {
    padding: 60px 20px;
  }
}

/* ========================================
   BLOG POST & SPOTLIGHT PAGES
   ======================================== */

.post-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 72px 24px 56px;
}

.post-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.post-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  margin-bottom: 24px !important;
  text-wrap: balance;
}

.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.post-meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.post-meta-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-align: left;
}

.post-meta-date {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
}

.post-ext-link {
  color: var(--ink-soft);
  vertical-align: text-bottom;
  margin-left: 4px;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.post-ext-link:hover { opacity: 1; }

.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.post-content p { margin-bottom: 20px; }
.post-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  margin: 40px 0 16px;
  letter-spacing: 0;
}
.post-content h2#faq {
  padding: 0;
}
.post-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 20px;
}
.post-content li { margin-bottom: 8px; }
.post-content img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 24px 0;
}
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-soft);
}

.post-back {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

@media (max-width: 600px) {
  .post-hero { padding: 52px 20px 44px; }
  .post-body { padding: 36px 20px 60px; }
}

/* ========================================
   HERO v2 — image-based (no video)
   ======================================== */

#intro {
  padding: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}

.hero-top {
  text-align: center;
  padding: 48px 24px 36px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

#intro h1 {
  font-family: var(--serif) !important;
  font-size: clamp(2.6rem, 5vw, 4.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
  margin: 0 0 20px !important;
}

#intro h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-fine {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin: 0 !important;
}

.hero-visual {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 0;
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px 14px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .hero-top { padding: 52px 20px 36px; }
  .hero-visual { padding: 0 16px; }
  #intro h1 { font-size: clamp(2rem, 7vw, 3rem) !important; }
}

/* ========================================
   PRODUCT DASHBOARD SHOWCASE
   ======================================== */

.product-showcase {
  background: var(--paper);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-showcase-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-showcase-img {
  position: relative;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  display: block;
}

.product-showcase-content .h2-serif {
  margin-bottom: 16px;
}

.product-showcase-content .body-lg {
  margin-bottom: 32px;
}

.product-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ps-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ps-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
  line-height: 1;
}

.ps-lbl {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media (max-width: 900px) {
  .product-showcase {
    padding: 64px 24px;
  }
  .product-showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .product-showcase { padding: 52px 20px; }
  .product-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ps-num { font-size: 1.5rem; }
}

/* Remove nav logo dot and ensure logo SVG is the only element */
nav .logo::before { content: none; display: none; }

/* ─── BOLD HEADINGS ─── */
h1, h2, h3 { font-weight: 700; }
.h2-serif { font-weight: 700; }
#intro h1 { font-weight: 700 !important; }

/* ─── BOARD CARD CTA (3rd showcase card) ─── */
.board-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-color: var(--ink);
  cursor: default;
  min-height: 280px;
  text-decoration: none;
}
.board-card--cta:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.board-card-cta-inner {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.board-card-cta-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.board-card-cta-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.board-card-cta-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ─── BOARD THUMB: logo-only variant ─── */
.board-thumb--logo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.board-thumb--logo img {
  width: auto;
  height: auto;
  max-height: 80px;
  max-width: 80%;
  object-fit: contain;
}

/* ========================================
   SEO SECTION — compact / metrics style
   ======================================== */

.seo-section {
  padding: 100px 40px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seo-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left column */
.seo-content .h2-serif { margin-bottom: 16px; }
.seo-content .body-lg  { margin-bottom: 28px; }

.seo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seo-list-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.seo-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

.seo-list-item strong { color: var(--ink); font-weight: 600; }

/* Right column */
.seo-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-metrics-card,
.seo-gjobs-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.seo-metrics-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.seo-metrics-row {
  display: flex;
  gap: 24px;
}

.seo-metric {
  flex: 1;
  text-align: center;
}

.seo-metric-score {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.seo-metric-score--green { color: #16a34a; }

.seo-metric-name {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Google for Jobs card */
.seo-gjobs-result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.seo-gjobs-result:last-of-type { border-bottom: none; }

.seo-gjobs-logo {
  width: 28px;
  height: 28px;
  background: #4285f4;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.seo-gjobs-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 2px;
}

.seo-gjobs-source {
  font-size: 0.75rem;
  color: #188038;
  margin-bottom: 2px;
}

.seo-gjobs-meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.seo-gjobs-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

@media (max-width: 900px) {
  .seo-section { padding: 64px 24px; }
  .seo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .seo-section { padding: 52px 20px; }
  .seo-metrics-row { gap: 12px; }
}

/* ========================================
   SEO SECTION v2 — simplified card grid
   ======================================== */

.seo-section-v2 {
  padding: 100px 40px;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seo-v2-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.seo-v2-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.seo-v2-head .h2-serif { margin-bottom: 12px; }

.seo-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seo-v2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}

.seo-v2-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.seo-v2-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
  width: 48px;
  height: 48px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-v2-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--sans);
  letter-spacing: 0;
}

.seo-v2-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .seo-section-v2 { padding: 64px 24px; }
  .seo-v2-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .seo-section-v2 { padding: 52px 20px; }
  .seo-v2-grid { grid-template-columns: 1fr; }
}

/* ── Fix: remove double borders between adjacent bordered sections ── */
.paywall-feature { border-top: none; }
#faq.faq-section { border-top: none !important; }

/* ── Fix: remove section-gap margins between bordered adjacent sections ── */
#features.bento-section + .paywall-feature { margin-top: 0 !important; }
.seo-section-v2 + #faq.faq-section { margin-top: 0 !important; }

/* ── Fix: reduce blank space at bordered section boundaries ── */
#features.bento-section { padding-bottom: 0 !important; }
.paywall-feature { padding-top: 40px; }
.seo-section-v2 { padding-bottom: 0; }
#faq.faq-section { padding-top: 40px !important; }

/* ── Alternating section backgrounds (problem:A, features:B, paywall:A, how:B, demo:A, testi:B, showcase:A, pricing:B, seo:A, faq:B) ── */
/* Also restore 40px padding-bottom on features and seo */
#features.bento-section { padding-bottom: 40px !important; }
.seo-section-v2 { padding-bottom: 40px; }
.paywall-feature { background: var(--paper-light); }
.how-section { background: var(--paper); }
.product-showcase { background: var(--paper-light); }
#testimonials.testi-section { background: var(--paper) !important; }
.showcase-section { background: var(--paper-light); }
.seo-section-v2 { background: var(--paper-light); }

/* ── Section layout refinements ── */

/* 1. More space above Monetise Your Way content */
.paywall-feature { padding-top: 80px; }

/* 2. How it Works: bg fills flush to break — remove margin gap, add clean border-top */
.paywall-feature { border-bottom: none; }
.how-section { margin-top: 0 !important; border-top: 1px solid var(--border); }

/* 3. Testimonials: bg fills flush to break */
.product-showcase { border-bottom: none; }
#testimonials.testi-section { margin-top: 0 !important; border-top: 1px solid var(--border); }

/* 4. Bigger space between Built-in SEO and FAQ */
.seo-section-v2 { padding-bottom: 80px; }
#faq.faq-section { padding-top: 80px !important; }

/* ── Fill to break at the bottom of How It Works and Testimonials ── */
.how-section { border-bottom: 1px solid var(--border); }
.product-showcase { margin-top: 0 !important; border-top: none; }

#testimonials.testi-section { border-bottom: 1px solid var(--border); }
.showcase-section { margin-top: 0 !important; border-top: none; }

/* ── More space below Everything Included section ── */
#features.bento-section { padding-bottom: 80px !important; }

/* ── How it works: 3-step layout fix ── */
/* Switch to 3 columns and centre content so circles sit on the connector line */
.how-steps {
  grid-template-columns: repeat(3, 1fr);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Recalculate connector line for 3 centred circles: centre of col 1 = 100%/6, col 3 = 100% - 100%/6 */
.how-steps::before {
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 28px;
}
@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 24px 0;
  }
  .how-steps::before { display: none; }
}
@media (max-width: 560px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ── Divider + re-stripe after "How it works" removal ───────────────── */
/* demo (Your command centre): A→B + divider */
.product-showcase {
  background: var(--paper) !important;
  margin-top: 0 !important;
  border-top: 1px solid var(--border);
}
/* testimonials: B→A */
#testimonials.testi-section {
  background: var(--paper-light) !important;
}
/* showcase (product showcase / logos): A→B */
.showcase-section {
  background: var(--paper) !important;
}
/* pricing: B→A */
#pricing.wrapper {
  background: var(--paper-light) !important;
}
/* seo: A→B */
.seo-section-v2 {
  background: var(--paper) !important;
}
/* faq: B→A */
#faq.faq-section {
  background: var(--paper-light) !important;
}

/* ── Bento 2-row redesign (5 cells) ─────────────────────────────────── */
/* Row 1: Job Aggregation (wide) | Monetization (wide) */
.bc-1 { grid-column: 1 / 7 !important; grid-row: 1 !important; }
.bc-3 { grid-column: 7 / 13 !important; grid-row: 1 !important; }
/* Row 2: SEO | No-Code | Scale (equal thirds) */
.bc-5 { grid-column: 1 / 5 !important; grid-row: 2 !important; }
.bc-6 { grid-column: 5 / 9 !important; grid-row: 2 !important; }
.bc-7 { grid-column: 9 / 13 !important; grid-row: 2 !important; }
/* Hide removed cells */
.bc-2, .bc-4 { display: none !important; }
/* Row 2 cells share the same lighter style */
.bc-5, .bc-6 { background: white; border: 1px solid var(--border); }
.bc-7 { background: var(--ink); color: white; }
/* Ensure row 2 cells have uniform min-height */
.bc-5, .bc-6, .bc-7 { min-height: 260px; }
/* Mobile: stack all */
@media (max-width: 760px) {
  .bc-1, .bc-3, .bc-5, .bc-6, .bc-7 { grid-column: 1 !important; grid-row: auto !important; }
}

/* ── Swap Monetization (bc-3) and Scale & Performance (bc-7) ──────────── */
.bc-7 { grid-column: 7 / 13 !important; grid-row: 1 !important; }
.bc-3 { grid-column: 9 / 13 !important; grid-row: 2 !important; }

/* ── Fix: bc-7 (Scale & Performance) — light to contrast dark bc-1 ──── */
.bc-7 { background: white !important; color: var(--ink) !important; border: 1px solid var(--border) !important; }
.bc-7 h3 { color: var(--ink) !important; }
.bc-7 > p { color: var(--ink-soft) !important; }

/* ── Stat boxes restyled for light bc-7 background ───────────────────── */
.bc-7 .stat-box { background: var(--paper-light); border-color: var(--border); }
.bc-7 .stat-box .num { color: var(--ink); }
.bc-7 .stat-box .lbl { color: var(--ink-soft); }

/* ── Blog page redesign ──────────────────────────────────────────────── */
/* Widen container + reduce top gap */
.blog-list-wrap {
  max-width: 1100px !important;
  padding-top: 40px !important;
}

/* Featured card */
.blog-featured-card {
  display: block;
  text-decoration: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 28px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-featured-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(42,92,255,0.08);
}
.blog-featured-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-featured-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 14px;
}
.blog-featured-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 700px;
  margin-bottom: 20px;
}

/* 2-column grid */
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Grid cards */
.blog-grid-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-grid-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(42,92,255,0.07);
}
.blog-grid-card--title {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 400;
}
.blog-grid-card--excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-grid-card .blog-post-list--post--details {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 700px) {
  .blog-post-grid { grid-template-columns: 1fr; }
  .blog-featured-card { padding: 24px; }
  .blog-list-wrap { padding-top: 28px !important; }
}

/* ══════════════════════════════════════════════════════════════════════
   STANDALONE PRICING PAGE  (/pricing)
   ══════════════════════════════════════════════════════════════════════ */

/* Hero */
.pp-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px 60px;
}
.pp-hero-inner { max-width: 640px; margin: 0 auto; }
.pp-hero-title { margin: 12px 0 14px; }
.pp-hero-sub { color: var(--ink-soft); margin: 0 auto 32px; max-width: 480px; }

/* Toggle */
.pp-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}
.pp-toggle .pricing-option {
  border-radius: 999px;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink-soft);
}
.pp-toggle .pricing-option.active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}
.pp-toggle .save-badge {
  margin-left: 6px;
  font-size: 0.72rem;
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 2px 7px;
}

/* Cards */
.pp-cards-wrap {
  background: var(--paper-light);
  padding: 56px 24px 48px;
  text-align: center;
}
.pp-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
}
.pp-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.15s;
}
.pp-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.pp-card--pro {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(42,92,255,0.12);
}
.pp-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pp-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.pp-card-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}
.pp-price {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.pp-price-meta {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-bottom: 6px;
}
.pp-billing-detail {
  font-size: 0.85rem;
  color: var(--ink-soft);
  min-height: 1.2em;
  margin-bottom: 20px;
}
.pp-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: var(--ink);
  color: white;
  transition: opacity 0.15s;
}
.pp-cta-btn:hover { opacity: 0.85; }
.pp-cta-btn--pro { background: var(--accent); }
.pp-trial-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin: 10px 0 0;
}
.pp-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.pp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-features li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}
.pp-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pp-guarantee {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

/* Comparison table */
.pp-table-wrap {
  background: white;
  padding: 72px 24px;
  border-top: 1px solid var(--border);
}
.pp-table-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pp-table-title {
  text-align: center;
  margin-bottom: 40px;
}
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pp-table thead th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--border);
}
.pp-table thead th.pp-table-feature-col {
  text-align: left;
  width: 55%;
}
.pp-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.pp-table tbody tr:last-child td { border-bottom: none; }
.pp-table-section td {
  background: var(--paper-light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink-soft);
  padding: 10px 16px;
}
.pp-yes {
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}
.pp-no {
  text-align: center;
  color: var(--border);
  font-size: 1rem;
}

/* FAQ */
.pp-faq-wrap {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
}
.pp-faq-inner { max-width: 900px; margin: 0 auto; }
.pp-faq-title { text-align: center; margin-bottom: 48px; }
.pp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.pp-faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.pp-faq-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Bottom CTA */
.pp-bottom-cta {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.pp-bottom-cta-inner { max-width: 560px; margin: 0 auto; }
.pp-bottom-cta h2 { color: white; margin-bottom: 12px; }
.pp-bottom-cta p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.pp-bottom-cta .btn-primary {
  background: white;
  color: var(--ink);
  display: inline-flex;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.pp-bottom-cta .btn-primary:hover { opacity: 0.9; }
.pp-bottom-note {
  margin-top: 16px !important;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 700px) {
  .pp-cards { grid-template-columns: 1fr; }
  .pp-faq-grid { grid-template-columns: 1fr; }
  .pp-table thead th:not(.pp-table-feature-col) { font-size: 0.8rem; padding: 8px; }
  .pp-table tbody td { padding: 9px 8px; font-size: 0.82rem; }
}

/* Reset .button class interference inside pricing page cards */
.pp-card .cta-buy .button {
  all: unset;
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: var(--ink);
  color: white !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.15s;
}
.pp-card .cta-buy .button:hover { opacity: 0.85; }
.pp-card--pro .cta-buy .button { background: var(--accent); }

/* Pricing page: remove footer top margin after dark CTA */
.pp-bottom-cta + footer,
body:has(.pp-bottom-cta) > footer {
  margin-top: 0 !important;
}

/* Pricing page: wider table */
.pp-table-inner { max-width: 1100px !important; }

/* Pricing page: FAQ spacing to match homepage */
#pp-faq.faq-section { padding: 100px 40px !important; }
@media (max-width: 900px) {
  #pp-faq.faq-section { padding: 64px 20px !important; }
}

/* ── Comparison table redesign ── */
.pp-table-wrap {
  background: var(--paper-light);
  padding: 72px 40px;
}
.pp-table-inner { max-width: 1000px !important; }

.pp-table { border-collapse: separate; border-spacing: 0; }

/* Feature column: narrower */
.pp-table thead th.pp-table-feature-col { width: 40% !important; }

/* Plan columns: spread out, with colored top border */
.pp-table thead th:not(.pp-table-feature-col) {
  width: 30% !important;
  padding: 20px 24px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  border-bottom: 2px solid var(--border) !important;
  border-top: 3px solid var(--border);
  background: white;
}

/* Pro column: accent top border + subtle tint */
.pp-table thead th:last-child {
  border-top: 3px solid var(--accent) !important;
  background: #f0f4ff;
  color: var(--ink) !important;
  position: relative;
}

/* Pro column body cells: subtle tint */
.pp-table tbody td:last-child {
  background: #f0f4ff;
}

/* Section rows span full width cleanly */
.pp-table-section td {
  background: var(--paper) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0 !important;
  padding: 12px 20px !important;
  border-bottom: 1px solid var(--border) !important;
}

/* Body cells */
.pp-table tbody td {
  padding: 14px 24px !important;
}

/* ✓ and — sizing */
.pp-yes { font-size: 1.1rem !important; font-weight: 700 !important; }
.pp-no  { font-size: 1.1rem !important; }

@media (max-width: 700px) {
  .pp-table-wrap { padding: 48px 16px; }
  .pp-table thead th:not(.pp-table-feature-col) { padding: 14px 12px !important; font-size: 0.85rem !important; }
  .pp-table tbody td { padding: 11px 12px !important; }
}

/* Revert Pro column to match Standard (no blue) */
.pp-table thead th:last-child {
  border-top: 3px solid var(--border) !important;
  background: white !important;
}
.pp-table tbody td:last-child {
  background: white !important;
}

/* Match Standard and Pro column shading — both transparent */
.pp-table tbody td:last-child { background: transparent !important; }

/* ── Credits section ── */
.pp-credits-wrap {
  background: var(--paper-light);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
  text-align: center;
}
.pp-credits-inner { max-width: 900px; margin: 0 auto; }
.pp-credits-title { margin-bottom: 12px; }
.pp-credits-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 0;
}
.pp-credit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.pp-credit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px 24px;
  position: relative;
}
.pp-credit-card--best {
  border-color: var(--accent);
  border-width: 2px;
}
.pp-credit-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pp-credit-amount--best { color: var(--accent); }
.pp-credit-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pp-credit-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.pp-credit-per {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pp-credit-save {
  color: #16a34a;
  font-weight: 600;
}
.pp-credit-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.pp-credit-btn:hover { opacity: 0.85; }
.pp-credit-btn--best { background: var(--accent); }

@media (max-width: 700px) {
  .pp-credit-cards { grid-template-columns: 1fr; }
  .pp-credits-wrap { padding: 48px 16px; }
}

/* Homepage pricing credits footnote */
.plan-credits-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 12px;
  text-align: center;
}
.plan-credits-note a {
  color: var(--accent);
  text-decoration: none;
}
.plan-credits-note a:hover { text-decoration: underline; }

/* Blog post table styling */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.post-content th,
.post-content td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  color: var(--ink);
}
.post-content thead tr {
  background: var(--paper);
}
.post-content thead th {
  font-weight: 700;
  font-size: 0.85rem;
}
.post-content tbody tr:nth-child(even) {
  background: var(--paper-light);
}

/* Ticker full width */
.ticker-wrap {
  width: 100% !important;
  border-radius: 0 !important;
}

/* Revenue calculator */
.paywall-feature + .rev-calc-section {
  margin-top: 0;
}
.rev-calc-section {
  background: var(--paper-light);
  padding: 8px 24px 80px;
  text-align: center;
}
.paywall-feature {
  padding-bottom: 40px !important;
}
.rev-calc-inner {
  max-width: 720px;
  margin: 0 auto;
}
.rev-calc-head {
  margin-bottom: 40px;
}
.rev-calc-head h2 {
  margin-bottom: 12px;
}
.rev-calc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: left;
}
.rev-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
}
.rev-calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rev-calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.rev-calc-val {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}
.rev-calc-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.rev-calc-group-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  cursor: pointer;
  margin-top: 8px;
}
.rev-calc-toggle-chevron {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}
.rev-calc-group-toggle.open .rev-calc-toggle-chevron {
  transform: rotate(180deg);
}
.rev-calc-posts-body {
  display: none;
  flex-direction: column;
  gap: 32px;
}
.rev-calc-posts-body.open {
  display: flex;
}
.rev-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.rev-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.rev-calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.rev-calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.rev-calc-output {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--paper);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.rev-calc-result {
  flex: 1;
}
.rev-calc-result-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rev-calc-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.rev-calc-amount--big {
  font-size: 2.2rem;
  color: var(--accent);
}
.rev-calc-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.rev-calc-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 600px) {
  .rev-calc-card { padding: 24px 20px; }
  .rev-calc-output { flex-direction: column; gap: 16px; }
  .rev-calc-divider { width: 48px; height: 1px; }
}

/* Centre showcase cards when fewer than 3 */
.showcase-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px)) !important;
  justify-content: center !important;
}

.cta-inline { margin-top: 20px; display: inline-flex; }

/* Pricing FAQ section */
#pp-faq.faq-section { background: var(--paper-light); }
.faq-head .body-lg { margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Blog hero typography */
.blog-hero .h2-serif { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.blog-hero .body-lg { max-width: 560px; margin: 0 auto; }

/* ── Bento grid: force single-column collapse on mobile ──────────────── */
/* These override the global !important grid-column rules above (lines ~4398-4418)
   by appearing later in the cascade at the same specificity level */
@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .bc-1, .bc-3, .bc-5, .bc-6, .bc-7 {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* ========================================
   MOBILE RESPONSIVENESS — comprehensive fixes
   ======================================== */

/* Ensure all sections and wrappers don't exceed viewport */
section, footer {
  max-width: 100vw;
}

/* Tables responsive on mobile */
.page table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Pricing section — ensure toggle doesn't overflow */
#pricing .board-pricing-options {
  max-width: 100%;
}

/* Fix paywall badge — prevent it cutting off screen edge */
@media (max-width: 480px) {
  .paywall-badge {
    right: 0;
    top: -10px;
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* Footer — tighter on small screens */
@media (max-width: 480px) {
  footer {
    padding: 2rem 1.25rem 1.5rem;
  }

  footer .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Extra-small screen adjustments (< 480px) */
@media (max-width: 480px) {
  /* Hero */
  .hero-top {
    padding: 28px 16px 20px;
  }

  #intro h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  /* Problem / Why section */
  .problem {
    padding: 48px 16px;
  }

  /* Bento features */
  #features.bento-section {
    padding: 48px 16px !important;
  }

  .bc {
    padding: 20px 16px;
  }

  /* How it works */
  .how-section {
    padding: 48px 16px;
  }

  .how-head {
    margin-bottom: 36px;
  }

  /* Paywall / Monetise */
  .paywall-feature {
    padding: 48px 16px !important;
  }

  /* Revenue calculator */
  .rev-calc-section {
    padding: 8px 16px 60px;
  }

  .rev-calc-card {
    padding: 20px 16px;
  }

  /* Product showcase / Demo */
  .product-showcase {
    padding: 48px 16px;
  }

  /* Testimonials */
  #testimonials.testi-section {
    padding: 48px 16px !important;
  }

  .testi-card {
    padding: 20px;
  }

  /* Community showcase */
  .showcase-section {
    padding: 48px 16px;
  }

  /* Pricing section */
  #pricing {
    padding: 20px 16px !important;
    border-radius: 0.75rem;
  }

  #pricing .cta-container {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }

  #pricing .pricing-cta {
    padding: 1.5rem 1.25rem;
  }

  #pricing .price {
    font-size: 3rem;
  }

  /* SEO section */
  .seo-section-v2 {
    padding: 48px 16px;
  }

  /* FAQ section */
  #faq.faq-section {
    padding: 48px 16px !important;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 18px 0;
  }

  /* Final CTA */
  .cta-final {
    padding: 64px 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-white,
  .cta-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  /* Nav */
  nav {
    padding: 0 16px;
  }

  /* Section spacing */
  section + section,
  section + .wrapper,
  .wrapper + section {
    margin-top: 0;
  }
}

/* Minimum touch target size for interactive elements */
@media (max-width: 768px) {
  .btn-primary,
  .btn-ghost,
  .btn-white,
  .btn-outline-white,
  .button,
  .button-blue,
  .pricing-option,
  .faq-question {
    min-height: 44px;
  }

  /* Ensure tappable nav links in open menu */
  nav ul a {
    padding: 8px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Board pricing options — full width on mobile */
  #pricing .board-pricing-options,
  .pp-toggle {
    max-width: 100%;
  }

  /* Prevent bento stat grid overflow */
  .bc-7-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  /* Ensure no content clips on small screens */
  .bento-features-inner,
  .how-inner,
  .paywall-inner,
  .rev-calc-inner,
  .product-showcase-inner,
  .testi-inner,
  .showcase-inner,
  .seo-v2-inner,
  .faq-inner,
  .cta-final-inner,
  .problem-inner {
    width: 100%;
  }

  /* Ensure full-width images in product showcase */
  .product-img,
  .paywall-img,
  .hero-product-img {
    width: 100%;
    height: auto;
  }

  /* ── Bento feature cards mobile fixes ── */
  .bc {
    padding: 24px 20px;
  }

  .bc h3 {
    font-size: 1.15rem;
  }

  .bc > p {
    font-size: 0.82rem;
    margin-top: 8px;
  }

  /* Aggregation rows — prevent text overflow */
  .agg-row {
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  /* Money tags — wrap nicely */
  .bc-3-visual {
    gap: 6px;
  }

  .money-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* SEO items in bento */
  .seo-item {
    font-size: 0.72rem;
    padding: 6px 0;
  }

  /* No-code steps */
  .nocode-step {
    font-size: 0.72rem;
    padding: 7px 10px;
    gap: 8px;
  }

  /* Stat boxes in bc-7 — stack to 1 col on narrow mobile */
  .bc-7-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-box .num {
    font-size: 1.25rem;
  }

  .stat-box .lbl {
    font-size: 0.62rem;
  }

  /* Pricing page hero */
  .pp-hero {
    padding: 48px 20px 40px;
  }

  .pp-cards-wrap {
    padding: 32px 20px 40px;
  }

  .pp-card {
    padding: 24px 20px;
  }
}
