/*
Theme Name: Creo.io
Theme URI: https://creo.io
Author: Creovate LLC
Author URI: https://creo.io
Description: Custom WordPress theme for Creo.io, the brand growth platform from Creovate LLC. Website builder, AI content tools, creator marketplace, and lead gen — all editable via the WordPress Customizer, native block editor, and Advanced Custom Fields.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creo
*/

/* =========================================================
   Creo io — Design System
   Ported verbatim from the original React app's src/styles.css.
   All tokens use CSS variables so they can be re-themed without
   touching component markup.
   ========================================================= */

:root {
  /* Brand colors */
  --creo-purple: #6B46E0;
  --creo-cyan: #0099CC;
  --creo-gradient: linear-gradient(135deg, #6B46E0, #0099CC);

  /* Surfaces (light) */
  --bg: #F5F7FF;
  --surface: #FFFFFF;
  --surface-2: #F5F7FF;
  --border: #E4E7F2;

  /* Text */
  --text: #0D1528;
  --text-muted: #5A6480;
  --text-on-brand: #FFFFFF;

  /* Status */
  --success: #0A8C5F;
  --warning: #B07000;
  --error: #C0392B;

  /* Section-separation washes (product page) — same low-opacity-tint
     recipe .badge-ai already uses on --creo-cyan, applied to --creo-purple
     instead, so a new zone reads as "part of the family" rather than an
     unrelated color. */
  --related-wash: rgba(107,70,224,.05);
  --related-border: rgba(107,70,224,.14);

  /* Radii */
  --r-btn: 8px;
  --r-card: 14px;
  --r-modal: 20px;
  --r-badge: 99px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(13,21,40,.04), 0 4px 16px rgba(13,21,40,.06);
  --shadow-lg: 0 10px 40px rgba(13,21,40,.12);

  /* Layout */
  --container: 1180px;
  --nav-h: 68px;

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

.dark {
  --bg: #0A0E1F;
  --surface: #111827;
  --surface-2: #0F1424;
  --border: #1F2940;
  --text: #F1F4FF;
  --text-muted: #8A93B0;
  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 4px 16px rgba(0,0,0,.35);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.5);
  --related-wash: rgba(107,70,224,.10);
  --related-border: rgba(107,70,224,.22);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Typography */
h1, h2, h3, h4 { margin: 0; line-height: 1.15; color: var(--text); }
h1 { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 16px; font-weight: 600; }
p { margin: 0; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--creo-purple);
}

.gradient-text {
  background: var(--creo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--creo-cyan);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--creo-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(107,70,224,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(107,70,224,.45); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--creo-purple); color: var(--creo-purple); }
.btn-ghost {
  background: transparent;
  color: var(--creo-purple);
  padding: 8px 12px;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--creo-cyan); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-badge);
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.badge-ai { background: rgba(0,153,204,.12); color: var(--creo-cyan); border-color: rgba(0,153,204,.25); }
.badge-new { background: rgba(10,140,95,.12); color: var(--success); border-color: rgba(10,140,95,.25); }
.badge-addon { background: rgba(176,112,0,.12); color: var(--warning); border-color: rgba(176,112,0,.25); }
.badge-popular { background: var(--creo-gradient); color: #fff; border-color: transparent; }

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--creo-purple);
  box-shadow: var(--shadow-lg);
}
.card-anchor { border-color: var(--creo-purple); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--creo-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.card-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--creo-gradient);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
}
.nav-link { transition: color .15s ease; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .15s ease, border-color .15s ease;
}
.nav-icon-btn:hover { color: var(--creo-purple); border-color: var(--creo-purple); }

.hamburger { display: none; }

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 49;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-size: 16px; font-weight: 600; }

/* ===== Hero ===== */
.hero {
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(107,70,224,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { max-width: 820px; margin: 0 auto 20px; }
.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 18px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Logo strip */
.logo-strip {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.logo-strip-track {
  display: flex;
  gap: 56px;
  animation: scroll-x 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.powered-by-strip { text-align: center; padding: 28px 0 4px; }
.powered-by-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.powered-by-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 14px; }

.portfolio-thumb {
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(107,70,224,.12), rgba(0,153,204,.12));
  color: var(--creo-purple);
}

.logo-dot {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
  color: var(--creo-purple);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Section heading ===== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); }

/* ===== Social proof bar ===== */
.proof-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 24px;
}
.proof-grid.proof-grid-4 { grid-template-columns: repeat(4, 1fr); }
.proof-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.proof-num .gradient-text { display: inline-block; }
.proof-label { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ===== Steps ===== */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  position: relative;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--creo-gradient);
  color: #fff;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--creo-purple); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--creo-purple);
  box-shadow: 0 16px 40px rgba(107,70,224,.18);
}
.price-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
}
.price-tier { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--creo-purple); margin-bottom: 12px; }
.price-amount { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.price-amount small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
/* del/ins appear when a linked Woo product's get_price_html() renders a
   sale price — see template-parts/pricing/pricing-grid.php. */
.price-amount del { color: var(--text-muted); font-size: 20px; font-weight: 500; opacity: 1; }
.price-amount ins { text-decoration: none; color: var(--text); font-weight: 800; }
.price-amount .woocommerce-Price-amount { font-weight: inherit; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text);
}
.price-features svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,14,31,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: 24px;
  animation: fadein .2s ease;
}
.modal {
  background: var(--surface);
  border-radius: var(--r-modal);
  width: 100%;
  max-width: 520px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  animation: pop .25s ease;
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-title { font-size: 20px; font-weight: 700; }
.modal-steps { display: flex; gap: 6px; margin-bottom: 24px; }
.modal-step-dot { flex: 1; height: 4px; border-radius: 99px; background: var(--border); }
.modal-step-dot.active { background: var(--creo-gradient); }
.addon {
  display: flex; gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.addon:hover { border-color: var(--creo-purple); }
.addon.selected { border-color: var(--creo-purple); background: rgba(107,70,224,.06); }
.addon-info { flex: 1; }
.addon-name { font-weight: 600; font-size: 14px; }
.addon-desc { color: var(--text-muted); font-size: 13px; }
.addon-price { font-weight: 700; color: var(--creo-purple); }
.addon-radio, .addon-check {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.addon-radio { border-radius: 50%; }
.addon-check { border-radius: 6px; }
.addon.selected .addon-radio,
.addon.selected .addon-check { background: var(--creo-purple); border-color: var(--creo-purple); }
.summary-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.summary-row.total { font-weight: 700; font-size: 18px; border-bottom: 0; padding-top: 16px; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; }
.modal-error { color: var(--error); font-size: 13px; margin-top: 12px; }

@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

/* ===== Forms ===== */
/* Lead Gen "Book a call" card — gradient pitch panel + form, side by side. */
.leadgen-cta {
  display: grid;
  grid-template-columns: 42% 1fr;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin: 40px 0 32px;
}
.leadgen-cta-pitch {
  background: var(--creo-gradient);
  color: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadgen-cta-pitch .eyebrow { color: rgba(255,255,255,.85); }
.leadgen-cta-pitch h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin: 10px 0 26px;
  text-wrap: balance;
}
.leadgen-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.leadgen-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.leadgen-checklist .check-circle {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.leadgen-cta-form { background: var(--surface); padding: 40px 36px; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.platform-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-check {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--r-btn);
  font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer;
  background: var(--surface-2);
}
.platform-check input { accent-color: var(--creo-purple); }

@media (max-width: 780px) {
  .leadgen-cta { grid-template-columns: 1fr; }
  .form-row-2col { grid-template-columns: 1fr; }
}

.form-grid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--r-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--creo-purple);
  box-shadow: 0 0 0 3px rgba(107,70,224,.15);
}
.form-success { color: var(--success); font-weight: 600; }
.form-error-banner {
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.25);
  color: var(--error);
  border-radius: var(--r-btn);
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===== Filter pills ===== */
.filter-bar { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill {
  padding: 8px 16px;
  border-radius: var(--r-badge);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .15s ease;
}
.filter-pill:hover { color: var(--creo-purple); border-color: var(--creo-purple); }
.filter-pill.active { background: var(--creo-gradient); color: #fff; border-color: transparent; }

/* ===== Creator card ===== */
.creator-card { display: flex; flex-direction: column; gap: 12px; }
.creator-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--creo-gradient);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px;
  overflow: hidden;
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-meta { display: flex; justify-content: space-between; align-items: center; }
.creator-rate { font-weight: 700; color: var(--creo-purple); }

/* ===== CTA banner ===== */
.cta-banner {
  margin-top: 56px;
  padding: 40px;
  border-radius: var(--r-card);
  background: var(--creo-gradient);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 { color: #fff; font-size: 22px; font-weight: 700; }
.cta-banner p { color: rgba(255,255,255,.85); margin-top: 4px; }
.cta-banner .btn { background: #fff; color: var(--creo-purple); }
.cta-banner .btn:hover { background: rgba(255,255,255,.92); }

/* ===== Platform pills ===== */
.platform-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 32px 0 56px; }
.platform-pill {
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-badge);
  font-weight: 600;
  font-size: 13px;
}

/* ===== Footer ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
  margin-top: 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color .15s ease; }
.footer-col a:hover { color: var(--creo-purple); }
.footer-tag { color: var(--text-muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all .15s ease;
}
.footer-social a:hover { color: #fff; background: var(--creo-gradient); border-color: transparent; }

/* ===== Page header ===== */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
}
.page-header h1 { font-size: 42px; margin-bottom: 16px; }
.page-header p { color: var(--text-muted); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ===== Team avatar ===== */
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--creo-gradient);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 32px;
  margin-bottom: 16px;
}

/* ===== Creator single profile ===== */
.creator-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.creator-profile-avatar {
  width: 220px; height: 220px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--creo-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 56px; font-weight: 700;
}
.creator-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ===== WooCommerce chrome minimal reset (full overrides in assets/css/woocommerce.css) ===== */
.woocommerce-page main { padding: 48px 0 96px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .creator-profile { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  .hero { padding: 56px 0 40px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: inline-flex; }
  .grid-3, .grid-4, .grid-2, .pricing-grid, .proof-grid, .proof-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
