/* =========================================================
   BASE + TOKENS
   ========================================================= */

:root {
  --bg-base: #0f0525;
  --bg-features: #150a33;
  --bg-creators: #1c0c3d;
  --bg-social: #140a2e;
  --bg-how: #0f0525;
  --bg-trust: #150a33;
  --bg-community: #1c0c3d;
  --bg-faq: #0f0525;

  --accent: #ff2f92;
  --accent-alt: #ca3ff0;

  --text: #f8f2ff;
  --text-muted: #c3b7e3;

  --border-subtle: rgba(255, 255, 255, 0.12);

  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
}
/* =========================================================
   TYPOGRAPHY SYSTEM
   ========================================================= */

/* ------------------------------
   DESKTOP (Default)
------------------------------ */
h1 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
}
h6,
.section-lead {
  font-size: 12px;
  line-height: 1.4;
}

p,
.section-lead {
  font-size: 16px;
  line-height: 1.6;
}

/* ------------------------------
   TABLET (≤ 900px)
------------------------------ */
@media (max-width: 900px) {
  h1 {
    font-size: 48px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
    line-height: 1.22;
  }

  h3 {
    font-size: 18px;
  }

  p,
  .section-lead {
    font-size: 15px;
  }
}

/* ------------------------------
   MOBILE (≤ 520px)
------------------------------ */
@media (max-width: 520px) {
  h1 {
    font-size: 48px;
    line-height: 1.15;
  }

  h2 {
    font-size: 32px;
    line-height: 1.24;
  }

  h3 {
    font-size: 16px;
  }

  p,
  .section-lead {
    font-size: 16px;
    line-height: 1.55;
  }
}
/* =========================================================
   GLOBAL: CENTER ALIGN ALL SECTION HEADERS & SUBTEXT
   (EXCEPT HERO)
   ========================================================= */

.section-header h2,
.section-header p.section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Also center standalone headers used outside .section-header */
.section:not(.section-hero) h2 {
  text-align: center;
}

/* Also center any lead content outside proper containers */
.section:not(.section-hero) .section-lead {
  text-align: center;
}
/* Keep HERO left-aligned */
.section-hero h1,
.section-hero p {
  text-align: left !important;
}

.section-header h2 {
  margin-bottom: 16px; /* previously default ~20–24px */
}

.section-header .section-lead {
  margin-top: 4px; /* reduce from 10px */
  margin-bottom: 32px;
}
/* =========================================================
   OVERRIDES: LEFT-ALIGN COMMUNITY + FINAL CTA HEADERS
   ========================================================= */

.section-community h2,
.section-cta-video h2 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* COMMUNITY SECTION — force subtext left */
.section-community .section-lead {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* FINAL CTA — Center everything vertically */
.section-cta-video .cta-inner {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 24px; /* space between header, subtext, button */
}

/* Center the text specifically */
.section-cta-video .cta-inner h2,
.section-cta-video .cta-inner .section-lead {
  text-align: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* LEFT ALIGN testimonial header + subtext */
.section-testimonials .section-header h2,
.section-testimonials .section-header p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* =========================================================
   GLOBAL ELEMENTS
   ========================================================= */

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background-color: var(--bg-base);
  color: var(--text);
  scroll-behavior: smooth;
}

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

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* Sections */

.section {
  position: relative;
  padding: 120px 0;
}

.section-hero {
  background-color: var(--bg-base);
}

.section-features {
  background-color: var(--bg-features);
}

.section-creators {
  background-color: var(--bg-creators);
}

.section-social {
  background-color: var(--bg-social);
}

.section-how {
  background-color: var(--bg-how);
}

.section-trust {
  background-color: var(--bg-trust);
}

.section-community {
  background-color: var(--bg-community);
}

.section-faq {
  background-color: var(--bg-faq);
}

.section-cta-video {
  background-color: var(--bg-base);
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 2, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 32px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.link-text {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.link-text:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease,
    border-color 0.14s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #c629e9, #ff7ae7);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(190, 55, 188, 0.55);
  background: linear-gradient(135deg, #d039f2, #e063c9);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   HERO (VIDEO)
   ========================================================= */

.section-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.1) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(80, 27, 130, 0.85),
    rgba(15, 5, 37, 0.96)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 640px;
  padding: 130px 0 120px;
}

.hero-sub {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================================================
   FEATURES (3x2)
   ========================================================= */

.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.feature-img {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 10px;
  background-color: #1f1036;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}
.section-value {
  position: relative;
  padding: 110px 0;
  background: #0f0525;
  overflow: hidden;
}
/* =========================================================
   KEY STATS
   ========================================================= */
.section-value {
  position: relative;
  padding: 110px 0;
  background: #0f0525; /* fallback */
  overflow: hidden;
}

.value-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.value-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  filter: blur(3px) saturate(1.1);
}

/* Ensure text + icons stay above the video */
.section-value .container {
  position: relative;
  z-index: 2;
}

.value-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.value-img {
  width: 130px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.value-item h3 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
}

/* =========================================================
   TOP CREATORS GRID (3x2)
   ========================================================= */

.creators-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.creator-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(0) scale(1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.creator-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.6);
}

.creator-img {
  width: 100%;
  aspect-ratio: 4 / 5; /* Or 4/5 depending on look */
  object-fit: cover;
  background-color: #241040;
}

.creator-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.creator-label {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0em;
}

.text-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #5527d2, #e449ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creator-handle {
  align-self: flex-start;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5527d2, #e449ff);
  color: #fff;
}

.creators-cta {
  margin-top: 32px;
  text-align: center;
}

.creator-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #b06000;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(170, 170, 170, 0.25);
}

.chip-icon {
  font-size: 14px;
  line-height: 1;
}

/* Variants */

.chip-top-contributor {
  background: rgba(252, 237, 209, 0.95);
  color: #f7a312;
}

.chip-new {
  background: rgba(255, 241, 241, 0.95);
  color: #fc4f4f;
}

.chip-og-creator {
  background: rgba(243, 240, 255, 0.95);
  color: #5c3bbf;
}

/* =========================================================
   SOCIAL PROOF CAROUSEL
   ========================================================= */

.social-proof-wrap {
  max-width: 1100px;
}

.social-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.social-rating {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #2f074e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.social-title {
  font-size: 18px;
  font-weight: 600;
}

.social-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.social-sub span {
  font-weight: 600;
}

.social-sub a {
  color: var(--accent-alt);
  text-decoration: underline;
}

.social-arrows {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(8, 2, 24, 0.9);
  color: var(--text);
  cursor: pointer;
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-groups {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-group {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.testimonial-group.active {
  opacity: 1;
  pointer-events: auto;
  position: relative; /* Bring the active one into the flow */
}

.testimonial {
  flex: 1 1 0;
  max-width: 340px;
}

.testimonial-name {
  font-size: 13px;
  margin-bottom: 6px;
}

.testimonial-stars {
  font-size: 14px;
  color: #ffd973;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
}
/* Override global centering for testimonial section */
.section-testimonials h2,
.section-testimonials p.section-lead {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

/* HOW IT WORKS GRID */
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: flex-start; /* important: fixes LHS alignment */
  padding-top: 20px;
}

/* STEPS COLUMN */
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px; /* more breathing space like Deel */
}

/* ONE STEP */
.step {
  display: flex;
  gap: 16px; /* increase spacing between badge + text */
  align-items: flex-start;
}

/* BADGE */
.step-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1c0c3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0; /* prevents resizing */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* STEP BODY */
.step-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.step-body p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 420px; /* matches Deel */
}

/* IMAGE SIDE */
.how-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* aligns image with step titles */
}

.how-image {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* =========================================================
   TRUST & SAFETY
   ========================================================= */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.trust-item {
  flex: 1 1 200px;
  max-width: 260px;
}

.trust-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}

/* =========================================================
   REDDIT COMMUNITY
   ========================================================= */

/* Desktop layout — 2 columns */
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
}

/* Mobile — stack vertically */
@media (max-width: 520px) {
  .community-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-text {
    align-items: center !important;
    text-align: center !important;
  }

  .community-image-wrap {
    order: 2; /* ensures image goes below text */
    display: flex;
    justify-content: center;
  }

  .community-image {
    max-width: 320px;
  }
}

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

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
}

.faq-toggle {
  font-size: 18px;
  margin-left: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.24s ease, padding-bottom 0.24s ease;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 14px;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-bottom: 10px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* =========================================================
   BLOG / RESOURCES
   ========================================================= */

.section-blog {
  background-color: var(--bg-features);
}

/* Grid */
.blog-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card wrapper */
.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* Hover */
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

/* Image */
.blog-image-wrap {
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Content */
.blog-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Meta row */
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tag pill */
.blog-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

/* Date text */
.blog-date {
  opacity: 0.9;
}

/* Title & body */
.blog-title {
  font-size: 18px;
  line-height: 1.35;
  margin: 4px 0 0;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Read more */
.blog-readmore {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-alt);
}

/* =========================================================
   FINAL CTA (VIDEO)
   ========================================================= */

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.9);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(77, 25, 118, 0.9),
    rgba(15, 5, 37, 0.96)
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.section-cta-video .section-lead {
  color: #ffe6f5;
}

.cta-actions {
  text-align: right;
}

.cta-footnote {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}

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

.site-footer {
  background: #070219;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-decoration: none;
  color: var(--text-muted);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* =========================================================
   RESPONSIVE STYLES
   ========================================================= */

/* Medium screens */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }

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

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

  .how-image-wrap {
    order: -1;
    margin-bottom: 26px;
  }

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

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

  .cta-actions {
    text-align: left;
  }
}

/* Tablet */
@media (max-width: 780px) {
  .nav,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.open .nav,
  .site-header.open .nav-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 52px 16px auto 16px;
    background: rgba(8, 2, 24, 0.98);
    border-radius: 20px;
    padding: 14px 16px;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header.open .nav-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-inner {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .social-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 520px) {
  .section {
    padding: 90px 0;
  }

  .hero-inner {
    padding-inline: 4px;
  }

  h1 {
    font-size: 36px;
  }

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

  .creator-img {
    height: 300px;
  }

  .cta-inner {
    gap: 18px;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .value-img {
    width: 64px;
    margin-bottom: 12px;
  }
  .value-item h3 {
    font-size: 14px;
    line-height: 1.32;
  }
  .section-community .section-header h2,
  .section-community .section-header p.section-lead {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .community-text {
    text-align: center !important;
    align-items: center !important;
  }

  .community-grid {
    text-align: center !important;
  }
  .section-trust .section-header h2,
  .section-trust .section-header .section-lead {
    text-align: center;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .trust-item {
    max-width: 340px;
  }

  .trust-item h3 {
    text-align: center;
  }

  .trust-item p {
    text-align: center;
  }

  .trust-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-group {
    flex-direction: column;
    gap: 40px;
    text-align: left; /* or center if you prefer */
  }
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-content {
    padding: 14px 16px 16px;
  }

  .blog-title {
    font-size: 16px;
  }
}
