/* TPA Profiles — Same design system as TPA News */
/* Fonts: Playfair Display (headings), DM Sans (body) */

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

:root {
  --dark: #002117;
  --dark-light: #003325;
  --dark-lighter: #004433;
  --gold: #c5a059;
  --gold-hover: #d4b06a;
  --gold-muted: #a8884a;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d8;
  --white: #ffffff;
  --text-on-dark: #ffffff;
  --text-on-cream: #002117;
  --text-muted-dark: rgba(255,255,255,0.6);
  --text-muted-cream: #5a6e64;
  --border-dark: rgba(255,255,255,0.1);
  --border-cream: #d9d0c3;
  --red: #d32f2f;
  --red-dark: #9f2222;
  --red-light: #ffebee;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --shadow-soft: 0 18px 42px rgba(0, 33, 23, 0.16);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-on-cream);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
}

body.modal-open {
  overflow: hidden;
}

main {
  flex: 1;
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header {
  background: var(--dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo a {
  color: var(--text-on-dark);
  text-decoration: none;
}
.logo a:hover { text-decoration: none; }

.logo h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--text-on-dark);
}

.logo-accent { color: var(--gold); }

.header-centerline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 120px;
}

.header-centerline-text {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  text-transform: uppercase;
  padding: 0 18px;
}

.header-centerline-text::before,
.header-centerline-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  background: rgba(197, 160, 89, 0.35);
}

.header-centerline-text::before {
  right: 100%;
}

.header-centerline-text::after {
  left: 100%;
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.header-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

.btn-nav {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 6px 16px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  border-bottom: none !important;
}
.btn-nav:hover {
  background: var(--gold-hover) !important;
  border-bottom: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 16px 20px 24px;
  z-index: 99;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); text-decoration: none; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 28px 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand strong { font-size: 14px; color: var(--text-on-dark); }
.footer-brand p { font-size: 12px; color: var(--text-muted-dark); margin-top: 2px; }
.footer-brand p a { color: var(--gold); }
.footer-links { display: flex; gap: 20px; font-size: 13px; }
.footer-links a { color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--gold); text-decoration: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  line-height: 1.4;
  text-align: center;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border-cream);
}
.btn-secondary:hover {
  background: var(--cream-dark);
  color: var(--dark);
}

.btn-danger {
  background: var(--red);
  color: white;
}
.btn-danger:hover {
  background: #b71c1c;
  color: white;
}

.btn-outline-danger {
  background: transparent;
  color: var(--red-dark);
  border: 1px solid rgba(159, 34, 34, 0.22);
}
.btn-outline-danger:hover {
  background: rgba(211, 47, 47, 0.08);
  color: var(--red-dark);
}

.btn-destructive-soft {
  background: var(--red);
  color: var(--white);
}
.btn-destructive-soft:hover {
  background: #b71c1c;
  color: var(--white);
}

.btn-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn-small {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--text-on-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gold { color: var(--gold); }

.hero-desc {
  font-size: 17px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-inline-alert {
  margin-bottom: 20px;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--text-on-dark);
}
.hero-actions .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.hero-refresh .hero-actions .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}

.hero-refresh .hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

/* ============ HOMEPAGE REFRESH ============ */
.home-refresh-page {
  display: flex;
  flex-direction: column;
}

.hero-refresh {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 64px 0 80px;
  min-height: auto;
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 160, 89, 0.06), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.03), transparent 35%),
    linear-gradient(160deg, #001a12 0%, #002117 50%, #001a12 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.hero-refresh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(0,33,23,0.03) 0, rgba(0,33,23,0.03) 1px, transparent 1px, transparent 120px);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.hero-content-refresh {
  max-width: none;
  margin: 0;
}

.hero-refresh .hero-title { color: #ffffff; }

.hero-title-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-title-proof {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-refresh .hero-desc { color: rgba(255,255,255,0.65); }

.hero-refresh .gold { color: var(--gold); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(159, 119, 54, 0.35);
  background: rgba(255,255,255,0.5);
  color: rgba(0,33,23,0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-meta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-meta-pill {
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-meta-number {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-meta-label {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.55;
}

/* Center-aligned hero actions */
.hero-actions-centered {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-actions-centered .btn-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
}

.hero-url-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(159,119,54,0.24);
  border-radius: 10px;
}

.hero-url-label {
  font-size: 12px;
  color: rgba(0,33,23,0.56);
  font-weight: 500;
}

.hero-refresh .hero-url-preview {
  background: rgba(255,255,255,0.06);
  border-color: rgba(197,160,89,0.2);
}

.hero-refresh .hero-url-code { color: rgba(255,255,255,0.9); }

.hero-url-username {
  color: #9f7736;
}

.hero-showcase {
  position: relative;
}

.hero-feature-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,240,232,0.94));
  box-shadow: 0 28px 58px rgba(0, 18, 12, 0.2);
}

.hero-feature-media {
  display: block;
  padding: 12px;
  background: linear-gradient(160deg, #eef2f6, #e6ebf1);
}

.hero-feature-media img,
.hero-feature-video {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,33,23,0.12);
  box-shadow: 0 18px 32px rgba(11, 18, 28, 0.22);
}

.hero-feature-body {
  display: none;
}

.hero-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-feature-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
}

.hero-feature-body p {
  color: var(--text-muted-cream);
  line-height: 1.6;
}

.hero-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-feature-stat {
  border: 1px solid rgba(0,33,23,0.08);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.65);
  display: grid;
  gap: 2px;
}

.hero-feature-stat strong {
  font-size: 18px;
  color: var(--dark);
}

.hero-feature-stat span {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted-cream);
}

.hero-feature-actions {
  margin-top: 4px;
}

.showcase-scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  padding-right: 40px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  mask-image: none;
  -webkit-mask-image: none;
}

/* Right-only overflow variant for two-column hero */
.showcase-scroll-row-right {
  padding-left: 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.showcase-scroll-row::-webkit-scrollbar {
  height: 6px;
}

.showcase-scroll-row::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}

.showcase-scroll-row::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.5);
  border-radius: 3px;
}

.showcase-shell {
  position: relative;
  display: grid;
  gap: 18px;
}

/* Redesigned horizontal showcase cards - wider than tall */
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250, 247, 242, 0.95));
  box-shadow: 0 24px 56px rgba(0, 18, 12, 0.22), 0 8px 24px rgba(0, 18, 12, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: none;
  box-shadow: 0 24px 56px rgba(0, 18, 12, 0.22), 0 8px 24px rgba(0, 18, 12, 0.12);
}

.showcase-card-horizontal {
  flex: 0 0 380px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: row;
  min-height: 180px;
  max-height: 220px;
}

.showcase-card-visual {
  flex: 0 0 140px;
  position: relative;
  overflow: hidden;
}

.showcase-card-visual .showcase-cover {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.showcase-card-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.showcase-card-primary {
  padding: 18px;
}

.showcase-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card-small,
.showcase-card-wide {
  padding: 18px;
}

.showcase-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(235, 228, 216, 0.95));
}

.showcase-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.showcase-chip,
.showcase-mini-stat,
.gallery-label,
.section-kicker,
.journey-step {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 33, 23, 0.06);
  color: var(--dark);
  border: 1px solid rgba(0, 33, 23, 0.08);
}

.showcase-chip-soft {
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.18);
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f3dcac);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.showcase-mini-stat {
  color: var(--gold-muted);
}

.showcase-cover,
.gallery-tile-surface {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #0b2f23;
}

.showcase-cover::before,
.gallery-tile-surface::before,
.showcase-cover::after,
.gallery-tile-surface::after {
  content: '';
  position: absolute;
  inset: 0;
}

.showcase-cover {
  height: 160px;
  margin-bottom: 16px;
}

.showcase-cover::before,
.gallery-tile-surface::before {
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.28), transparent 0 16%),
    radial-gradient(circle at 70% 28%, rgba(255,255,255,0.14), transparent 0 18%),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 48%);
}

.showcase-cover::after,
.gallery-tile-surface::after {
  background:
    linear-gradient(0deg, rgba(0,0,0,0.26), rgba(0,0,0,0.02)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 86px);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.showcase-cover-aurora {
  background-image: url('/images/previews/ai-task-os.png');
  background-size: cover;
  background-position: center;
}

.showcase-cover-graph {
  background-image: url('/images/previews/if-youre-reading-this.png');
  background-size: cover;
  background-position: center;
}

.showcase-cover-editorial {
  background-image: url('/images/previews/sales-pipeline-radar.png');
  background-size: cover;
  background-position: center;
}

.showcase-cover-research {
  background-image: url('/images/previews/ecommerce-pulse-board.png');
  background-size: cover;
  background-position: center;
}

.showcase-copy h3,
.showcase-card-small h4,
.gallery-tile-copy h4,
.proof-card h4,
.journey-card h4,
.cta-studio-card h3,
.dual-signal-panel h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
}

.showcase-copy h3 {
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.showcase-copy h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.2;
  color: var(--dark);
}

.showcase-copy p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted-cream);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-card-small p,
.showcase-wide-copy,
.section-heading-copy,
.proof-card p,
.dual-signal-panel p,
.signal-list li,
.gallery-tile-copy,
.journey-card p,
.cta-studio-copy {
  color: var(--text-muted-cream);
  line-height: 1.65;
}

.showcase-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.showcase-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 33, 23, 0.05);
  border: 1px solid rgba(0, 33, 23, 0.06);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted-cream);
}

.showcase-card-small h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.showcase-wide-copy {
  max-width: 540px;
}

.home-marquee {
  padding: 18px 0;
  background: rgba(0, 33, 23, 0.98);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.home-marquee-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-marquee-track span {
  position: relative;
}

.home-marquee-track span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-muted);
  opacity: 0.6;
}

.home-section {
  padding: 96px 0;
}

.home-proof-section,
.home-gallery-section,
.home-skill-gallery-section,
.home-cta-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(250, 247, 242, 0.98));
}

.home-skill-gallery-section .section-heading-wrap {
  margin-bottom: 24px;
}

.skill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.skill-tab {
  border: 1px solid rgba(0, 33, 23, 0.14);
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.skill-tab.is-active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.skill-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.skill-gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skill-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}


.skill-gallery-card-chrome {
  height: 30px;
  background: #0f0f1a;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.skill-gallery-card-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.skill-gallery-card-chrome span:nth-child(1) { background: #ff5f57; }
.skill-gallery-card-chrome span:nth-child(2) { background: #febc2e; }
.skill-gallery-card-chrome span:nth-child(3) { background: #28c840; }

.skill-gallery-card img,
.skill-gallery-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,33,23,0.08);
  background: #f0f3f7;
  filter: saturate(0.88) contrast(1.02) brightness(1.04);
}

.skill-gallery-video {
  pointer-events: none;
}

.skill-gallery-card > div {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.skill-gallery-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

.skill-gallery-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted-cream);
}

.skill-gallery-link {
  display: inline-flex;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold-muted);
  text-decoration: none;
}

.skill-gallery-link:hover {
  color: var(--gold-hover);
  text-decoration: none;
}

.home-letter-section,
.home-dual-section,
.home-journey-section {
  background: transparent;
}

.home-letter-section {
  padding: 80px 0;
}

.founder-letter-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid rgba(197, 160, 89, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250, 247, 242, 0.95));
  box-shadow: 0 24px 56px rgba(0, 33, 23, 0.08);
  max-width: 760px;
  margin: 0 auto;
}

.founder-letter-intro {
  display: grid;
  align-content: start;
  gap: 16px;
}

.founder-letter-intro .section-heading-large {
  font-size: 32px;
  line-height: 1.2;
}

.founder-letter-body {
  display: grid;
  gap: 18px;
}

.founder-letter-body p {
  margin: 0;
  color: var(--text-muted-cream);
  font-size: 16px;
  line-height: 1.75;
}

.founder-letter-signoff {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.signoff-text {
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.signoff-signature {
  color: var(--gold-muted);
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

.section-heading-wrap {
  display: grid;
  gap: 8px;
  margin-bottom: 48px;
}

.section-heading-wrap .section-heading-copy {
  margin-top: 12px;
}

/* Quick Start Section */
.home-quickstart-section {
  padding: 100px 0;
  background: var(--dark);
}

.home-quickstart-section .section-heading-large {
  color: var(--white);
  margin-bottom: 12px;
}

.home-quickstart-section .section-heading-copy {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
}

.quickstart-header {
  text-align: center;
  margin-bottom: 48px;
}

.quickstart-terminal {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #0d1f1a 0%, #0a1814 100%);
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 500;
}

.terminal-body {
  padding: 32px;
}

.terminal-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.terminal-step:last-child {
  margin-bottom: 0;
}

.terminal-prompt {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.terminal-content {
  flex: 1;
}

.terminal-command {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 500;
  display: block;
  line-height: 1.4;
}

.terminal-comment {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-family: 'SF Mono', Monaco, monospace;
  display: block;
  margin-top: 6px;
}

.terminal-cta {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.terminal-cta .btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  min-width: 200px;
}

.terminal-cta .btn-primary:hover {
  background: var(--gold-hover);
}

/* Centered quickstart header */
.quickstart-header-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.quickstart-header-centered .section-heading-large {
  max-width: 600px;
}

.quickstart-header-centered .section-heading-copy {
  max-width: 520px;
}

/* New Installer Box */
.quickstart-installer {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #0d1f1a 0%, #0a1814 100%);
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.installer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.installer-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
}

.installer-body {
  padding: 40px 32px;
}

.installer-command-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 16px;
}

.installer-command {
  flex: 1;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: none;
  overflow-x: auto;
  white-space: nowrap;
}

.installer-copy-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.installer-copy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.installer-copy-btn.copied {
  background: rgba(46, 125, 50, 0.25);
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
}

.installer-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
  margin: 0;
}

.installer-cta {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.installer-cta .btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  min-width: 200px;
}

.installer-cta .btn-primary:hover {
  background: var(--gold-hover);
}

/* Features Section - Clean Simple Style */
.home-features-section {
  padding: 100px 0;
  background: var(--cream);
}

.features-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-simple-item {
  text-align: center;
}

.feature-simple-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}

.feature-simple-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-simple-item p {
  font-size: 15px;
  color: var(--text-muted-cream);
  line-height: 1.6;
  margin: 0;
}

/* Legacy feature-pill styles (keep for compatibility) */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border-cream);
  box-shadow: 0 4px 24px rgba(0, 33, 23, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 33, 23, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.04));
  border-radius: 14px;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-muted-cream);
  line-height: 1.55;
  margin: 0;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading-center {
  text-align: center;
  justify-items: center;
}

.section-heading-large {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  line-height: 1.1;
  color: var(--dark);
  max-width: 820px;
  letter-spacing: -0.02em;
}

.section-kicker {
  color: var(--gold-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading-copy {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted-cream);
  max-width: 640px;
  margin-top: 16px;
}

.narrow-copy {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.journey-grid {
  display: flex;
  gap: 0;
  position: relative;
  align-items: flex-start;
}

.proof-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 48px rgba(0, 33, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journey-card {
  flex: 1;
  text-align: center;
  padding: 24px 32px;
  border: none;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(0, 33, 23, 0.1);
}

.journey-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 0;
  width: 50%;
  height: 2px;
  background: rgba(197, 160, 89, 0.2);
}

.journey-card:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 50%;
  height: 2px;
  background: rgba(197, 160, 89, 0.2);
}

.proof-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.05));
  color: var(--gold-muted);
  font-size: 20px;
}

.proof-card h4 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.journey-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(197, 160, 89, 0.3);
}

.journey-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}

.journey-card p {
  font-size: 14px;
  color: var(--text-muted-cream);
  line-height: 1.6;
}

.dual-signal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.dual-signal-panel {
  padding: 40px;
  border-radius: 28px;
}

.dual-signal-panel-dark {
  color: var(--text-on-dark);
  background: linear-gradient(135deg, rgba(0, 33, 23, 0.98), rgba(6, 55, 41, 0.94));
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.dual-signal-panel-dark h3,
.dual-signal-panel-dark .signal-list li,
.dual-signal-panel-dark .section-kicker {
  color: var(--text-on-dark);
}

.dual-signal-panel-dark .signal-list li {
  color: rgba(255,255,255,0.75);
}

.dual-signal-panel-dark .section-kicker {
  color: var(--gold);
  opacity: 0.9;
}

.dual-signal-panel-light {
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245, 240, 232, 0.95));
}

.dual-signal-panel h3 {
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 16px;
  margin-top: 12px;
}

.signal-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 24px;
}

.signal-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
}

.signal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold);
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 24px;
}

.gallery-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 20px 48px rgba(0, 33, 23, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 33, 23, 0.12);
}

.gallery-tile-tall {
  grid-row: span 2;
  min-height: 584px;
}

.gallery-tile-wide {
  grid-column: 2 / -1;
}

.gallery-tile-surface {
  position: absolute;
  inset: 0;
}

.gallery-tile-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--white);
}

.gallery-tile-copy h4 {
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
  margin-top: 8px;
  max-width: 300px;
}

.gallery-tone-ink .gallery-tile-surface {
  background-image: url('/images/previews/ai-task-os.png');
  background-size: cover;
  background-position: center;
}

.gallery-tone-sand .gallery-tile-surface {
  background-image: url('/images/previews/if-youre-reading-this.png');
  background-size: cover;
  background-position: center;
}

.gallery-tone-moss .gallery-tile-surface {
  background-image: url('/images/previews/sales-pipeline-radar.png');
  background-size: cover;
  background-position: center;
}

.gallery-tone-gold .gallery-tile-surface {
  background-image: url('/images/previews/ecommerce-pulse-board.png');
  background-size: cover;
  background-position: center;
}

.cta-studio-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  border-radius: 32px;
  color: var(--text-on-dark);
  background: linear-gradient(135deg, rgba(0, 33, 23, 0.98), rgba(7, 65, 48, 0.94));
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 24px 64px rgba(0, 33, 23, 0.2);
}

.cta-studio-content {
  max-width: 640px;
}

.cta-studio-card h3 {
  color: var(--white);
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 16px;
  margin-top: 12px;
}

.cta-studio-card .section-kicker {
  color: var(--gold);
  opacity: 0.9;
}

.cta-studio-copy {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
}

.cta-studio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-studio-actions .btn-lg {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 15px;
}

/* ============ FEATURES ============ */
.features {
  padding: 64px 0;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted-cream);
  line-height: 1.5;
}

/* ============ AUTH FORMS ============ */
.auth-wrapper {
  display: flex;
  justify-content: center;
  padding: 48px 0 64px;
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 28px rgba(0, 33, 23, 0.06);
}

.auth-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: var(--text-muted-cream);
  margin-bottom: 24px;
}

.auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted-cream);
  margin-top: 24px;
}

/* ============ FORMS ============ */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-cream);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.input-disabled {
  background: var(--cream) !important;
  color: var(--text-muted-cream) !important;
  cursor: not-allowed;
}

.optional {
  font-weight: 400;
  color: var(--text-muted-cream);
}

.field-hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted-cream);
  margin-top: 4px;
}

.project-proof-panel {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.08), rgba(245, 240, 232, 0.78));
}

.project-proof-panel-header {
  margin-bottom: 14px;
}

.project-proof-panel-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 6px;
}

.project-proof-panel-header h3 {
  font-size: 18px;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 6px;
}

.project-proof-panel-header p {
  font-size: 13px;
  color: var(--text-muted-cream);
}

.project-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.project-proof-field {
  margin-bottom: 0;
}

.project-proof-tip {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 33, 23, 0.04);
  border: 1px solid rgba(0, 33, 23, 0.08);
  font-size: 13px;
  color: var(--dark);
}

.project-proof-tip strong {
  font-weight: 700;
}

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

.form-actions-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.chip-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.chip-input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.input-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.12);
  color: var(--dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.input-chip:hover {
  background: rgba(197, 160, 89, 0.2);
}

.chip-remove {
  font-size: 16px;
  line-height: 1;
  color: var(--gold-muted);
}

.chip-text-input {
  flex: 1;
  min-width: 140px;
  min-height: 32px !important;
  border: none !important;
  box-shadow: none !important;
  padding: 6px 2px !important;
  background: transparent !important;
}

.submit-btn {
  justify-content: center;
  min-width: 170px;
}

.submit-btn.is-loading {
  opacity: 1;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 16px;
  height: 16px;
  animation: spin 0.85s linear infinite;
}

.spinner-track,
.spinner-head {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.spinner-track {
  opacity: 0.25;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Input with prefix */
.input-with-prefix {
  display: flex;
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  overflow: hidden;
}
.input-with-prefix .input-prefix {
  background: var(--cream);
  padding: 10px 8px;
  font-size: 12px;
  color: var(--text-muted-cream);
  white-space: nowrap;
  border-right: 1px solid var(--border-cream);
  display: flex;
  align-items: center;
}
.input-with-prefix input {
  border: none;
  border-radius: 0;
}
.input-with-prefix input:focus {
  box-shadow: none;
}

/* Field status */
.field-status {
  font-size: 13px;
  margin-top: 4px;
  min-height: 20px;
}
.status-success { color: var(--green); }
.status-error { color: var(--red); }
.status-checking { color: var(--text-muted-cream); }

/* OTP input */
.otp-input {
  font-size: 28px !important;
  letter-spacing: 10px;
  text-align: center;
  font-family: monospace !important;
  font-weight: 700;
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-error {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(211, 47, 47, 0.2);
}
.alert-success {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

/* Wizard */
.step-indicator {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Checkbox */
.terms-box {
  margin: 20px 0;
}
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

/* ============ DASHBOARD ============ */
.dashboard-layout {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-intro-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0, 33, 23, 0.98), rgba(0, 51, 37, 0.96));
  color: var(--text-on-dark);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.dashboard-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.project-success-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245, 240, 232, 0.98));
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow: 0 18px 38px rgba(0, 33, 23, 0.08);
}

.project-success-copy h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 12px;
}

.project-success-lede {
  color: var(--text-muted-cream);
  line-height: 1.65;
}

.project-success-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.project-success-link-block {
  margin-bottom: 0;
  height: 100%;
}

.project-success-actions-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.project-success-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.project-success-actions .btn {
  width: 100%;
}

.project-success-feedback {
  min-height: 20px;
  margin-bottom: 0;
}

.project-success-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted-cream);
}

.dashboard-primary-column,
.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dashboard-intro-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
}

.dashboard-intro-copy {
  max-width: 700px;
  color: rgba(255,255,255,0.75);
}

.dashboard-tour-link-wrap {
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.tour-relaunch-link {
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.tour-relaunch-link:hover {
  color: var(--gold);
}

.tour-relaunch-link[hidden] {
  display: none !important;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  padding: 24px;
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dash-card-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

/* Profile card */
.profile-link-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.profile-avatar {
  flex-shrink: 0;
}

.avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-image-small {
  width: 48px;
  height: 48px;
}

.avatar-image-large {
  width: 100px;
  height: 100px;
}

.avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-fallback-small {
  width: 48px;
  height: 48px;
}

.avatar-fallback-large {
  width: 100px;
  height: 100px;
}

.profile-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.profile-username {
  font-size: 14px;
  color: var(--text-muted-cream);
}

.profile-url-row {
  margin-bottom: 12px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.96), rgba(235, 228, 216, 0.92));
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 14px;
}

.profile-url-input {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--border-cream);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted-cream);
  background: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-url-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.profile-share-btn {
  min-width: 0;
  flex: 1 1 0;
}

.share-platform-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.profile-share-btn-linkedin {
  border-color: rgba(10, 102, 194, 0.2);
}

.profile-share-btn-linkedin:hover {
  color: #0a66c2;
}

.profile-share-btn-github {
  border-color: rgba(36, 41, 47, 0.16);
}

.profile-share-btn-github:hover {
  color: #24292f;
}

.copy-feedback {
  min-height: 20px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted-cream);
}

.copy-feedback[data-tone="success"] {
  color: var(--green);
}

.copy-feedback[data-tone="error"] {
  color: var(--red);
}

#copyBtn.is-success {
  background: var(--green);
  color: var(--white);
}

#copyBtn.is-error {
  background: var(--red);
  color: var(--white);
}

.profile-stats {
  display: flex;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.inline-alert {
  margin-bottom: 20px;
}

.profile-card-footer-corner {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
}

.subtle-destructive-link {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: rgba(159, 34, 34, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(159, 34, 34, 0.32);
  text-underline-offset: 2px;
  cursor: pointer;
}

.subtle-destructive-link:hover {
  color: var(--red-dark);
  text-decoration-color: rgba(159, 34, 34, 0.55);
}

.stat {
  display: flex;
  flex-direction: column;
  min-width: 110px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted-cream);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  margin-bottom: 16px;
}

.empty-icon-image {
  width: min(160px, 48vw);
  max-width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: inline-block;
  border-radius: 16px;
}

@media (max-width: 480px) {
  .empty-icon-image {
    width: min(132px, 56vw);
  }
}

.empty-state h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.empty-state p {
  font-size: 14px;
  color: var(--text-muted-cream);
  margin-bottom: 20px;
}

/* Projects list (dashboard) */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-cream);
}
.project-item:last-child { border-bottom: none; }

.project-item-info {
  min-width: 0;
  flex: 1;
}

.project-item-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.project-desc {
  font-size: 13px;
  color: var(--text-muted-cream);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--cream);
  border: 1px solid var(--border-cream);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted-cream);
}

.project-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.news-card {
  position: sticky;
  top: 92px;
}

.dash-card-header-tight {
  align-items: flex-start;
}

.news-view-all {
  font-size: 13px;
  font-weight: 600;
}

.dashboard-news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard-news-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-cream);
}

.dashboard-news-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.dashboard-news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.dashboard-news-item h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.dashboard-news-item h3 a {
  color: var(--dark);
}

.dashboard-news-item h3 a:hover {
  color: var(--gold-hover);
}

.dashboard-news-item p,
.news-empty-state p {
  font-size: 14px;
  color: var(--text-muted-cream);
  line-height: 1.55;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 33, 23, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-card {
  position: relative;
  width: min(100%, 480px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.modal-card-wide {
  width: min(100%, 560px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-cream);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-muted-cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--dark);
  background: var(--cream);
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 10px;
}

.modal-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 10px;
}

.modal-copy {
  color: var(--text-muted-cream);
  margin-bottom: 20px;
}

.modal-benefit-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.modal-benefit-item {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.9), rgba(235, 228, 216, 0.82));
  color: var(--text-on-cream);
  font-size: 14px;
  line-height: 1.55;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}


.share-modal-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245, 240, 232, 0.98));
}

.share-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  padding-right: 44px;
}

.share-modal-brand {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.share-modal-brand-linkedin {
  color: var(--white);
  background: linear-gradient(135deg, #0a66c2, #004182);
}

.share-modal-brand-github {
  color: var(--white);
  background: linear-gradient(135deg, #24292f, #0d1117);
}

.share-modal-brand-icon {
  width: 26px;
  height: 26px;
}

.share-modal-eyebrow {
  color: var(--gold);
  margin-bottom: 8px;
}

.share-modal-steps {
  margin-bottom: 18px;
}

.share-link-block {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: rgba(255,255,255,0.75);
}

.share-link-block-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}

.share-link-block-value {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.share-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-modal-actions .btn {
  flex: 1 1 220px;
}

.share-modal-feedback {
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============ PUBLIC PROFILE ============ */
.profile-page {
  padding: 48px 0;
  max-width: 720px;
  margin: 0 auto;
}

.profile-header {
  text-align: center;
  margin-bottom: 48px;
}

.profile-avatar-large {
  margin-bottom: 20px;
}

.profile-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.profile-handle {
  font-size: 16px;
  color: var(--text-muted-cream);
  margin-bottom: 16px;
}

.profile-meta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.profile-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted-cream);
}
.profile-meta-link:hover { color: var(--gold); }

.profile-meta-views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted-cream);
}

.profile-about {
  font-size: 15px;
  color: var(--text-on-cream);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.profile-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.profile-share-feedback {
  min-height: 22px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted-cream);
}

/* Projects grid */
.profile-projects {
  margin-top: 32px;
}

.section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-cream);
  padding-bottom: 6px;
  margin-bottom: 24px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}

.project-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.project-card-desc {
  font-size: 14px;
  color: var(--text-muted-cream);
  line-height: 1.6;
  margin-bottom: 12px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.project-video-shell {
  margin: 18px 0 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.72), rgba(255, 255, 255, 0.96));
}

.project-video-frame,
.video-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #00130d;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.project-video-frame iframe,
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-video-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.project-video-provider {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.project-card-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.18);
}
.project-link:hover {
  color: var(--gold-hover);
  background: rgba(197, 160, 89, 0.14);
  text-decoration: none;
}

.project-link-button {
  font-family: inherit;
  cursor: pointer;
}

.project-link-highlight {
  color: var(--dark);
  background: rgba(197, 160, 89, 0.16);
  border-color: rgba(197, 160, 89, 0.3);
}

.project-link-highlight:hover {
  color: var(--dark);
}

.modal-card-video {
  width: min(100%, 960px);
  padding: 26px;
}

.video-modal-eyebrow {
  color: var(--gold);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-right: 44px;
}

.video-modal-header h3 {
  margin-bottom: 0;
}

.video-modal-frame {
  border-radius: 18px;
}

.profile-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted-cream);
}

/* Avatar uploader */
.avatar-upload-card {
  border: 1px solid var(--border-cream);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.8), rgba(255,255,255,0.95));
  padding: 22px;
  margin-bottom: 24px;
}

.avatar-upload-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.avatar-upload-layout {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}

.avatar-preview-shell {
  flex-shrink: 0;
}

.avatar-preview-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 3px solid rgba(197, 160, 89, 0.35);
  background: var(--cream);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 33, 23, 0.05);
}

.avatar-preview-frame.large {
  width: 132px;
  height: 132px;
}

.avatar-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-upload-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.avatar-hint {
  font-size: 12px;
  color: var(--text-muted-cream);
}

.upload-status {
  min-height: 20px;
  font-size: 13px;
  color: var(--text-muted-cream);
}

.account-danger-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.account-danger-zone-copy h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.account-danger-zone-copy p:last-child {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted-cream);
  max-width: 480px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.crop-modal-card {
  width: min(100%, 640px);
}

.cropper-stage-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 33, 23, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.cropper-stage {
  width: 100%;
  height: min(62vh, 420px);
}

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

.cropper-controls {
  margin-top: 16px;
}

.cropper-controls label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cropper-controls input[type="range"] {
  width: 100%;
}

/* ============ SHEPHERD TOUR ============ */
.shepherd-element.tpa-shepherd-theme {
  width: min(380px, calc(100vw - 24px));
  max-width: min(380px, calc(100vw - 24px));
}

.shepherd-element.tpa-shepherd-theme .shepherd-content {
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.shepherd-element.tpa-shepherd-theme .shepherd-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  padding: 18px 20px 0;
}

.shepherd-element.tpa-shepherd-theme .shepherd-title {
  min-width: 0;
  flex: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.shepherd-element.tpa-shepherd-theme .shepherd-cancel-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--text-muted-cream);
  transition: background 0.15s ease, color 0.15s ease;
}

.shepherd-element.tpa-shepherd-theme .shepherd-cancel-icon:hover {
  background: rgba(0, 33, 23, 0.06);
  color: var(--dark);
}

.shepherd-element.tpa-shepherd-theme .shepherd-text {
  padding: 10px 20px 0;
  color: var(--text-muted-cream);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.shepherd-element.tpa-shepherd-theme .shepherd-text p {
  margin-bottom: 0;
}

.shepherd-element.tpa-shepherd-theme .shepherd-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 20px 20px;
  gap: 10px;
}

.shepherd-element.tpa-shepherd-theme .shepherd-button {
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.shepherd-element.tpa-shepherd-theme .shepherd-button:not(.shepherd-button-secondary) {
  background: var(--gold);
  color: var(--dark);
}

.shepherd-element.tpa-shepherd-theme .shepherd-button.shepherd-button-secondary {
  background: var(--cream);
  color: var(--dark);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content-refresh {
    text-align: center;
  }

  .hero-showcase {
    margin-right: 0;
    order: -1;
  }

  .showcase-scroll-row {
    padding-right: 20px;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 960px) {
  .dashboard-layout-grid,
  .project-success-card,
  .founder-letter-card,
  .dual-signal-layout,
  .gallery-grid,
  .proof-grid,
  .cta-studio-card,
  .features-simple {
    grid-template-columns: 1fr;
  }

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

  .features-simple {
    gap: 40px;
    max-width: 480px;
  }

  .project-success-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card {
    position: static;
  }

  .gallery-tile-tall,
  .gallery-tile-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-tile-tall {
    min-height: 320px;
  }

  .cta-studio-actions {
    justify-content: flex-start;
  }

  .cta-studio-card {
    padding: 36px;
    gap: 32px;
  }

  .dual-signal-panel {
    padding: 32px;
  }

  .home-section {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-centerline { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 56px; gap: 12px; }
  .logo { min-width: 0; }
  .logo h1 { font-size: 17px; }
  .tagline { letter-spacing: 0.35px; }
  .mobile-nav {
    top: 56px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .hero { padding: 56px 0; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-actions .btn {
    width: 100%;
  }

  .hero-refresh {
    padding: 48px 0 56px;
  }

  .hero-actions-centered {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-centered .btn-lg {
    width: 100%;
  }

  .hero-url-preview {
    justify-content: center;
    text-align: center;
    padding: 12px;
  }

  .hero-url-code {
    font-size: 12px;
    word-break: break-all;
  }

  .showcase-card-horizontal {
    flex: 0 0 320px;
    min-height: 160px;
  }

  .showcase-card-visual {
    flex: 0 0 120px;
  }

  .hero-feature-body h3 {
    font-size: 24px;
  }

  .hero-feature-stats {
    grid-template-columns: 1fr;
  }

  .skill-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .skill-tab {
    white-space: nowrap;
  }

  .hero-meta-pill,
  .cta-studio-actions .btn,
  .showcase-card-grid {
    width: 100%;
  }

  .showcase-card-grid {
    grid-template-columns: 1fr;
  }

  .showcase-copy h3,
  .section-heading-large,
  .dual-signal-panel h3,
  .cta-studio-card h3 {
    font-size: 28px;
  }

  .section-heading-large {
    font-size: 30px;
  }

  .proof-card,
  .journey-card,
  .dual-signal-panel,
  .founder-letter-card {
    padding: 28px 24px;
  }

  .cta-studio-card {
    padding: 32px 24px;
  }

  .gallery-tile-copy h4 {
    font-size: 22px;
  }

  .features { padding: 48px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px 20px; }

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

  .home-section {
    padding: 56px 0;
  }

  .home-quickstart-section {
    padding: 64px 0;
  }

  .terminal-body {
    padding: 24px;
  }

  .terminal-cta {
    padding: 20px 24px;
  }

  .installer-body {
    padding: 28px 20px;
  }

  .installer-command-wrap {
    padding: 16px;
    gap: 10px;
  }

  .installer-command {
    font-size: 12px;
    width: 100%;
  }

  .installer-cta {
    padding: 20px 24px;
  }

  .auth-wrapper { padding: 28px 0 40px; }
  .auth-card { padding: 24px; }
  .auth-title { font-size: 24px; }
  .auth-subtitle { font-size: 14px; }
  .form-row,
  .project-proof-grid { grid-template-columns: 1fr; }
  .project-proof-panel { padding: 16px; }
  .project-proof-panel-header h3 { font-size: 17px; }
  .project-proof-tip { font-size: 12px; }
  .form-actions-row { flex-direction: column-reverse; align-items: stretch; }
  .form-actions-row .btn,
  .modal-actions .btn { width: 100%; justify-content: center; }
  .chip-text-input { min-width: 110px; }

  .input-with-prefix {
    flex-direction: column;
    overflow: visible;
  }

  .input-with-prefix .input-prefix {
    border-right: none;
    border-bottom: 1px solid var(--border-cream);
    justify-content: flex-start;
    padding: 10px 12px;

    font-size: 12px;
  }

  .avatar-upload-card { padding: 20px; }

  .avatar-upload-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .avatar-preview-shell,
  .avatar-upload-controls {
    width: 100%;
  }

  .avatar-preview-frame.large {
    margin: 0 auto;
  }

  .avatar-upload-controls .btn {
    width: 100%;
    justify-content: center;
  }

  .account-danger-zone {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-layout { padding: 24px 0 40px; }

  .dashboard-intro-card,
  .project-success-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .dashboard-intro-card h2 {
    font-size: 26px;
  }

  .project-success-copy h2 {
    font-size: 24px;
  }

  .project-success-link-grid,
  .project-success-actions {
    grid-template-columns: 1fr;
  }

  .dash-card { padding: 20px; }

  .dash-card-header {
    align-items: flex-start;
  }

  .dash-card-header .btn,
  .news-view-all {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .profile-link-row {
    align-items: flex-start;
  }

  .profile-stats {
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-links { flex-wrap: wrap; gap: 12px; }

  .project-item { flex-direction: column; }
  .project-item-actions {
    align-self: stretch;
    width: 100%;
  }
  .project-item-actions .btn {
    flex: 1 1 0;
    justify-content: center;
  }

  .modal-backdrop {
    padding: 16px;
    align-items: flex-end;
  }

  .modal-card {
    width: 100%;
    max-height: min(90vh, 760px);
    padding: 24px 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

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

  .modal-actions {
    flex-direction: column-reverse;
  }

  .profile-page {
    padding: 32px 0 40px;
  }

  .profile-header {
    margin-bottom: 36px;
  }

  .profile-name { font-size: 28px; }
  .profile-meta-row {
    gap: 12px;
  }

  .profile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-actions .btn {
    width: 100%;
  }

  .profile-url-row {
    padding: 12px;
  }
  .profile-url-input {
    width: 100%;
  }

  .profile-url-actions {
    flex-direction: column;
  }

  .profile-share-btn {
    width: 100%;
    justify-content: center;
    flex: 1 1 auto;
  }

  .share-modal-header {
    gap: 14px;
    padding-right: 38px;
  }

  .share-modal-brand {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .share-modal-actions {
    flex-direction: column;
  }

  .share-modal-actions .btn {
    width: 100%;
    flex-basis: auto;
  }

  .project-card {
    padding: 20px;
  }

  .project-video-meta {
    align-items: stretch;
  }

  .project-video-meta .project-link {
    width: 100%;
    justify-content: center;
  }

  .video-modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 36px;
  }

  .video-modal-header .project-link {
    width: 100%;
    justify-content: center;
  }

  .project-card-links {
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .shepherd-element.tpa-shepherd-theme {
    width: min(100vw - 16px, 360px);
    max-width: min(100vw - 16px, 360px);
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-content {
    border-radius: 16px;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-header {
    padding: 16px 16px 0;
    gap: 10px;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-title {
    font-size: 20px;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-text {
    padding: 8px 16px 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-footer {
    padding: 16px;
    justify-content: stretch;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-button {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo h1 { font-size: 15px; }
  .hero-title { font-size: 26px; }
  .container { padding: 0 16px; }
  .input-with-prefix .input-prefix { font-size: 11px; padding: 9px 12px; }
  .otp-input {
    font-size: 22px !important;
    letter-spacing: 6px;
  }

  .hero-badge,
  .home-marquee-track {
    letter-spacing: 0.08em;
  }

  .hero-badge {
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero-meta-pill,
  .showcase-card-primary,
  .showcase-card-small,
  .showcase-card-wide {
    padding: 16px;
  }

  .showcase-card-horizontal {
    flex: 0 0 286px;
    min-height: 154px;
  }

  .showcase-card-visual {
    flex: 0 0 102px;
  }

  .skill-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-body h3 {
    font-size: 22px;
  }

  .hero-url-preview {
    padding: 10px;
    justify-content: center;
    text-align: center;
  }

  .hero-url-label {
    width: 100%;
  }

  .installer-command-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .installer-copy-btn {
    align-self: flex-end;
  }

  .showcase-card-body {
    padding: 16px;
  }

  .showcase-copy h3 {
    font-size: 17px;
  }

  .showcase-copy h4 {
    font-size: 16px;
  }

  .showcase-copy p {
    font-size: 12px;
  }

  .showcase-cover {
    height: 160px;
  }

  .section-heading-large,
  .dual-signal-panel h3,
  .cta-studio-card h3,
  .gallery-tile-copy h4,
  .proof-card h4 {
    font-size: 22px;
  }

  .section-heading-large {
    font-size: 26px;
  }

  .dual-signal-panel h3,
  .cta-studio-card h3 {
    font-size: 24px;
  }

  .cta-studio-actions {
    flex-direction: column;
  }

  .cta-studio-actions .btn-lg {
    width: 100%;
  }

  .profile-link-row {
    align-items: flex-start;
    gap: 12px;
  }

  .profile-info h3 {
    font-size: 17px;
  }

  .profile-url-row {
    padding: 10px;
    border-radius: 12px;
  }

  .profile-url-input {
    font-size: 12px;
    padding: 10px 11px;
  }

  .copy-feedback,
  .profile-share-feedback {
    font-size: 12px;
    line-height: 1.5;
  }

  .project-item-actions {
    flex-direction: column;
  }

  .project-item-actions .btn,
  .project-link {
    width: 100%;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal-card {
    padding: 22px 16px 16px;
  }

  .modal-card-video {
    padding: 22px 16px 16px;
  }

  .project-video-shell {
    padding: 12px;
  }

  .shepherd-element.tpa-shepherd-theme {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-header {
    padding: 14px 14px 0;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-title {
    font-size: 18px;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-cancel-icon {
    width: 32px;
    height: 32px;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-text {
    padding: 8px 14px 0;
  }

  .shepherd-element.tpa-shepherd-theme .shepherd-footer {
    padding: 14px;
  }
}

.submit-btn {
  position: relative;
}

.submit-btn .btn-label,
.submit-btn .btn-loading {
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:not(.is-loading) .btn-label {
  display: inline-flex;
}

.submit-btn:not(.is-loading) .btn-loading {
  display: none;
}

.submit-btn.is-loading .btn-label {
  display: none;
}

.submit-btn.is-loading .btn-loading {
  display: inline-flex;
}

.submit-btn .btn-label[hidden],
.submit-btn .btn-loading[hidden] {
  display: none !important;
}

.legal-page {
  padding: 40px 0 72px;
}

.legal-shell {
  max-width: 920px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 33, 23, 0.08);
  overflow: hidden;
}

.legal-hero {
  padding: 36px 36px 28px;
  background: linear-gradient(135deg, rgba(0, 33, 23, 0.98), rgba(0, 51, 37, 0.95));
  color: var(--text-on-dark);
  border-bottom: 2px solid rgba(197, 160, 89, 0.45);
}

.legal-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.legal-hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-meta {
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}

.legal-lead {
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  line-height: 1.7;
}

.legal-contact-card {
  margin: 28px 36px 0;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  background: rgba(197, 160, 89, 0.08);
  display: grid;
  gap: 6px;
}

.legal-content {
  padding: 28px 36px 36px;
}

.legal-content section + section {
  margin-top: 28px;
}

.legal-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text-on-cream);
  line-height: 1.75;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 12px;
}

.legal-content ul {
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 28px 0 48px;
  }

  .legal-hero,
  .legal-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-contact-card {
    margin-left: 22px;
    margin-right: 22px;
  }

  .legal-hero h2 {
    font-size: 30px;
  }

  .legal-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .legal-hero,
  .legal-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-contact-card {
    margin-left: 18px;
    margin-right: 18px;
    padding: 16px;
  }

  .legal-hero h2 {
    font-size: 26px;
  }

  .legal-content h3 {
    font-size: 20px;
  }
}


/* === Hero Social Proof === */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.proof-avatar-stack {
  display: flex;
}
.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-right: -8px;
  flex-shrink: 0;
}
.proof-count {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.proof-count strong {
  color: rgba(255,255,255,0.9);
}

.hero-trust-signal {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page load fade */
.home-refresh-page {
  animation: pageIn 0.5s ease both;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Stats Bar === */
.stats-bar {
  padding: 40px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.stats-bar-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.stats-bar-item {
  text-align: center;
}
.stats-bar-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-bar-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .stats-bar-grid { gap: 32px; flex-wrap: wrap; }
  .stats-bar-number { font-size: 28px; }
}

@media (max-width: 768px) {
  .journey-grid { flex-direction: column; gap: 0; }
  .journey-card:not(:last-child)::after { display: none; }
  .journey-card:not(:first-child)::before { display: none; }
}

/* CTA pulse animation */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
}
.home-cta-section .btn-primary {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* === Mobile Sticky CTA === */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0, 33, 23, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  z-index: 90;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
}
@media (min-width: 769px) {
  .mobile-sticky-cta { display: none !important; }
}
.mobile-sticky-cta .btn {
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

/* === Testimonials === */
.home-testimonials-section {
  padding: 80px 0;
  background: var(--cream);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  padding: 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 33, 23, 0.08);
  box-shadow: 0 8px 24px rgba(0, 33, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 33, 23, 0.1);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted-cream);
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* === Hero Video Reel === */
.hero-video-reel {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.hero-reel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-reel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-reel-dot.is-active {
  background: #ffffff;
  transform: scale(1.4);
}
.hero-reel-dot:hover {
  background: rgba(255,255,255,0.7);
}

/* === Hero contrast fixes === */
.hero-refresh .hero-title {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-refresh .hero-title-lead {
  color: rgba(255,255,255,0.88);
}
.hero-refresh .hero-desc {
  color: rgba(255,255,255,0.82);
}
.hero-refresh .hero-url-label {
  color: rgba(255,255,255,0.6);
}
.hero-refresh .hero-url-username {
  color: var(--gold);
}

/* === Hero reel crossfade === */
.hero-feature-video {
  display: block;
  width: 100%;
  border-radius: 0 0 16px 16px;
  transition: opacity 0.5s ease;
}
.hero-feature-video.is-fading {
  opacity: 0;
}

/* ============================================
   PROFILE PAGE V2 — Dark Hero + Premium Layout
   ============================================ */

.profile-hero {
  position: relative;
  padding: 0 0 48px;
  overflow: hidden;
}

.profile-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 60%, var(--cream) 100%);
  z-index: 0;
}

.profile-header-v2 {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 100px;
}

.profile-avatar-wrapper {
  display: inline-block;
  margin-bottom: 20px;
}

.profile-avatar-v2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 32px rgba(0, 33, 23, 0.2);
}

.profile-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-light);
}

.profile-avatar-initials {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.profile-name-v2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.profile-handle-v2 {
  font-size: 15px;
  color: var(--text-muted-cream);
  margin-bottom: 8px;
}

.profile-title-v2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.profile-bio-v2 {
  font-size: 15px;
  color: var(--text-on-cream);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.profile-social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 33, 23, 0.06);
  border: 1px solid var(--border-cream);
  color: var(--text-muted-cream);
  transition: all 0.2s ease;
}

.profile-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
}

.profile-cta-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.btn-profile-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid var(--border-cream);
  background: var(--white);
  color: var(--text-on-cream);
}

.btn-profile-action:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 33, 23, 0.08);
}

.btn-hire {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-hire:hover {
  background: var(--gold-hover);
  color: var(--white);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.3);
}

.profile-views-v2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted-cream);
  opacity: 0.5;
  margin-top: 8px;
}

/* ============================================
   PROJECT CARDS V2 — Dark, Rich, Dribbble-style
   ============================================ */

.projects-section {
  padding: 0 0 60px;
  max-width: 880px;
  margin: 0 auto;
}

.section-heading-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-cream);
}

.section-heading-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted-cream);
  background: rgba(0, 33, 23, 0.06);
  padding: 2px 8px;
  border-radius: 999px;
}

.projects-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card-v2 {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card-v2:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(0, 33, 23, 0.25),
    0 0 0 1px rgba(197, 160, 89, 0.15);
}

.project-card-chrome {
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-card-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.project-card-chrome span:nth-child(1) { background: #ff5f57; }
.project-card-chrome span:nth-child(2) { background: #febc2e; }
.project-card-chrome span:nth-child(3) { background: #28c840; }

.project-card-cover {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, rgba(197, 160, 89, 0.15) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-card-cover-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  opacity: 0.7;
  max-width: 80%;
}

.project-card-body {
  padding: 20px;
}

.project-card-title-v2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-card-desc-v2 {
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-tools-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tool-chip {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
}

.project-card-links-v2 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-link-v2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.15);
  transition: all 0.2s ease;
}

.project-link-v2:hover {
  background: rgba(197, 160, 89, 0.18);
  color: var(--gold-hover);
  text-decoration: none;
}

.project-card-v2 .project-video-shell {
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================
   VERIFIED SKILLS SECTION
   ============================================ */

.verified-skills-section {
  padding: 48px 0;
  max-width: 880px;
  margin: 0 auto;
}

.verified-skills-inner {
  background: var(--dark);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.verified-skills-inner .section-heading-v2 {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-dark);
  background: rgba(197, 160, 89, 0.06);
  transition: all 0.2s ease;
}

.skill-badge:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.15);
}

.skill-badge-check {
  flex-shrink: 0;
}

.profile-empty-v2 {
  padding: 60px 0;
  max-width: 880px;
  margin: 0 auto;
}

.empty-state-card {
  text-align: center;
  padding: 60px 40px;
  border: 2px dashed var(--border-cream);
  border-radius: 20px;
  background: var(--white);
}

.empty-state-icon {
  margin-bottom: 16px;
}

.empty-state-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.empty-state-desc {
  font-size: 15px;
  color: var(--text-muted-cream);
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .profile-hero-bg {
    height: 180px;
  }

  .profile-header-v2 {
    padding-top: 80px;
  }

  .profile-name-v2 {
    font-size: 32px;
  }

  .profile-avatar-v2 {
    width: 100px;
    height: 100px;
  }

  .profile-cta-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-profile-action {
    justify-content: center;
  }

  .projects-grid-v2 {
    grid-template-columns: 1fr;
  }

  .project-card-cover-title {
    font-size: 18px;
  }

  .verified-skills-inner {
    padding: 24px 20px;
    border-radius: 16px;
  }
}

/* ============================================
   PROFILE IDENTITY — Clean cream, no gradient
   ============================================ */

.profile-identity {
  padding: 48px 0 32px;
  background: var(--cream);
}

.profile-identity-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   PROFILE TABS
   ============================================ */

.profile-tabs-bar {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border-cream);
}

.profile-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.profile-tabs::-webkit-scrollbar { display: none; }

.profile-tab {
  flex-shrink: 0;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted-cream);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.profile-tab:hover { color: var(--dark); }

.profile-tab.is-active {
  color: var(--dark);
  border-bottom-color: var(--gold);
}

.profile-tab-panel { display: none; }
.profile-tab-panel.is-active { display: block; }

/* ============================================
   PROJECT CARDS V3 — 3-column grid + placeholder image
   ============================================ */

.projects-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card-v3 {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card-v3:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 33, 23, 0.12), 0 0 0 1px rgba(197, 160, 89, 0.25);
  border-color: rgba(197, 160, 89, 0.4);
}

.project-card-img-placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(145deg, #1a2f27 0%, #002117 45%, rgba(197, 160, 89, 0.12) 100%);
  border-bottom: 1px solid var(--border-cream);
}

.project-card-chrome-v3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  background: rgba(0, 0, 0, 0.2);
}

.project-card-chrome-v3 span { width: 8px; height: 8px; border-radius: 50%; }
.project-card-chrome-v3 span:nth-child(1) { background: #ff5f57; }
.project-card-chrome-v3 span:nth-child(2) { background: #febc2e; }
.project-card-chrome-v3 span:nth-child(3) { background: #28c840; }

.project-card-img-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  opacity: 0.6;
  max-width: 85%;
  margin-top: 10px;
}

.project-card-body-v3 { padding: 18px; }

.project-card-title-v3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.project-card-desc-v3 {
  font-size: 13px;
  color: var(--text-muted-cream);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-tools-v3 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.project-card-links-v3 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ============================================
   CERTIFIED TAB
   ============================================ */

.certified-coming-soon { padding: 60px 0; }

.certified-placeholder-card {
  text-align: center;
  padding: 64px 40px;
  max-width: 520px;
  margin: 0 auto;
  border: 2px dashed rgba(197, 160, 89, 0.3);
  border-radius: 24px;
  background: rgba(197, 160, 89, 0.04);
}

.certified-placeholder-icon { margin-bottom: 20px; }

.certified-placeholder-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.certified-placeholder-desc {
  font-size: 15px;
  color: var(--text-muted-cream);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 28px;
}

/* ============================================
   ABOUT TAB
   ============================================ */

.profile-about-section { padding: 40px 0 60px; }

.profile-about-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-block { margin-bottom: 32px; }

.about-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-block-bio {
  font-size: 16px;
  color: var(--text-on-cream);
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.about-block-value {
  font-size: 15px;
  color: var(--text-on-cream);
}

.about-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border-cream);
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about-link-row:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 160, 89, 0.04);
  transform: translateX(4px);
  text-decoration: none;
}

.about-link-row svg {
  flex-shrink: 0;
  color: var(--text-muted-cream);
}

.about-link-row:hover svg { color: var(--gold); }

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

@media (max-width: 768px) {
  .profile-tabs-bar { top: 56px; }
  .profile-tab { padding: 12px 18px; font-size: 13px; }
}

@media (max-width: 600px) {
  .projects-grid-v3 { grid-template-columns: 1fr; }
}

/* === Profile: Name row + L3 cert badge === */
.profile-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.profile-name-row .profile-name-v2 {
  margin-bottom: 0;
}
.profile-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  vertical-align: middle;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(197,160,89,0.35);
}

/* === Profile: views inline in CTA bar === */
.profile-views-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted-cream);
  padding: 10px 14px;
  opacity: 0.65;
  flex-shrink: 0;
}

/* Hide old standalone views */
.profile-views-v2 { display: none; }

/* Mobile: CTA bar wraps gracefully */
@media (max-width: 600px) {
  .profile-name-row { flex-direction: row; justify-content: center; }
  .profile-cta-bar { justify-content: center; }
  .profile-views-inline { width: 100%; justify-content: center; }
}


/* === Conversion optimization additions === */
.profile-signup-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 33, 23, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  padding: 16px 0;
  z-index: 80;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.profile-signup-banner.is-visible { transform: translateY(0); }
.signup-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.signup-banner-copy strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}
.signup-banner-copy span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.btn-banner-cta { white-space: nowrap; animation: ctaPulse 2.5s ease-in-out infinite; }

.profile-inline-cta { max-width: 640px; margin: 48px auto; padding: 0 20px; }
.inline-cta-card {
  text-align: center;
  padding: 48px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 33, 23, 0.98), rgba(7, 65, 48, 0.94));
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 24px 64px rgba(0, 33, 23, 0.2);
  color: #fff;
}
.inline-cta-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.inline-cta-card h3 em { color: var(--gold); font-style: normal; }
.inline-cta-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.inline-cta-url-preview { margin-bottom: 24px; }
.inline-cta-url-preview code {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(197,160,89,0.2);
}

.profile-platform-signal { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,33,23,0.08); }
.platform-signal-text { font-size: 12px; color: var(--text-muted-cream); letter-spacing: 0.02em; }
.platform-signal-text strong { color: var(--dark); font-weight: 600; }

.hero-urgency-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hero-urgency-signal strong { color: rgba(255,255,255,0.8); }
.urgency-dot { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.stats-bar-outcomes { color: rgba(255,255,255,0.9); font-size: 16px; text-align: center; font-weight: 600; }
.stats-bar-outcomes span { color: rgba(255,255,255,0.45); margin: 0 10px; }

.testimonial-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.testimonial-context { font-size: 14px; color: var(--text-muted-cream); margin-bottom: 16px; font-weight: 600; }

.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.contrast-card { padding: 32px; border-radius: 20px; }
.contrast-without { background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08); opacity: 0.7; }
.contrast-with {
  background: linear-gradient(135deg, rgba(0, 33, 23, 0.98), rgba(7, 65, 48, 0.94));
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #fff;
}
.contrast-with h4 { color: var(--gold); }
.contrast-without h4 { color: var(--text-muted-cream); }
.contrast-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; margin-bottom: 16px; }
.contrast-card ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.contrast-card li { font-size: 15px; line-height: 1.5; padding-left: 24px; position: relative; }
.contrast-without li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.contrast-with li { color: rgba(255,255,255,0.85); }
.contrast-with li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

@media (max-width: 640px) { .contrast-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .signup-banner-inner { flex-direction: column; text-align: center; }
  .btn-banner-cta { width: 100%; }
}

/* === Contrast Section — Visual Side-by-Side === */
.contrast-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.contrast-label-bad { color: rgba(0,0,0,0.4); }
.contrast-label-good { color: var(--gold); }

/* Fake Resume */
.fake-resume {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  font-size: 12px;
  color: #333;
  opacity: 0.75;
}
.fake-resume-header { margin-bottom: 14px; }
.fake-resume-name { font-size: 16px; font-weight: 700; color: #222; }
.fake-resume-title { font-size: 11px; color: #888; margin-top: 2px; }
.fake-resume-section { margin-bottom: 12px; }
.fake-resume-section-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #aaa; margin-bottom: 6px; border-bottom: 1px solid #eee; padding-bottom: 3px; }
.fake-resume-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.fake-resume-skills span { background: #f5f5f5; border: 1px solid #ddd; border-radius: 4px; padding: 2px 7px; font-size: 10px; color: #666; }
.fake-resume-role { font-weight: 600; font-size: 11px; color: #555; margin-bottom: 4px; display: flex; justify-content: space-between; }
.fake-resume-role span { font-weight: 400; color: #999; }
.fake-resume ul { padding-left: 14px; margin: 0; }
.fake-resume ul li { font-size: 11px; color: #777; line-height: 1.7; font-style: italic; }
.fake-resume-footer { margin-top: 14px; font-size: 10px; color: #bbb; text-align: center; border-top: 1px dashed #eee; padding-top: 10px; }

/* Fake Profile Preview */
.fake-profile-preview {
  background: var(--dark);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(197,160,89,0.2);
}
.fake-profile-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fake-profile-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fake-profile-name { font-size: 14px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; }
.fake-profile-badge { background: var(--gold); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 999px; }
.fake-profile-role { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.fake-profile-projects { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.fake-project-card { display: flex; gap: 10px; background: rgba(255,255,255,0.04); border-radius: 8px; overflow: hidden; }
.fake-project-cover { width: 60px; height: 60px; flex-shrink: 0; background: linear-gradient(135deg, #002117, #c5a05940); }
.fake-project-info { padding: 8px; flex: 1; }
.fake-project-title { font-size: 11px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.fake-project-stat { font-size: 10px; color: var(--gold); margin-bottom: 4px; }
.fake-project-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.fake-project-tags span { background: rgba(197,160,89,0.12); border: 1px solid rgba(197,160,89,0.2); border-radius: 999px; padding: 1px 6px; font-size: 9px; color: var(--gold); }
.fake-profile-url { font-size: 10px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 8px; }
.fake-profile-url span { color: var(--gold); }

/* Verdict lines */
.contrast-verdict { margin-top: 16px; font-size: 15px; font-weight: 700; font-style: italic; text-align: center; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.08); }
.contrast-verdict-bad { color: rgba(0,0,0,0.35); border-top-color: rgba(0,0,0,0.08); }
.contrast-verdict-good { color: var(--gold); border-top-color: rgba(197,160,89,0.2); }
.contrast-with .contrast-verdict-good { border-top-color: rgba(197,160,89,0.2); }

/* Empty state two-button row */
.empty-state-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
