:root {
  --font-serif: 'Noto Serif Display', 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --color-bg: #faf9f7;
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-border: rgba(15, 23, 42, 0.1);
  --color-accent: #C9A55A;
  --shadow-soft: 0 24px 60px -40px rgba(15, 23, 42, 0.35);
  --radius-card: 18px;
  --max-width: 1240px;
  /* Header height: padding-top (1.75rem = 28px) + min-height (2.5rem = 40px) + padding-bottom (1.75rem = 28px) ≈ 96px, rounded to 80px for safe-area */
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Disable animations for users who prefer reduced motion */
  .homepage-hero__image img,
  .homepage-hero__scroll-indicator,
  .bio-demo__icon,
  .filmstrip-card {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.7;
}

.app-shell {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
}

.app-shell.is-dashboard {
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: var(--color-text);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1.5rem;
  top: 1.5rem;
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

/* Universal Header - Works for all pages */
.universal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding-top: max(env(safe-area-inset-top, 0px), 1.75rem);
  padding-bottom: 1.75rem;
  transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 249, 247, 0.98);
  border-bottom: 1px solid rgba(201, 165, 90, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Homepage-specific styling - transparent on hero */
.universal-header--homepage {
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(201, 165, 90, 0.3);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 2px 12px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(201, 165, 90, 0.15);
}

.universal-header--homepage.scrolled {
  padding-top: max(env(safe-area-inset-top, 0px), 1rem);
  padding-bottom: 1rem;
  background: rgba(250, 249, 247, 0.98);
  border-bottom: 1px solid rgba(201, 165, 90, 0.25);
  box-shadow: 0 4px 30px rgba(10, 10, 10, 0.08);
}

.universal-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
  min-height: 2.5rem;
}

.universal-header__logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.3s ease;
  white-space: nowrap;
}

.universal-header__logo:hover {
  transform: scale(1.02);
}

.universal-header--homepage .universal-header__logo {
  color: rgba(201, 165, 90, 1);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.7),
    0 1px 6px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(201, 165, 90, 0.3),
    0 0 40px rgba(201, 165, 90, 0.2);
}

.universal-header--homepage.scrolled .universal-header__logo {
  color: rgba(201, 165, 90, 1);
  text-shadow: none;
}

.universal-header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.universal-header__nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  align-items: center;
}

.universal-header__nav li {
  margin: 0;
  padding: 0;
}

.universal-header__nav a {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.5rem 0;
  position: relative;
}

.universal-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(201, 165, 90, 1);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.universal-header__nav a:hover,
.universal-header__nav a:focus {
  color: var(--color-text);
}

.universal-header__nav a:hover::after,
.universal-header__nav a:focus::after {
  width: 100%;
}

.universal-header__nav a[aria-current="page"] {
  color: rgba(201, 165, 90, 1);
  font-weight: 500;
}

.universal-header__nav a[aria-current="page"]::after {
  width: 100%;
  background: rgba(201, 165, 90, 1);
}

.universal-header--homepage .universal-header__nav a {
  color: rgba(250, 249, 247, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.universal-header--homepage .universal-header__nav a::after {
  background: rgba(201, 165, 90, 1);
}

.universal-header--homepage .universal-header__nav a:hover,
.universal-header--homepage .universal-header__nav a:focus {
  color: rgba(201, 165, 90, 1);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 12px rgba(201, 165, 90, 0.3);
}

.universal-header--homepage .universal-header__nav a[aria-current="page"] {
  color: rgba(201, 165, 90, 1);
}

.universal-header--homepage.scrolled .universal-header__nav a {
  color: var(--color-muted);
  text-shadow: none;
}

.universal-header--homepage.scrolled .universal-header__nav a:hover {
  color: var(--color-text);
  text-shadow: none;
}

.universal-header--homepage.scrolled .universal-header__nav a[aria-current="page"] {
  color: rgba(201, 165, 90, 1);
}

.universal-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

body.nav-open {
  overflow: hidden;
}

/* Duplicate styles removed - see line 1189 for overlay and nav-panel styles */

.universal-header__nav-panel-inner {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  gap: 0;
}

.universal-header__nav-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(env(safe-area-inset-top, 12px), 1rem) 1.5rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 10;
  margin: 0;
}

.universal-header__nav-panel-logo {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text);
}

.universal-header__close {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.universal-header__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.universal-header__close span:first-child {
  transform: rotate(45deg);
}

.universal-header__close span:last-child {
  transform: rotate(-45deg);
}

.universal-header__close:hover {
  border-color: rgba(201, 165, 90, 0.5);
  background: rgba(201, 165, 90, 0.1);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.2);
  transform: scale(1.05);
}

.universal-header__close:active {
  transform: scale(0.95);
}

.universal-header__mobile-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 1.5rem 0;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: linear-gradient(135deg, rgba(250, 249, 247, 1), rgba(248, 248, 247, 0.95));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.universal-header__mobile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), #b8954f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.universal-header__mobile-user-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.universal-header__mobile-user-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.universal-header__mobile-user-email {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: #64748b;
  word-break: break-all;
}

.universal-header__mobile-user-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.universal-header__mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.universal-header__mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.universal-header__mobile-nav a[aria-current="page"] {
  color: rgba(201, 165, 90, 1);
}

.universal-header__mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  flex-shrink: 0;
  padding-bottom: max(env(safe-area-inset-bottom, 16px), 1.5rem);
}

.universal-header__mobile-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem 1.25rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.universal-header__mobile-link:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(201, 165, 90, 0.3);
  color: rgba(201, 165, 90, 1);
}

.universal-header__mobile-cta {
  width: 100%;
  text-align: center;
}

.universal-header__mobile-cta.universal-header__cta--primary {
  padding: 1.25rem 1.5rem;
  min-height: 56px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), #b8954f);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
  transition: all 0.2s ease;
}

.universal-header__mobile-cta.universal-header__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
  background: linear-gradient(135deg, #d4b56a, rgba(201, 165, 90, 1));
}

.universal-header__mobile-logout {
  margin: 0;
}

.universal-header__mobile-logout button {
  width: 100%;
  padding: 1rem 1.25rem;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.universal-header__mobile-logout button:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-1px);
}

.universal-header__mobile-logout button:active {
  transform: translateY(0);
}

/* Universal Header User Dropdown */
.universal-header__user-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.universal-header__user-dropdown {
  position: relative;
}

.universal-header__user {
  font-size: 0.875rem;
  color: var(--color-text);
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, rgba(250, 249, 247, 0.95) 0%, rgba(248, 248, 247, 0.9) 100%);
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  max-width: 280px;
}

.universal-header__user::before {
  content: attr(data-initial);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1) 0%, #B8954F 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.35);
}

.universal-header__user-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  max-width: 160px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.universal-header--homepage .universal-header__user-name {
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.universal-header__user-email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  max-width: 180px;
}

.universal-header__badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.universal-header__badge--pro {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15) 0%, rgba(201, 165, 90, 0.1) 100%);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.25);
}

.universal-header__badge--free {
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.universal-header__badge--role {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.6rem;
  padding: 0.125rem 0.5rem;
}

.universal-header--homepage .universal-header__badge--role {
  background: rgba(201, 165, 90, 0.2);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.4);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.universal-header__user-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.universal-header--homepage .universal-header__user-chevron {
  opacity: 0.9;
  color: #FFFFFF;
}

.universal-header__user-dropdown[aria-expanded="true"] .universal-header__user-chevron {
  transform: rotate(180deg);
}

.universal-header__user:hover {
  background: linear-gradient(135deg, rgba(250, 249, 247, 1) 0%, rgba(248, 248, 247, 0.95) 100%);
  border-color: rgba(201, 165, 90, 0.3);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.1);
}

.universal-header--homepage .universal-header__user {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(25, 25, 25, 0.75) 100%);
  border-color: rgba(201, 165, 90, 0.4);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.universal-header--homepage .universal-header__user:hover {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.85) 100%);
  border-color: rgba(201, 165, 90, 0.6);
  box-shadow: 0 4px 16px rgba(201, 165, 90, 0.3);
}

.universal-header--homepage.scrolled .universal-header__user {
  background: linear-gradient(135deg, rgba(250, 249, 247, 0.95) 0%, rgba(248, 248, 247, 0.9) 100%);
  border-color: rgba(226, 232, 240, 0.6);
  color: var(--color-text);
}

.universal-header--homepage.scrolled .universal-header__user:hover {
  background: linear-gradient(135deg, rgba(250, 249, 247, 1) 0%, rgba(248, 248, 247, 0.95) 100%);
  border-color: rgba(201, 165, 90, 0.3);
}

.universal-header--homepage.scrolled .universal-header__user-name {
  color: var(--color-text);
  text-shadow: none;
}

.universal-header--homepage.scrolled .universal-header__badge--role {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.12);
  text-shadow: none;
}

.universal-header--homepage.scrolled .universal-header__user-chevron {
  opacity: 0.7;
  color: var(--color-text);
}

.universal-header__user-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 0.25rem;
  overflow: hidden;
}

.universal-header__user-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(248, 248, 247, 0.5);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.universal-header__user-menu-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1) 0%, #B8954F 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.3);
}

.universal-header__user-menu-avatar::before {
  content: attr(data-initial);
}

.universal-header__user-menu-info {
  flex: 1;
  min-width: 0;
}

.universal-header__user-menu-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.universal-header__user-menu-email {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.universal-header__user-menu-role {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
}

.universal-header__user-menu-divider {
  height: 1px;
  background: rgba(226, 232, 240, 0.6);
  margin: 0.5rem 0;
}

.universal-header__user-menu-item,
.universal-header__user-menu-item-form {
  display: block;
  width: 100%;
  padding: 0.5rem;
}

.universal-header__user-menu-item {
  padding: 0.75rem 1rem;
}

.universal-header__user-dropdown[aria-expanded="true"] .universal-header__user-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.universal-header__user-menu-item,
.universal-header__user-menu-item-form {
  display: block;
  width: 100%;
}

.universal-header__user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.universal-header__user-menu-item:hover {
  background: rgba(201, 165, 90, 0.06);
  color: rgba(201, 165, 90, 1);
}

.universal-header__user-menu-item--logout {
  color: #ef4444;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  margin-top: 0.25rem;
  padding-top: 0.875rem;
}

.universal-header__user-menu-item--logout:hover {
  background: rgba(239, 68, 68, 0.06);
  color: #dc2626;
}

.universal-header__user-menu-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 1.5;
}

.universal-header__user-menu-item-form {
  margin: 0;
  padding: 0;
}

.universal-header__link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.08em;
}

.universal-header__link:hover {
  color: rgba(201, 165, 90, 1);
}

/* Partner link styling - visually appealing badge design */
.universal-header__link--partner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.universal-header__link--partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.15), transparent);
  transition: left 0.5s ease;
}

.universal-header__link--partner:hover {
  background: rgba(201, 165, 90, 0.12);
  border-color: rgba(201, 165, 90, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.15);
}

.universal-header__link--partner:hover::before {
  left: 100%;
}

.universal-header__partner-badge {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.9);
  line-height: 1;
}

.universal-header__partner-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  line-height: 1;
}

.universal-header--homepage .universal-header__link--partner {
  background: rgba(201, 165, 90, 0.15);
  border-color: rgba(201, 165, 90, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.universal-header--homepage .universal-header__link--partner .universal-header__partner-badge {
  color: rgba(201, 165, 90, 1);
}

.universal-header--homepage .universal-header__link--partner .universal-header__partner-text {
  color: rgba(250, 249, 247, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.universal-header--homepage .universal-header__link--partner:hover {
  background: rgba(201, 165, 90, 0.2);
  border-color: rgba(201, 165, 90, 0.4);
  box-shadow: 0 2px 12px rgba(201, 165, 90, 0.25);
}

.universal-header--homepage.scrolled .universal-header__link--partner {
  background: rgba(201, 165, 90, 0.08);
  border-color: rgba(201, 165, 90, 0.2);
}

.universal-header--homepage.scrolled .universal-header__link--partner .universal-header__partner-text {
  color: var(--color-text);
  text-shadow: none;
}

/* Mobile partner link styling */
.universal-header__mobile-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.2);
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

.universal-header__mobile-partner:hover {
  background: rgba(201, 165, 90, 0.12);
  border-color: rgba(201, 165, 90, 0.35);
}

.universal-header__mobile-partner .universal-header__partner-badge {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.9);
}

.universal-header__mobile-partner .universal-header__partner-text {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.universal-header--homepage .universal-header__link {
  color: rgba(250, 249, 247, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.universal-header--homepage .universal-header__link:hover {
  color: rgba(201, 165, 90, 1);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 12px rgba(201, 165, 90, 0.3);
}

.universal-header--homepage.scrolled .universal-header__link {
  color: var(--color-muted);
  text-shadow: none;
}

.universal-header__cta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.universal-header__cta--primary {
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.85));
  color: #0f172a;
  border: 1px solid rgba(201, 165, 90, 0.3);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.2);
}

.universal-header__cta--primary:hover {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.95), rgba(201, 165, 90, 0.75));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 165, 90, 0.3);
}

.universal-header__cta--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(201, 165, 90, 0.4);
}

.universal-header__cta--secondary:hover {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border-color: rgba(201, 165, 90, 0.6);
  transform: translateY(-2px);
}

.universal-header--homepage .universal-header__cta--primary {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.9), rgba(201, 165, 90, 0.7));
  color: #0f172a;
  border: 1px solid rgba(201, 165, 90, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 24px rgba(201, 165, 90, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 0 24px rgba(250, 249, 247, 0.15);
}

.universal-header--homepage .universal-header__cta--primary:hover {
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.8));
  border-color: rgba(201, 165, 90, 0.7);
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(201, 165, 90, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.4);
}

.universal-header--homepage .universal-header__cta--secondary {
  background: transparent;
  color: rgba(250, 249, 247, 0.9);
  border: 1px solid rgba(201, 165, 90, 0.5);
}

.universal-header--homepage .universal-header__cta--secondary:hover {
  background: rgba(201, 165, 90, 0.15);
  color: rgba(201, 165, 90, 1);
  border-color: rgba(201, 165, 90, 0.7);
}

.universal-header--homepage.scrolled .universal-header__cta--primary {
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.85));
  color: #0f172a;
  border-color: rgba(201, 165, 90, 0.3);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.2);
}

.universal-header--homepage.scrolled .universal-header__cta--primary:hover {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.95), rgba(201, 165, 90, 0.75));
  box-shadow: 0 4px 16px rgba(201, 165, 90, 0.3);
}

.universal-header--homepage.scrolled .universal-header__cta--secondary {
  background: transparent;
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.4);
}

.universal-header--homepage.scrolled .universal-header__cta--secondary:hover {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border-color: rgba(201, 165, 90, 0.6);
  transform: translateY(-2px);
}

.universal-header__menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  z-index: 1001;
  position: relative;
  transition: background-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.universal-header__menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.universal-header__menu-toggle:active {
  transform: scale(0.95);
  background: rgba(0, 0, 0, 0.1);
}

.universal-header__menu-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--color-text);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border-radius: 2px;
}

.universal-header__menu-toggle:hover span {
  background: rgba(201, 165, 90, 1);
}

.universal-header--homepage .universal-header__menu-toggle {
  background: rgba(201, 165, 90, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.universal-header--homepage .universal-header__menu-toggle span {
  background: rgba(201, 165, 90, 1);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 8px rgba(201, 165, 90, 0.3);
}

.universal-header--homepage .universal-header__menu-toggle:hover {
  background: rgba(201, 165, 90, 0.25);
  box-shadow: 0 0 16px rgba(201, 165, 90, 0.4);
}

.universal-header--homepage .universal-header__menu-toggle:hover span {
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(201, 165, 90, 0.5);
}

.universal-header--homepage.scrolled .universal-header__menu-toggle {
  background: rgba(0, 0, 0, 0.05);
}

.universal-header--homepage.scrolled .universal-header__menu-toggle span {
  background: var(--color-text);
  box-shadow: none;
}

.universal-header--homepage.scrolled .universal-header__menu-toggle:hover {
  background: rgba(201, 165, 90, 0.15);
}

.universal-header--homepage.scrolled .universal-header__menu-toggle:hover span {
  background: rgba(201, 165, 90, 1);
}

.universal-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.universal-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.universal-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.universal-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.universal-header__nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 400px;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(201, 165, 90, 0.15);
  z-index: 1000;
  display: flex !important;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

/* Override hidden attribute to ensure panel displays when opened */
.universal-header__nav-panel:not([hidden]) {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}

/* Ensure panel is visible when is-open class is added */
.universal-header__nav-panel.is-open {
  display: flex !important;
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .universal-header__nav-panel,
  .universal-header__overlay {
    transition: none;
  }
}

.universal-header__mobile-nav {
  width: 100%;
  flex: 1;
  padding: 1.5rem 1.5rem;
  min-height: 0;
  overflow-y: visible;
  overflow-x: hidden;
  display: block !important;
  visibility: visible !important;
}

.universal-header__mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
  visibility: visible !important;
}

.universal-header__mobile-nav li {
  margin: 0;
  padding: 0;
}

.universal-header__mobile-nav a {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem 1.25rem;
  min-height: 52px;
  transition: color 0.2s ease, background-color 0.2s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  visibility: visible !important;
}

.universal-header__mobile-nav a[aria-current="page"] {
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
  background-color: rgba(201, 165, 90, 0.1);
}

.universal-header__mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: rgba(201, 165, 90, 1);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

.universal-header__mobile-nav a[aria-current="page"]::before {
  height: 60%;
}

.universal-header__mobile-nav a:hover,
.universal-header__mobile-nav a:focus {
  color: rgba(201, 165, 90, 1);
  background-color: rgba(201, 165, 90, 0.08);
  outline: none;
}

.universal-header__mobile-nav a:hover::before {
  height: 40%;
}

.universal-header__mobile-nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.universal-header__mobile-nav a[aria-current="page"] .universal-header__mobile-nav-icon,
.universal-header__mobile-nav a:hover .universal-header__mobile-nav-icon {
  opacity: 1;
}

/* Responsive: Hide desktop nav, show mobile menu */
@media (max-width: 1024px) {
  .universal-header__nav {
    display: none;
  }

  .universal-header__menu-toggle {
    display: flex;
  }

  .universal-header__actions {
    gap: 0.75rem;
  }

  .universal-header__cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
  }

  .universal-header__link {
    display: none;
  }

  .universal-header__nav-panel {
    width: 88%;
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .universal-header {
    padding-top: max(env(safe-area-inset-top, 0px), 1rem);
    padding-bottom: 1rem;
  }

  .universal-header__inner {
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .universal-header__actions {
    gap: 0.75rem;
  }

  .universal-header__user {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    max-width: 200px;
  }

  .universal-header__user-name {
    max-width: 100px;
    font-size: 0.8125rem;
  }

  .universal-header__user-email {
    max-width: 120px;
  }

  .universal-header__user::before {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .universal-header__badge {
    font-size: 0.5625rem;
    padding: 0.125rem 0.375rem;
  }

  .universal-header__user-menu {
    right: -1rem;
    min-width: 180px;
  }

  .universal-header__cta--secondary {
    display: none;
  }

  .universal-header__nav-panel {
    width: 90%;
    max-width: 360px;
  }

  .universal-header__nav-panel-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .universal-header__inner {
    padding: 0 1.25rem;
  }

  .universal-header__nav-panel {
    width: 92%;
    max-width: none;
  }

  .universal-header__nav-panel-inner {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1.25rem;
  }

  .universal-header__nav-panel-top {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .universal-header__mobile-nav a {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .universal-header__mobile-user {
    padding: 1rem;
  }

  .universal-header__mobile-actions {
    gap: 0.625rem;
  }

  .universal-header__mobile-link,
  .universal-header__mobile-logout button {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .universal-header__mobile-cta.universal-header__cta--primary {
    padding: 1.125rem 1.25rem;
    font-size: 0.875rem;
  }
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(249, 250, 251, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.site-header__inner,
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav.primary-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.75rem;
}

nav.primary-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

nav.primary-nav a[aria-current="page"] {
  color: var(--color-text);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-header__cta .button-primary {
  box-shadow: var(--shadow-soft);
}

.link-muted {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.button-block {
  width: 100%;
}

.button,
button,
input[type="submit"] {
  font-family: var(--font-sans);
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button-primary {
  background: rgba(201, 165, 90, 1);
  color: #0f172a;
  border: 1px solid rgba(201, 165, 90, 1);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.2);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 165, 90, 0.3);
  background: rgba(201, 165, 90, 0.95);
  border-color: rgba(201, 165, 90, 0.95);
  color: #0f172a;
}

.button-secondary {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(201, 165, 90, 0.4);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(201, 165, 90, 0.1);
  border-color: rgba(201, 165, 90, 0.6);
  color: #0f172a;
}

.button-google {
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: none;
  font-size: 0.9375rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.button-google:hover,
.button-google:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
  border-color: #dadce0;
  color: #3c4043;
}

.button-google:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.button-google svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.button-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: none;
  font-size: 0.9375rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.button-instagram:hover,
.button-instagram:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: brightness(1.05);
  border-color: transparent;
  color: #ffffff;
}

.button-instagram:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.button-instagram svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.auth-divider span {
  padding: 0 1rem;
  background: #fff;
}

.hero {
  padding: clamp(6rem, 8vw, 8rem) 0 5rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 20% -5% -15% 60%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(201, 165, 90, 0.06) 100%);
  z-index: -1;
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-copy p {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #cbd5f5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}

.section {
  padding: clamp(4rem, 6vw, 6rem) 0;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}

.section-heading p {
  max-width: 36rem;
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: 0 40px 80px -60px rgba(15, 23, 42, 0.4);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.card p {
  color: var(--color-muted);
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.board-index button {
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: border 0.2s ease, color 0.2s ease;
}

.board-index button.active {
  border-color: var(--color-text);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.board-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 320px;
}

.board-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.35s ease;
}

.board-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.68) 0%, transparent 60%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.board-card:hover img,
.board-card:focus-within img {
  transform: scale(1.04);
}

.board-card:hover .overlay,
.board-card:focus-within .overlay {
  opacity: 1;
}

.board-card .skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.6) 25%, rgba(226, 232, 240, 0.9) 37%, rgba(226, 232, 240, 0.6) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -135% 0;
  }
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(15, 23, 42, 0.14);
  margin-bottom: 1rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: #fff;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.pricing-card .price {
  font-size: 2.25rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
}

.cta-banner {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 3rem 0;
  background: #fff;
}

.site-footer__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tagline {
  font-family: var(--font-serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(15, 23, 42, 0.45);
}

.motion-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-panel {
  display: none;
}

@media (max-width: 860px) {
  nav.primary-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .mobile-nav-panel {
    position: fixed;
    inset: 0;
    background: rgba(249, 250, 251, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    z-index: 998;
    overflow-y: auto;
  }

  .mobile-nav-panel:not([hidden]) {
    display: flex;
  }

  .mobile-nav-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }

  .hero::after {
    inset: 50% -10% -10% 30%;
  }

  .section-heading {
    flex-direction: column;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(201, 165, 90, 0.08);
  color: var(--color-accent);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  color: var(--color-muted);
}

.article h1,
.article h2,
.article h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.footer-small {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.45);
}

form {
  display: grid;
  gap: 1.5rem;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.65);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  border-radius: 24px;
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(201, 165, 90, 0.65);
  box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.alert {
  padding: 0.85rem 1.25rem;
  background: rgba(201, 165, 90, 0.12);
  border-radius: 18px;
  border: 1px solid rgba(201, 165, 90, 0.2);
  font-size: 0.9rem;
  color: var(--color-accent);
}

.stepper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
}

.stepper button {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-indicator span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
}

.stepper button[aria-current="step"] span {
  background: var(--color-text);
  color: #fff;
}

.stepper button[aria-current="step"] .step-label {
  color: var(--color-text);
}

.step-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}

.drag-zone {
  border: 1px dashed var(--color-border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  transition: border 0.2s ease, background 0.2s ease;
}

.drag-zone.dragover {
  border-color: var(--color-text);
  background: rgba(201, 165, 90, 0.06);
}

.drag-zone input[type="file"] {
  display: none;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, transparent 90%);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1rem;
}

.table-legal ul {
  list-style: decimal;
  padding-left: 1.5rem;
  color: var(--color-muted);
}

@media print {

  header.site-header,
  .site-footer,
  .sticky-cta,
  .hero::after,
  .mobile-nav-panel {
    display: none !important;
  }
}

/* --- Shared tokens for editorial UI --- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  letter-spacing: -0.015em;
  margin: 0;
}

.lede {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.flash-stack {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.flash {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(201, 165, 90, 0.06);
  border: 1px solid rgba(201, 165, 90, 0.15);
}

.flash-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
}

.flash-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

.flash__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: grid;
  gap: 0.75rem;
  z-index: 1000;
}

.toast {
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.toast-error {
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* ========================================
   AUTH PAGES - Editorial Split-Screen Design
   ======================================== */

.auth-page {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 100vh;
  background: #faf9f7;
  padding-top: calc(100px + 3rem);
}

.auth-page__visual {
  position: relative;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 3rem;
  color: #0f172a;
}

.auth-page__visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}

.auth-page__visual-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.auth-page__visual-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.auth-page__visual-headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.auth-page__visual-headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.auth-page__visual-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.auth-page__visual-accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.auth-page__visual-accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .auth-page {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(90px + 2rem);
  }

  .auth-page__visual {
    padding: 3rem 2rem;
  }

  .auth-page__form {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .auth-page {
    padding-top: calc(80px + 2rem);
  }

  .auth-page__visual {
    padding: 2.5rem 1.5rem;
  }

  .auth-page__form {
    padding: 2.5rem 1.5rem;
  }

  .auth-page__visual-headline {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

.auth-page__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  background: #faf9f7;
}

.auth-page__form-container {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.auth-page__form-header {
  margin-bottom: 3rem;
}

.auth-page__form-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.auth-page__form-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.auth-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 1.5rem;
}

.auth-card .form {
  display: grid;
  gap: 1.5rem;
}

/* Legacy support - keep old classes working */
.auth-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  padding: clamp(2.5rem, 8vw, 5rem) 0 5rem;
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.auth-layout__intro {
  display: grid;
  gap: 1rem;
}

.auth-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--color-muted);
}

.form {
  display: grid;
  gap: 1rem;
}

.form-fieldset {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  background: #faf9f7;
}

.form-fieldset legend {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  padding: 0 0.5rem;
}

.choice-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  cursor: pointer;
  color: #475569;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

.choice:hover {
  border-color: rgba(15, 23, 42, 0.25);
  background: rgba(15, 23, 42, 0.02);
}

.choice input {
  accent-color: #0f172a;
  cursor: pointer;
}

.choice.is-selected {
  border-color: #0f172a;
  color: #0f172a;
  background: rgba(15, 23, 42, 0.05);
  font-weight: 600;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label,
.form-field legend {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.form input,
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="number"],
.form textarea,
.form select,
.form fieldset input,
.form fieldset select {
  font: inherit;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #faf9f7;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-sans);
}

.form input:focus,
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form input[type="password"]:focus,
.form input[type="number"]:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(201, 165, 90, 0.4);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.1);
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: rgba(239, 68, 68, 0.45);
}

.field-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin: 0.25rem 0 0 0;
  font-weight: 500;
  font-family: var(--font-sans);
}

.form-field__help {
  font-size: 0.875rem;
  color: #7a7a7a;
  margin: -4px 0 8px 0;
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  order: 2;
}

.form-field label {
  order: 1;
}

.form-field input,
.form-field textarea {
  order: 3;
}

.auth-switch {
  color: #475569;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-sans);
}

.apply-note {
  color: #475569;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.auth-switch a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(15, 23, 42, 0.2);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.auth-switch a:hover {
  text-decoration-color: rgba(15, 23, 42, 0.5);
}

/* Apply Page - Complete Redesign */
/* Apply Header - Editorial Style (matching pricing page) */
.apply-header {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.apply-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.apply-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.apply-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.apply-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.apply-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.apply-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.apply-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.apply-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

.apply-main {
  padding: clamp(3rem, 5vw, 5rem) 2rem;
  background: #faf9f7;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 1024px) {
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .apply-info {
    position: static;
  }

  .apply-header {
    padding: 4rem 1.5rem 3rem;
  }

  .apply-main {
    padding: 3rem 1.5rem;
  }
}

.apply-info {
  position: sticky;
  top: 120px;
}

@media (max-width: 768px) {
  .apply-header {
    padding: 3rem 1.5rem 2.5rem;
  }

  .apply-header__headline {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .apply-form-header {
    top: -1rem;
  }

  .apply-main {
    padding: 2.5rem 1rem;
  }

  .apply-info__card,
  .apply-form-card {
    padding: 2rem 1.5rem;
  }

  .apply-steps li {
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
  }

  .apply-form-card .form-actions {
    flex-direction: column-reverse;
  }

  .apply-form-card .form-actions button {
    width: 100%;
  }

  .review-section dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .review-section dt {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 600px) {
  .apply-info__card,
  .apply-form-card {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .apply-steps li {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 1.1rem;
  }

  .apply-form-card input,
  .apply-form-card select,
  .apply-form-card textarea {
    min-height: 54px;
    font-size: 1rem;
  }

  .apply-form-card .form-actions {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #ffffff);
    padding-top: 1rem;
    margin-top: 2rem;
    z-index: 4;
  }

  .apply-form-card .form-actions button {
    width: 100%;
  }
}

.apply-info__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 2rem;
}

.apply-info__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: #0f172a;
}

.apply-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.apply-info__list li {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.apply-info__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.apply-info__list strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.apply-info__list span {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  font-family: var(--font-sans);
}

.apply-info__note {
  background: rgba(201, 165, 90, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(201, 165, 90, 0.1);
}

.apply-info__note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.apply-info__note strong {
  font-weight: 600;
}

.apply-form-wrapper {
  width: 100%;
}

.apply-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.apply-form-header {
  margin-bottom: 3rem;
  padding-bottom: 0;
  position: sticky;
  top: -2rem;
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.apply-form-card .form-field {
  margin-bottom: 0;
}

.apply-form-card .form-field label {
  margin-bottom: 10px;
}

.apply-form-card .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .apply-form-card .form-grid {
    grid-template-columns: 1fr;
  }
}

.apply-form-card .form-field:not(:last-child) {
  margin-bottom: 1.5rem;
}

.apply-form-card textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.apply-layout {
  display: block;
  width: min(1100px, 92vw);
  margin: 3rem auto 5rem;
}

.apply-intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.apply-intro .display {
  margin-bottom: 0.5rem;
}

.apply-intro .lede {
  margin-bottom: 0;
}

.apply-steps {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.apply-steps::-webkit-scrollbar {
  display: none;
}

.apply-steps li {
  padding: 1rem 1.5rem;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #94a3b8;
  background: transparent !important;
  background-color: transparent !important;
  position: relative;
  cursor: default;
  font-family: var(--font-sans);
  transition: color 0.3s ease;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.apply-steps li.is-active,
.apply-steps li.is-active:hover,
.apply-steps li.is-active:focus {
  background-color: transparent !important;
  background: transparent !important;
  color: rgba(201, 165, 90, 1) !important;
  border: none !important;
  font-weight: 600;
}

.apply-steps li.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 165, 90, 1) !important;
  z-index: 1;
  display: block !important;
}

/* Form step containers for multi-step navigation */
.form-step {
  display: block;
}

.form-step[data-step] {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Checkbox group styling */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-text);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: rgba(201, 165, 90, 1);
}

.checkbox-label span {
  user-select: none;
}

/* File upload area */
.file-upload-area {
  position: relative;
}

.file-upload-area input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-upload-dropzone {
  border: 2px dashed rgba(15, 23, 42, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(250, 249, 247, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-dropzone:hover {
  border-color: rgba(201, 165, 90, 0.4);
  background: rgba(250, 249, 247, 0.8);
}

.file-upload-dropzone.drag-over {
  border-color: rgba(201, 165, 90, 0.6);
  background: rgba(201, 165, 90, 0.05);
}

.file-upload-text {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.file-upload-link {
  color: var(--color-text);
  text-decoration: underline;
  font-weight: 500;
}

.file-upload-hint {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

.file-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.file-preview-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: #faf9f7;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-item__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.file-preview-item__remove:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Review section */
.review-summary {
  background: rgba(250, 249, 247, 0.6);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.review-summary h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 2.5rem;
  color: #0f172a;
}

.review-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.review-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-section h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-section dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem 1.5rem;
  margin: 0;
}

.review-section dt {
  font-family: var(--font-sans);
  font-weight: 500;
  color: #475569;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.review-section dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  line-height: 1.6;
}

.review-section dd:empty::before {
  content: '—';
  color: #94a3b8;
}

/* ========================================
   HOMEPAGE: Living Portfolio Experience
   ======================================== */

/* Minimal Homepage Header */
.homepage-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /* Add safe area inset for modern browsers (iOS Safari, etc.) */
  padding-top: max(env(safe-area-inset-top, 0px), 1.5rem);
  padding-bottom: 1.5rem;
  transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, box-shadow 0.4s ease;
  /* Enhanced opacity for better visibility against dark background */
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 165, 90, 0.25);
  display: block;
  visibility: visible;
  opacity: 1;
  /* Enhanced shadow for better depth and visibility */
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 2px 12px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(201, 165, 90, 0.1);
}

.homepage-header.scrolled {
  padding-top: max(env(safe-area-inset-top, 0px), 1rem);
  padding-bottom: 1rem;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(201, 165, 90, 0.2);
  box-shadow: 0 4px 30px rgba(10, 10, 10, 0.08);
}

.homepage-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  /* Ensure proper spacing and alignment */
  min-height: 2.5rem;
}

.homepage-header__logo {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #faf9f7;
  text-transform: uppercase;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  /* Enhanced text shadow for better visibility against dark background */
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.7),
    0 1px 6px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 165, 90, 0.15);
  position: relative;
  z-index: 1;
}

.homepage-header.scrolled .homepage-header__logo {
  color: var(--color-text);
  text-shadow: none;
}

.homepage-header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.homepage-header__menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: #faf9f7;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.homepage-header.scrolled .homepage-header__menu-toggle span {
  background: var(--color-text);
  box-shadow: none;
}

.homepage-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.homepage-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.homepage-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.homepage-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.homepage-header__cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.875rem 2.5rem;
  background: rgba(250, 249, 247, 0.2);
  color: #faf9f7;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 165, 90, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 24px rgba(201, 165, 90, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 0 24px rgba(250, 249, 247, 0.12);
  position: relative;
  z-index: 1;
  /* Enhanced text shadow for visibility */
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(0, 0, 0, 0.3);
}

.homepage-header__cta:hover {
  background: rgba(250, 249, 247, 0.3);
  border-color: rgba(201, 165, 90, 0.65);
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(201, 165, 90, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 0 32px rgba(250, 249, 247, 0.15);
  text-shadow:
    0 1px 5px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(0, 0, 0, 0.4);
}

.homepage-header.scrolled .homepage-header__cta {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
  box-shadow: none;
}

.homepage-header.scrolled .homepage-header__cta:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.15);
}

.homepage-header__nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Account for safe area */
  padding-top: max(env(safe-area-inset-top, 0px), 1.5rem);
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.homepage-header__nav-panel:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.homepage-header__nav {
  width: 100%;
  max-width: 600px;
}

.homepage-header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.homepage-header__nav li {
  margin: 0;
  padding: 0;
}

.homepage-header__nav a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: color 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
}

.homepage-header__nav a:hover,
.homepage-header__nav a:focus {
  color: var(--color-text);
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.05);
  outline: none;
}

/* Responsive Header Adjustments */
@media (max-width: 768px) {
  .homepage-header {
    padding-top: max(env(safe-area-inset-top, 0px), 1rem);
    padding-bottom: 1rem;
  }

  .homepage-header.scrolled {
    padding-top: max(env(safe-area-inset-top, 0px), 0.75rem);
    padding-bottom: 0.75rem;
  }

  .homepage-header__menu-toggle {
    display: flex;
  }

  .homepage-header__cta {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .homepage-header__inner {
    padding: 0 1.5rem;
  }
}

/* Homepage-specific main element styling */
/* Page Main - Universal padding for fixed header */
.page-main {
  padding-top: calc(100px + 2rem);
  min-height: calc(100vh - 200px);
}

/* Exception for homepage sections (they have their own padding) */
body:has(.comp-card-canvas) .page-main,
body:has(.homepage-hero) .page-main,
body:has(.transformation-hero) .page-main {
  padding-top: 0;
}

/* Exception for auth pages (they have their own layout with min-height) */
body:has(.auth-page) .page-main {
  padding-top: 0;
}

/* Exception for old homepage-hero (if it exists) */
body:has(.homepage-hero) main#main {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body:has(.homepage-hero) {
  overflow-x: hidden;
}

/* Ensure universal header is always visible */
.universal-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:has(.homepage-hero) .universal-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Additional header visibility enhancements */
.universal-header__logo,
.universal-header__cta,
.universal-header__nav a {
  pointer-events: auto;
  cursor: pointer;
}

/* Ensure header doesn't overlap with browser UI on all browsers */
@supports (padding: env(safe-area-inset-top)) {
  .homepage-header {
    padding-top: max(env(safe-area-inset-top), 1.5rem);
  }

  .homepage-header.scrolled {
    padding-top: max(env(safe-area-inset-top), 1rem);
  }
}

/* Homepage Hero - Full-Bleed Editorial Layout */
.homepage-hero {
  position: relative;
  width: 100%;
  min-height: 200vh;
  background: #0a0a0a;
  background-image:
    /* Subtle fashion pattern */
    repeating-linear-gradient(0deg,
      transparent,
      transparent 50px,
      rgba(201, 165, 90, 0.02) 50px,
      rgba(201, 165, 90, 0.02) 52px),
    /* Radial light accents */
    radial-gradient(ellipse at 15% 25%, rgba(201, 165, 90, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(201, 165, 90, 0.05) 0%, transparent 40%),
    /* Base dark background */
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
}

/* Smooth transition bridge overlay - prevents black rectangle */
.homepage-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(250, 249, 247, 0.05) 30%,
      rgba(250, 249, 247, 0.15) 60%,
      rgba(250, 249, 247, 0.4) 85%,
      rgba(250, 249, 247, 0.7) 95%,
      rgba(250, 249, 247, 0.95) 100%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.homepage-hero.is-transitioning::after {
  opacity: 1;
}

/* Full-screen initial state - fills entire viewport */
.homepage-hero__fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.homepage-hero__fullscreen-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Animated AI + Fashion Background Pattern - visible before image loads */
.homepage-hero__fullscreen-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Animated grid pattern - suggests AI precision */
  background-image:
    /* Vertical grid lines */
    repeating-linear-gradient(90deg,
      transparent,
      transparent 98px,
      rgba(201, 165, 90, 0.08) 98px,
      rgba(201, 165, 90, 0.08) 100px),
    /* Horizontal grid lines */
    repeating-linear-gradient(0deg,
      transparent,
      transparent 98px,
      rgba(201, 165, 90, 0.08) 98px,
      rgba(201, 165, 90, 0.08) 100px),
    /* Diagonal fashion lines */
    repeating-linear-gradient(45deg,
      transparent,
      transparent 140px,
      rgba(201, 165, 90, 0.04) 140px,
      rgba(201, 165, 90, 0.04) 142px);
  opacity: 0.6;
  animation: gridPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.homepage-hero__fullscreen-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Geometric shapes - AI + fashion aesthetic */
  background-image:
    /* Large circle - top right */
    radial-gradient(circle at 85% 15%, rgba(201, 165, 90, 0.12) 0%, transparent 25%),
    /* Medium circle - bottom left */
    radial-gradient(circle at 15% 85%, rgba(201, 165, 90, 0.1) 0%, transparent 30%),
    /* Small accent circles */
    radial-gradient(circle at 50% 50%, rgba(201, 165, 90, 0.08) 0%, transparent 15%),
    radial-gradient(circle at 70% 70%, rgba(201, 165, 90, 0.06) 0%, transparent 20%);
  opacity: 0.5;
  animation: shapeFloat 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(0, 0);
  }

  50% {
    opacity: 0.7;
    transform: translate(2px, 2px);
  }
}

@keyframes shapeFloat {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1) translate(0, 0);
  }

  33% {
    opacity: 0.6;
    transform: scale(1.05) translate(10px, -10px);
  }

  66% {
    opacity: 0.5;
    transform: scale(0.98) translate(-5px, 5px);
  }
}

/* Reduce pattern opacity when image loads, but keep them visible for brand aesthetic */
.homepage-hero__fullscreen-image-wrapper:has(.homepage-hero__fullscreen-image.is-loaded)::before {
  opacity: 0.15;
  transition: opacity 1s ease-out;
}

.homepage-hero__fullscreen-image-wrapper:has(.homepage-hero__fullscreen-image.is-loaded)::after {
  opacity: 0.2;
  transition: opacity 1s ease-out;
}

/* Image placeholders */
.homepage-hero__image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Fashion pattern overlay */
    repeating-linear-gradient(45deg,
      transparent,
      transparent 2px,
      rgba(201, 165, 90, 0.03) 2px,
      rgba(201, 165, 90, 0.03) 4px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 2px,
      rgba(201, 165, 90, 0.02) 2px,
      rgba(201, 165, 90, 0.02) 4px),
    /* Radial gradients for depth */
    radial-gradient(ellipse at 20% 30%, rgba(201, 165, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 165, 90, 0.06) 0%, transparent 50%),
    /* Base gradient */
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  z-index: 0.5;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.homepage-hero__fullscreen-image-wrapper:has(.homepage-hero__fullscreen-image.is-loaded) .homepage-hero__image-placeholder {
  opacity: 0;
  pointer-events: none;
}

.homepage-hero__placeholder-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.homepage-hero__fullscreen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease-out;
  opacity: 1;
  position: relative;
  z-index: 1;
  display: block;
  /* Ensure image appears above background patterns */
  mix-blend-mode: normal;
}

.homepage-hero__fullscreen-image.is-loaded {
  opacity: 1;
}

/* Ensure image is visible even if onload doesn't fire */
.homepage-hero__fullscreen-image-wrapper:not(:has(.homepage-hero__fullscreen-image.is-loaded)) .homepage-hero__fullscreen-image {
  opacity: 0.95;
}

.homepage-hero__fullscreen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(10, 10, 10, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(10, 10, 10, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201, 165, 90, 0.08) 0%, transparent 70%),
    linear-gradient(135deg,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.3) 25%,
      rgba(10, 10, 10, 0.25) 50%,
      rgba(10, 10, 10, 0.35) 75%,
      rgba(10, 10, 10, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.homepage-hero__fullscreen-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 60%,
      rgba(10, 10, 10, 0.1) 75%,
      rgba(10, 10, 10, 0.2) 85%,
      rgba(10, 10, 10, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Enhanced text readability overlay */
.homepage-hero__fullscreen-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.2) 40%,
      transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.homepage-hero__fullscreen-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 5rem;
  pointer-events: none;
}

.homepage-hero__headline--fullscreen {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpInLuxury 1.2s cubic-bezier(0.22, 0.48, 0.42, 0.96) 0.3s forwards;
}

.homepage-hero__headline--fullscreen .homepage-hero__headline-fashion,
.homepage-hero__headline--fullscreen .homepage-hero__headline-ai {
  text-shadow:
    0 0 60px rgba(201, 165, 90, 0.25),
    0 0 30px rgba(201, 165, 90, 0.15),
    0 3px 20px rgba(0, 0, 0, 0.85),
    0 2px 10px rgba(0, 0, 0, 0.7),
    0 1px 5px rgba(0, 0, 0, 0.6);
}

/* Scroll indicator - positioned relative to fullscreen container */
.homepage-hero__scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 15;
  opacity: 0.9;
  animation: scrollIndicatorPulse 2.5s ease-in-out infinite;
  pointer-events: none;
  width: auto;
}

.homepage-hero__scroll-indicator-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom,
      rgba(250, 249, 247, 1) 0%,
      rgba(250, 249, 247, 0.9) 30%,
      rgba(250, 249, 247, 0.6) 60%,
      transparent 100%);
  border-radius: 2px;
  box-shadow:
    0 0 8px rgba(250, 249, 247, 0.4),
    0 0 16px rgba(201, 165, 90, 0.2);
  animation: scrollIndicatorLine 2.5s ease-in-out infinite;
}

.homepage-hero__scroll-indicator-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.95);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(201, 165, 90, 0.3);
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(250, 249, 247, 0.2);
}

@keyframes scrollIndicatorPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes scrollIndicatorLine {

  0%,
  100% {
    opacity: 0.7;
    height: 40px;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    height: 50px;
    transform: scaleY(1);
  }
}

/* Scroll area - appears after fullscreen animation */
.homepage-hero__scroll-area {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 100vh;
  z-index: 2;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 12% 20%, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.06) 25%, transparent 50%),
    radial-gradient(ellipse at 88% 80%, rgba(201, 165, 90, 0.1) 0%, rgba(201, 165, 90, 0.05) 25%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201, 165, 90, 0.05) 0%, rgba(201, 165, 90, 0.02) 30%, transparent 65%),
    linear-gradient(135deg,
      rgba(250, 249, 247, 0.96) 0%,
      rgba(250, 249, 247, 0.98) 20%,
      rgba(250, 249, 247, 1) 40%,
      rgba(250, 249, 247, 0.99) 60%,
      rgba(250, 249, 247, 0.98) 80%,
      rgba(250, 249, 247, 0.97) 100%),
    linear-gradient(180deg,
      rgba(250, 249, 247, 1) 0%,
      rgba(250, 249, 247, 0.99) 50%,
      rgba(250, 249, 247, 0.98) 100%);
  opacity: 0;
  transition: opacity 1.2s ease-out;
  overflow: visible;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.homepage-hero__scroll-area.is-transitioning {
  opacity: 1;
}

/* White background fade-in during transition - extends upward to bridge gap */
.homepage-hero__scroll-area::before {
  content: '';
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: calc(100% + 100vh);
  background:
    radial-gradient(ellipse at 25% 15%, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.04) 30%, transparent 50%),
    radial-gradient(ellipse at 75% 85%, rgba(201, 165, 90, 0.07) 0%, rgba(201, 165, 90, 0.035) 30%, transparent 50%),
    /* Smooth gradient bridge from dark to light */
    linear-gradient(to bottom,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.85) 20%,
      rgba(10, 10, 10, 0.6) 40%,
      rgba(10, 10, 10, 0.3) 60%,
      rgba(250, 249, 247, 0.1) 80%,
      rgba(250, 249, 247, 0.94) 90%,
      rgba(250, 249, 247, 0.96) 95%,
      rgba(250, 249, 247, 0.98) 98%,
      rgba(250, 249, 247, 1) 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  transform: translateY(20px);
}

.homepage-hero__scroll-area.is-transitioning::before {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Add cinematic depth and visual interest to scroll area */
.homepage-hero__scroll-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.18) 0%, rgba(201, 165, 90, 0.1) 15%, rgba(201, 165, 90, 0.05) 30%, transparent 55%),
    radial-gradient(ellipse at 20% 35%, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.06) 25%, transparent 55%),
    radial-gradient(ellipse at 80% 65%, rgba(201, 165, 90, 0.1) 0%, rgba(201, 165, 90, 0.05) 20%, transparent 50%),
    linear-gradient(135deg,
      transparent 0%,
      rgba(250, 249, 247, 0.15) 8%,
      rgba(250, 249, 247, 0.35) 20%,
      rgba(250, 249, 247, 0.55) 35%,
      rgba(250, 249, 247, 0.75) 55%,
      rgba(250, 249, 247, 0.92) 78%,
      rgba(250, 249, 247, 0.98) 92%,
      rgba(250, 249, 247, 1) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  filter: blur(1.5px);
}

.homepage-hero__scroll-area.is-transitioning::after {
  opacity: 1;
}

/* Background Image */
.homepage-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.homepage-hero__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.homepage-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  animation: kenBurns 25s ease-in-out infinite alternate;
  opacity: 0.98;
  filter: brightness(0.92) contrast(1.05) saturate(1.1);
  transition: filter 0.6s ease;
}

.homepage-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(10, 10, 10, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(10, 10, 10, 0.3) 0%, transparent 50%),
    linear-gradient(135deg,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.5) 25%,
      rgba(10, 10, 10, 0.4) 50%,
      rgba(10, 10, 10, 0.6) 75%,
      rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(to bottom,
      transparent 0%,
      rgba(10, 10, 10, 0.2) 50%,
      rgba(10, 10, 10, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Subtle light accent for depth */
.homepage-hero__overlay::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

/* Main Container - Grid Layout */
.homepage-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem;
  padding-bottom: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8.5rem;
  align-items: start;
  min-height: 100vh;
  box-sizing: border-box;
  transform: translateZ(0);
  overflow: visible;
}

/* Sticky text column */
.homepage-hero__content--sticky {
  position: sticky;
  top: calc(max(env(safe-area-inset-top, 0px), 1.5rem) + 6.5rem);
  align-self: start;
  padding-top: 2rem;
  height: fit-content;
}

/* Text reveal container */
.homepage-hero__text-reveal {
  position: relative;
  min-height: 500px;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
}

.homepage-hero__text-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  filter: blur(1px);
}

.homepage-hero__text-step--active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  filter: blur(0);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    filter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.homepage-hero__reveal-text {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.015em;
  position: relative;
  padding: 2rem 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.homepage-hero__reveal-text::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom,
      rgba(201, 165, 90, 0.7) 0%,
      rgba(201, 165, 90, 0.5) 50%,
      rgba(201, 165, 90, 0.3) 100%);
  transition: height 0.7s cubic-bezier(0.22, 0.48, 0.42, 0.96);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(201, 165, 90, 0.3);
}

.homepage-hero__text-step--active .homepage-hero__reveal-text::before {
  height: 65%;
  transition-delay: 0.2s;
}

.homepage-hero__reveal-text--bold {
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: #0f172a;
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.18em;
}

.homepage-hero__reveal-text--bold::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(201, 165, 90, 0.9) 0%,
      rgba(201, 165, 90, 0.6) 50%,
      transparent 100%);
  transition: width 0.9s cubic-bezier(0.22, 0.48, 0.42, 0.96);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.4);
}

.homepage-hero__text-step--active .homepage-hero__reveal-text--bold::after {
  width: 100%;
  transition-delay: 0.3s;
}

/* Left Column: Typography & CTA */
.homepage-hero__content {
  position: relative;
  z-index: 4;
  text-align: left;
  pointer-events: all;
  padding-right: 1rem;
  transform: translateZ(0);
}

.homepage-hero__headline {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 1.08;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpInLuxury 1.3s cubic-bezier(0.22, 0.48, 0.42, 0.96) 0.2s forwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}

/* Fashion Agency Typography - Elegant Serif */
.homepage-hero__headline-fashion {
  font-family: var(--font-serif);
  font-weight: 300;
  color: #faf9f7;
  text-shadow:
    0 0 50px rgba(201, 165, 90, 0.2),
    0 0 25px rgba(201, 165, 90, 0.12),
    0 3px 18px rgba(0, 0, 0, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.65),
    0 1px 4px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.02em;
  display: inline-block;
}

/* AI Technology Typography - Modern Monospace */
.homepage-hero__headline-ai {
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
  font-weight: 500;
  color: #faf9f7;
  text-shadow:
    0 0 55px rgba(201, 165, 90, 0.3),
    0 0 28px rgba(201, 165, 90, 0.18),
    0 3px 18px rgba(0, 0, 0, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.65),
    0 1px 4px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(201, 165, 90, 0.15);
  letter-spacing: 0.08em;
  display: inline-block;
  position: relative;
}

/* Subtle tech accent on AI text */
.homepage-hero__headline-ai::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  opacity: 0.6;
  animation: techGlow 2s ease-in-out infinite;
}

@keyframes techGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.8);
  }

  50% {
    opacity: 0.8;
    transform: scaleX(1);
  }
}

/* Vision Statement - Prominent and Impactful */
.homepage-hero__vision {
  margin: 0 0 3.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpInLuxury 1.3s cubic-bezier(0.22, 0.48, 0.42, 0.96) 0.5s forwards;
}

.homepage-hero__vision-text {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: #faf9f7;
  margin: 0 0 0.875rem 0;
  letter-spacing: -0.01em;
  text-shadow:
    0 3px 32px rgba(0, 0, 0, 0.78),
    0 2px 16px rgba(0, 0, 0, 0.62),
    0 0 48px rgba(201, 165, 90, 0.16);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 95%;
  position: relative;
  padding-left: 3.5rem;
}

/* AI + Fashion Agency Typography - Tech-forward with elegance */
.homepage-hero__vision-text::before {
  content: 'AI';
  font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(201, 165, 90, 0.82);
  text-shadow:
    0 0 14px rgba(201, 165, 90, 0.35),
    0 0 28px rgba(201, 165, 90, 0.22);
  position: absolute;
  top: -0.4em;
  left: 0;
  opacity: 0.75;
  line-height: 1;
}

.homepage-hero__vision-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(250, 249, 247, 0.88);
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.65),
    0 1px 8px rgba(0, 0, 0, 0.45);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 90%;
  padding-left: 3.5rem;
}

/* Legacy subheadline - keep for backward compatibility */
.homepage-hero__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(250, 249, 247, 0.98);
  margin: 0 0 4rem 0;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpInLuxury 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  text-shadow:
    0 3px 30px rgba(0, 0, 0, 0.8),
    0 1px 15px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(201, 165, 90, 0.15);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 90%;
}

.homepage-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpInLuxury 1.3s cubic-bezier(0.22, 0.48, 0.42, 0.96) 0.7s forwards;
  box-shadow:
    0 12px 48px rgba(10, 10, 10, 0.68),
    0 6px 28px rgba(10, 10, 10, 0.58),
    0 0 0 2px rgba(201, 165, 90, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 58px rgba(201, 165, 90, 0.22);
  border: 2px solid rgba(201, 165, 90, 0.48);
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  background-size: 200% 100%;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.55s cubic-bezier(0.22, 0.48, 0.42, 0.96);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  pointer-events: all;
}

.homepage-hero__cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.28), transparent);
  transition: left 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.homepage-hero__cta-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.18) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1), height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.homepage-hero__cta-primary:hover::before {
  left: 100%;
}

.homepage-hero__cta-primary:hover::after {
  width: 280px;
  height: 280px;
}

.homepage-hero__cta-primary:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 18px 68px rgba(10, 10, 10, 0.78),
    0 9px 38px rgba(10, 10, 10, 0.68),
    0 0 0 2px rgba(201, 165, 90, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 78px rgba(201, 165, 90, 0.32);
  border-color: rgba(201, 165, 90, 0.68);
  background-position: 100% 0;
  color: #ffffff;
}

.homepage-hero__cta-text {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.22, 0.48, 0.42, 0.96);
}

.homepage-hero__cta-primary:hover .homepage-hero__cta-text {
  transform: translateX(3px);
}

.homepage-hero__cta-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.22, 0.48, 0.42, 0.96);
  flex-shrink: 0;
}

.homepage-hero__cta-primary:hover .homepage-hero__cta-arrow {
  transform: translateX(5px);
}

@keyframes fadeUpInLuxury {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right Column: Comp Card - Assembly Animation */
.homepage-hero__comp-card-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 0 rgba(10, 10, 10, 0));
  transform-style: preserve-3d;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.homepage-hero__comp-card-wrapper.is-assembling {
  opacity: 1;
  transform: translateY(0) scale(1) translateZ(0);
  filter: drop-shadow(0 20px 60px rgba(10, 10, 10, 0.15)) drop-shadow(0 10px 30px rgba(10, 10, 10, 0.1));
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Comp card initially hidden, then assembles */
.hero-comp-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  box-shadow:
    0 45px 110px -30px rgba(10, 10, 10, 0.48),
    0 18px 55px -20px rgba(10, 10, 10, 0.38),
    0 8px 25px -10px rgba(10, 10, 10, 0.25),
    0 0 0 1px rgba(201, 165, 90, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(10, 10, 10, 0.05);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateY(0) translateZ(0);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 247, 1) 100%);
  z-index: 1;
}

.hero-comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.3) 20%,
      rgba(201, 165, 90, 0.5) 50%,
      rgba(201, 165, 90, 0.3) 80%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease-out;
  z-index: 1;
}

.hero-comp-card.is-assembling::before {
  opacity: 1;
}

/* Card image - smooth fade in after wrapper appears */
#hero-card-image {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  position: relative;
}

#hero-card-image.is-assembling {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

#hero-card-image.is-assembling .hero-comp-card__frame-placeholder {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

/* Card content (stats) fades in after image */
#hero-card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

#hero-card-content.is-assembling {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky pin after assembly */
.homepage-hero__comp-card-wrapper.is-pinned {
  position: sticky;
  top: calc(max(env(safe-area-inset-top, 0px), 1.5rem) + 6.5rem);
  align-self: start;
  z-index: 10;
  transform: translateZ(0);
}

/* Smooth transition from hero to next section */
/* Enhanced Seamless Transition with Multiple Layers */
/* Removed dark transition bands - clean transition to rest of page */
.homepage-hero::after {
  display: none;
}

.homepage-hero::before {
  display: none;
}

@keyframes smoothFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes elegantWave {
  0% {
    opacity: 0;
    clip-path: polygon(0% 100%, 3% 100%, 6% 100%, 9% 100%, 12% 100%, 15% 100%, 18% 100%, 21% 100%, 24% 100%, 27% 100%, 30% 100%, 33% 100%, 36% 100%, 39% 100%, 42% 100%, 45% 100%, 48% 100%, 51% 100%, 54% 100%, 57% 100%, 60% 100%, 63% 100%, 66% 100%, 69% 100%, 72% 100%, 75% 100%, 78% 100%, 81% 100%, 84% 100%, 87% 100%, 90% 100%, 93% 100%, 96% 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0% 25%, 3% 20%, 6% 22%, 9% 18%, 12% 20%, 15% 17%, 18% 19%, 21% 16%, 24% 18%, 27% 15%, 30% 17%, 33% 14%, 36% 16%, 39% 13%, 42% 15%, 45% 13%, 48% 15%, 51% 12%, 54% 14%, 57% 12%, 60% 14%, 63% 11%, 66% 13%, 69% 11%, 72% 13%, 75% 10%, 78% 12%, 81% 10%, 84% 12%, 87% 9%, 90% 11%, 93% 9%, 96% 11%, 100% 8%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}

/* Interactive Demo Section - Smooth transition from hero */
.homepage-demo {
  position: relative;
  background: #faf9f7;
  padding: 6rem 0 8rem;
  margin-top: -200px;
  padding-top: calc(6rem + 200px);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 165, 90, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 165, 90, 0.02) 0%, transparent 50%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
  .homepage-hero__container {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem 2rem;
  }

  .homepage-hero__content--sticky {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .homepage-hero__comp-card-wrapper {
    order: -1;
    margin-bottom: 3rem;
  }

  .homepage-hero__text-reveal {
    min-height: 350px;
  }

  .homepage-hero__fullscreen-text {
    padding: 0 3rem;
  }

  .homepage-hero__headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }

  .homepage-hero__reveal-text {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    padding: 1.5rem 0;
  }

  .homepage-hero__reveal-text--bold {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }

  .homepage-hero__scroll-indicator {
    bottom: 2.5rem;
  }

  .homepage-hero__scroll-indicator-line {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .homepage-hero {
    min-height: 150vh;
  }

  .homepage-hero__container {
    padding: 2rem 1.5rem;
    gap: 3rem;
  }

  .homepage-hero__fullscreen-text {
    padding: 0 2rem;
  }

  .homepage-hero__headline {
    font-size: clamp(2rem, 10vw, 4rem);
    margin-bottom: 2rem;
  }

  .homepage-hero__headline--fullscreen {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .homepage-hero__text-reveal {
    min-height: 300px;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
  }

  .homepage-hero__reveal-text {
    font-size: clamp(1.25rem, 4.5vw, 2rem);
    padding: 1.25rem 0;
  }

  .homepage-hero__reveal-text--bold {
    font-size: clamp(1.25rem, 5vw, 2.5rem);
  }

  .homepage-hero__reveal-text::before {
    left: -1.5rem;
    width: 3px;
  }

  .homepage-hero__reveal-text--bold {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .homepage-hero__scroll-indicator {
    bottom: 2rem;
    gap: 0.75rem;
  }

  .homepage-hero__scroll-indicator-text {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
  }

  .homepage-hero__scroll-indicator-line {
    height: 35px;
    width: 1.5px;
  }

  .homepage-hero__cta-primary {
    padding: 1.5rem 3rem;
    font-size: 0.8125rem;
    width: 100%;
    justify-content: center;
  }

  .homepage-hero__comp-card-wrapper {
    margin-bottom: 2rem;
  }

  .hero-comp-card {
    max-width: 100%;
  }

  #hero-card-image {
    transform: scale(1.2) translateX(-10%) translateY(3%);
  }
}

@media (max-width: 480px) {
  .homepage-hero__container {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .homepage-hero__fullscreen-text {
    padding: 0 1.5rem;
  }

  .homepage-hero__headline {
    font-size: clamp(1.75rem, 12vw, 3rem);
    line-height: 1.1;
  }

  .homepage-hero__headline--fullscreen {
    font-size: clamp(2rem, 14vw, 4rem);
  }

  .homepage-hero__text-reveal {
    min-height: 250px;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
  }

  .homepage-hero__reveal-text {
    font-size: clamp(1.125rem, 5.5vw, 1.75rem);
    padding: 1rem 0;
  }

  .homepage-hero__reveal-text--bold {
    font-size: clamp(1.125rem, 6vw, 2rem);
  }

  .homepage-hero__reveal-text::before {
    left: -1rem;
    width: 2px;
  }

  .homepage-hero__reveal-text--bold {
    font-size: clamp(0.875rem, 4vw, 1.25rem);
  }

  .homepage-hero__scroll-indicator {
    bottom: 1.5rem;
  }

  .homepage-hero__scroll-indicator-line {
    height: 30px;
  }

  .homepage-hero__cta-primary {
    padding: 1.25rem 2rem;
    font-size: 0.75rem;
  }

  .homepage-hero__comp-card-wrapper.is-pinned {
    position: relative;
    top: auto;
  }
}

.hero-comp-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  box-shadow:
    0 40px 100px -30px rgba(10, 10, 10, 0.45),
    0 16px 50px -20px rgba(10, 10, 10, 0.35),
    0 0 0 1px rgba(201, 165, 90, 0.2);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpInLuxury 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-comp-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 55px 130px -20px rgba(10, 10, 10, 0.48),
    0 22px 65px -12px rgba(10, 10, 10, 0.38),
    0 10px 30px -8px rgba(10, 10, 10, 0.25),
    0 0 0 1px rgba(201, 165, 90, 0.2);
}

.hero-comp-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(201, 165, 90, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 165, 90, 0.35);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
  font-family: var(--font-sans);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  border-radius: 0;
}

.hero-comp-card__badge:hover {
  background: rgba(201, 165, 90, 0.2);
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-1px);
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-comp-card__badge svg {
  width: 14px;
  height: 14px;
  color: #c9a55a;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.hero-comp-card__image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  background: #f5f5f4;
}

/* Card image placeholder */
.hero-comp-card__image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e5e5 0%, #f0f0f0 50%, #e5e5e5 100%);
  z-index: 0;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.hero-comp-card__image:has(img.is-loaded) .hero-comp-card__image-placeholder {
  opacity: 0;
  pointer-events: none;
}

.hero-comp-card__placeholder-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  animation: shimmer 2s infinite;
}

/* Card frame placeholder - appears during transition */
.hero-comp-card__frame-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 165, 90, 0.3);
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.hero-comp-card__frame-placeholder.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-comp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease-out;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.hero-comp-card__image img.is-loaded {
  opacity: 1;
}

.hero-comp-card:hover .hero-comp-card__image img {
  transform: scale(1.05);
}

.hero-comp-card__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.3) 50%,
      rgba(10, 10, 10, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 1;
}

.hero-comp-card:hover .hero-comp-card__image-overlay {
  opacity: 1;
}

.hero-comp-card__image-name {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #faf9f7;
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.8),
    0 1px 10px rgba(0, 0, 0, 0.6);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  opacity: 0;
}

.hero-comp-card:hover .hero-comp-card__image-name {
  transform: translateY(0);
  opacity: 1;
}

.hero-comp-card__image-location {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.85);
  text-align: center;
  text-shadow:
    0 1px 10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.4);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  opacity: 0;
}

.hero-comp-card:hover .hero-comp-card__image-location {
  transform: translateY(0);
  opacity: 1;
}

.hero-comp-card__content {
  padding: 2.75rem;
  display: block;
  visibility: visible;
  opacity: 1;
  min-height: auto;
}

.hero-comp-card__name {
  font-family: var(--font-sans);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 0.875rem 0;
  line-height: 1.32;
}

.hero-comp-card__location {
  font-size: 0.8125rem;
  color: #64748b;
  letter-spacing: 0.1em;
  margin: 0 0 2.125rem 0;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-comp-card__stats {
  display: flex;
  gap: 2.75rem;
  margin-bottom: 2.125rem;
  padding-bottom: 2.125rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.55);
  visibility: visible;
  opacity: 1;
  min-height: auto;
}

.hero-comp-card__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-comp-card__stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4375rem;
}

.hero-comp-card__stat-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.018em;
}

.hero-comp-card__bio {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: #475569;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.008em;
  visibility: visible;
  opacity: 1;
  display: block;
  min-height: auto;
}



/* Responsive Design for Hero */
/* Responsive Design for New Hero Layout */
@media (max-width: 1024px) {
  .homepage-hero__container {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: calc(max(env(safe-area-inset-top, 0px), 1.5rem) + 5rem) 4rem 4rem;
  }

  .homepage-hero__content {
    text-align: center;
  }

  .homepage-hero__subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .homepage-hero__comp-card-wrapper {
    order: -1;
  }

  .hero-comp-card {
    max-width: 100%;
  }

  .hero-comp-card__image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .homepage-hero::after {
    display: none;
  }

  .homepage-hero::before {
    display: none;
  }

  .homepage-hero__container {
    gap: 3rem;
    padding: calc(max(env(safe-area-inset-top, 0px), 1.5rem) + 4rem) 3rem 3rem;
  }

  .homepage-hero__headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
  }

  .homepage-hero__headline-fashion,
  .homepage-hero__headline-ai {
    display: block;
  }

  .homepage-hero__headline-ai::after {
    height: 1.5px;
  }

  .homepage-hero__subheadline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
  }

  .homepage-hero__vision-text {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    padding-left: 2.5rem;
  }

  .homepage-hero__vision-tagline {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    padding-left: 2.5rem;
  }

  .homepage-hero__cta-primary {
    padding: 1.5rem 3rem;
    font-size: 0.8125rem;
    gap: 0.75rem;
  }

  .hero-comp-card {
    max-width: 100%;
  }

  .hero-comp-card__image {
    height: 300px;
  }

  .hero-comp-card__content {
    padding: 1.75rem;
  }

  .hero-comp-card__stats {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .homepage-hero::after {
    display: none;
  }

  .homepage-hero::before {
    display: none;
  }

  .homepage-hero__container {
    gap: 2.5rem;
    padding: calc(max(env(safe-area-inset-top, 0px), 1.5rem) + 2.5rem) 1.5rem 2.5rem;
  }

  .homepage-hero__headline {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
  }

  .homepage-hero__headline-fashion,
  .homepage-hero__headline-ai {
    display: block;
  }

  .homepage-hero__headline-ai::after {
    height: 1px;
  }

  .homepage-hero__subheadline {
    font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
    margin-bottom: 1.75rem;
  }

  .homepage-hero__vision-text {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    padding-left: 2rem;
  }

  .homepage-hero__vision-tagline {
    font-size: clamp(0.8125rem, 2.5vw, 1rem);
    padding-left: 2rem;
  }

  .homepage-hero__cta-primary {
    padding: 1.25rem 2.5rem;
    font-size: 0.75rem;
    gap: 0.625rem;
  }

  .homepage-hero__cta-arrow {
    width: 14px;
    height: 14px;
  }

  .hero-comp-card__image {
    height: 280px;
  }

  .hero-comp-card__name {
    font-size: 1.25rem;
  }

  .hero-comp-card__content {
    padding: 1.5rem;
  }

  .hero-comp-card__badge {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
  }
}

/* Interactive Demo: Comp Card & Bio Morphing - Luxury Treatment */
/* Note: Base styles defined above at line 2077, this section adds additional styling */
.homepage-demo {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 165, 90, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 165, 90, 0.02) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.homepage-demo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.homepage-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(201, 165, 90, 0.15) 20%,
      rgba(201, 165, 90, 0.25) 50%,
      rgba(201, 165, 90, 0.15) 80%,
      transparent 100%);
  box-shadow:
    0 1px 2px rgba(201, 165, 90, 0.1),
    0 0 8px rgba(201, 165, 90, 0.05);
}

.homepage-demo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.homepage-hero.is-transitioning .homepage-hero__image {
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease;
  transform: scale(0.3) translate(0, -20%);
  opacity: 0;
}

.homepage-demo__comp-card {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow:
    0 60px 120px -40px rgba(10, 10, 10, 0.25),
    0 20px 60px -30px rgba(10, 10, 10, 0.15),
    0 0 0 1px rgba(201, 165, 90, 0.1);
  transform: scale(0.85);
  opacity: 0;
  animation: slideInCardLuxury 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  position: relative;
}

.homepage-demo__comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15) 0%, rgba(201, 165, 90, 0.05) 50%, rgba(0, 0, 0, 0.03) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes slideInCardLuxury {
  0% {
    transform: scale(0.85) translateY(30px);
    opacity: 0;
  }

  60% {
    transform: scale(1.02) translateY(-5px);
    opacity: 0.9;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.comp-card__image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.comp-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
  background-image: url('https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
  display: none;
  z-index: 0;
}

.comp-card__image:has(img[style*="display: none"]) .comp-card__placeholder,
.comp-card__image img[style*="display: none"]~.comp-card__placeholder {
  display: block;
}

.comp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comp-card__content {
  padding: 2.5rem;
}

.comp-card__name {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comp-card__location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 0 0 2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.comp-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.stat-value {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.35s cubic-bezier(0.22, 0.48, 0.42, 0.96);
}

.stat-value:hover {
  transform: translateY(-2px);
}

.bio-demo {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.bio-demo__raw,
.bio-demo__curated {
  margin-bottom: 1.5rem;
}

.bio-demo__label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.bio-demo__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.bio-demo__morph {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bio-demo__morph[style*="opacity: 1"] {
  opacity: 1;
  transform: scale(1);
}

.bio-demo__icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  animation: sparkle 1.5s ease-in-out infinite;
}

.bio-demo__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

/* Filmstrip: Agency Board - Luxury Treatment */
.homepage-filmstrip {
  min-height: 100vh;
  padding: 10rem 0 8rem;
  background: #faf9f7;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(201, 165, 90, 0.01) 100px, rgba(201, 165, 90, 0.01) 101px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.homepage-filmstrip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 165, 90, 0.2), rgba(0, 0, 0, 0.08), rgba(201, 165, 90, 0.2), transparent);
}

.homepage-filmstrip__header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.homepage-filmstrip__subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.homepage-filmstrip__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.homepage-filmstrip__container {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.homepage-filmstrip__container::before,
.homepage-filmstrip__container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.homepage-filmstrip__container::before {
  left: 0;
  background: linear-gradient(to right, #faf9f7, transparent);
}

.homepage-filmstrip__container::after {
  right: 0;
  background: linear-gradient(to left, #faf9f7, transparent);
}

.homepage-filmstrip__container:active {
  cursor: grabbing;
}

.homepage-filmstrip__track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.homepage-filmstrip__track::-webkit-scrollbar {
  display: none;
}

.filmstrip-card {
  flex: 0 0 320px;
  height: 480px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  box-shadow:
    0 30px 80px -40px rgba(10, 10, 10, 0.25),
    0 0 0 1px rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.filmstrip-card:hover,
.filmstrip-card.is-hovered {
  transform: translateY(-16px) scale(1.03);
  box-shadow:
    0 50px 120px -40px rgba(10, 10, 10, 0.35),
    0 0 0 1px rgba(201, 165, 90, 0.2);
  z-index: 10;
  border-color: rgba(201, 165, 90, 0.25);
}

.filmstrip-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.filmstrip-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filmstrip-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.filmstrip-card__image img[src=""],
.filmstrip-card__image img:not([src]),
.filmstrip-card__image img[src*="undefined"] {
  opacity: 0;
}

.filmstrip-card__image:has(img[src=""])::before,
.filmstrip-card__image:has(img:not([src]))::before {
  opacity: 1;
  background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=900&q=90');
}

.filmstrip-card:hover .filmstrip-card__image img,
.filmstrip-card.is-hovered .filmstrip-card__image img {
  transform: scale(1.1);
}

.filmstrip-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.filmstrip-card:hover .filmstrip-card__overlay,
.filmstrip-card.is-hovered .filmstrip-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.filmstrip-card__name {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filmstrip-card__location {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

body.filmstrip-hover {
  background: rgba(0, 0, 0, 0.02);
  transition: background 0.3s ease;
}

/* Old homepage CTA and testimonials styles removed - using new styles further down in the file */

.apply-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: 0 40px 90px -60px rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 1.75rem;
}

.apply-card .form-field {
  margin-bottom: 0;
}

.apply-card .form-field label {
  margin-bottom: 10px;
}

.apply-form-card .form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.apply-form-card .form-actions button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.apply-form-card .apply-note {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.875rem;
  color: #475569;
  text-align: center;
  font-family: var(--font-sans);
  line-height: 1.6;
}

.apply-card .form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .apply-card .form-grid {
    grid-template-columns: 1fr;
  }
}

.apply-card textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.apply-card .form-field:has(textarea) {
  margin-top: 0.5rem;
}

.apply-card .form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.apply-card .form-actions button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Apply Success Page - Editorial Style */
.apply-success {
  min-height: 100vh;
  background: #faf9f7;
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  position: relative;
}

.apply-success__container {
  max-width: 900px;
  margin: 0 auto;
}

/* Success Icon */
.apply-success__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeInScale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.apply-success__checkmark {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheckmark 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes drawCheckmark {
  to {
    stroke-dashoffset: 0;
  }
}

/* Success Message */
.apply-success__message {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apply-success__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.apply-success__name {
  color: rgba(201, 165, 90, 1);
  font-weight: 400;
}

.apply-success__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Summary Section */
.apply-success__summary {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.apply-success__summary-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: #0f172a;
}

.apply-success__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.apply-success__checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.apply-success__checklist-item svg {
  flex-shrink: 0;
}

/* Next Steps Section */
.apply-success__next-steps {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.apply-success__next-steps-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  color: #0f172a;
}

.apply-success__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.apply-success__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: rgba(201, 165, 90, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(201, 165, 90, 0.1);
  transition: all 0.3s ease;
}

.apply-success__step.is-complete {
  background: rgba(201, 165, 90, 0.05);
  border-color: rgba(201, 165, 90, 0.2);
}

.apply-success__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 165, 90, 0.15);
  border: 2px solid rgba(201, 165, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  flex-shrink: 0;
}

.apply-success__step.is-complete .apply-success__step-number {
  background: rgba(201, 165, 90, 0.2);
  border-color: rgba(201, 165, 90, 0.4);
}

.apply-success__step-content {
  flex: 1;
}

.apply-success__step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.apply-success__step-content p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.apply-success__step-check {
  flex-shrink: 0;
  animation: fadeInScale 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apply-success__link {
  color: rgba(201, 165, 90, 1);
  text-decoration: underline;
  text-decoration-color: rgba(201, 165, 90, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.apply-success__link:hover {
  text-decoration-color: rgba(201, 165, 90, 0.6);
}

/* CTA Actions */
.apply-success__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.apply-success__cta {
  min-width: 200px;
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .apply-success {
    padding: 3rem 1.5rem;
  }

  .apply-success__container {
    max-width: 100%;
  }

  .apply-success__icon {
    margin-bottom: 2rem;
  }

  .apply-success__icon svg {
    width: 60px;
    height: 60px;
  }

  .apply-success__message {
    margin-bottom: 3rem;
  }

  .apply-success__summary,
  .apply-success__next-steps {
    padding: 2rem 1.5rem;
  }

  .apply-success__step {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .apply-success__step-check {
    grid-column: 1 / -1;
    justify-self: flex-end;
  }

  .apply-success__actions {
    flex-direction: column;
  }

  .apply-success__cta {
    width: 100%;
  }
}

.portfolio-hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: end;
  width: min(1100px, 92vw);
  margin: 3rem auto;
}

.portfolio-hero__meta {
  display: grid;
  gap: 0.8rem;
}

.portfolio-location {
  margin: 0;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-stats {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.portfolio-stats span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.portfolio-hero__image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 90px -60px rgba(15, 23, 42, 0.4);
}

.portfolio-body {
  width: min(1100px, 92vw);
  margin: 0 auto 4rem;
  display: grid;
  gap: 2.5rem;
}

.portfolio-bio {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: 0 40px 90px -60px rgba(15, 23, 42, 0.35);
}

.portfolio-gallery {
  display: grid;
  gap: 1.5rem;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portfolio-grid figure {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.portfolio-grid img {
  width: 100%;
  border-radius: 18px;
}

.portfolio-grid figcaption {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Responsive: Page Main padding */
@media (max-width: 768px) {
  .page-main {
    padding-top: calc(80px + 1.5rem);
  }

  /* Auth Page - Stack on mobile */
  .auth-page {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(80px + 2rem);
  }

  .auth-page__visual {
    min-height: 40vh;
    padding: 2.5rem 2rem;
  }

  .auth-page__form {
    padding: 2.5rem 2rem;
  }

  .auth-page__form-container {
    max-width: 100%;
  }
}

@media (max-width: 720px) {

  .auth-layout,
  .apply-layout {
    margin-top: 1.5rem;
  }

  .auth-card,
  .apply-card,
  .portfolio-bio {
    padding: 1.5rem;
  }

  .site-header__cta {
    flex-wrap: wrap;
  }

  .auth-page__visual-headline {
    font-size: 2rem;
  }

  .auth-page__form-title {
    font-size: 1.75rem;
  }
}

/* ========================================
   FEATURES PAGE - Editorial Style
   ======================================== */

/* Features Header - Compact Editorial Style */
.features-header {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.features-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.features-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.features-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.features-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.features-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.features-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.features-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.features-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Feature Spread - Base Styles */
.feature-spread {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem;
  background: #faf9f7;
  overflow: hidden;
}

.feature-spread__container {
  max-width: 1400px;
  margin: 0 auto;
}

.feature-spread__header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-spread__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-spread__number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 0.6);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.feature-spread__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.feature-spread__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.feature-spread__description {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Demo - Base */
.feature-demo {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.feature-demo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature 1: AI Brain Transformation Demo */
.feature-demo--transformation {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 40px 90px -60px rgba(15, 23, 42, 0.35);
}

.feature-demo__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}

.feature-demo__split::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(201, 165, 90, 0.3), transparent);
  z-index: 1;
}

.feature-demo__split::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(201, 165, 90, 0.6);
  z-index: 2;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 50%;
}

.feature-demo__panel {
  position: relative;
  z-index: 3;
}

.feature-demo__label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-demo__textarea {
  width: 100%;
  min-height: 200px;
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: #0f172a;
  background: #faf9f7;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-demo__textarea:focus {
  outline: none;
  border-color: rgba(201, 165, 90, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.1);
}

.feature-demo__stats-input,
.feature-demo__stats-output {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.feature-demo__stat-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}

.feature-demo__stat-label {
  color: #64748b;
  font-weight: 500;
}

.feature-demo__stat-value {
  color: #0f172a;
  font-weight: 600;
}

.feature-demo__output {
  min-height: 200px;
  padding: 1.5rem;
  border: 2px solid rgba(201, 165, 90, 0.3);
  border-radius: 12px;
  background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.feature-demo__output-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.8;
  color: #0f172a;
  margin: 0;
}

.feature-demo__sparkle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
}

.feature-demo__sparkle.is-active {
  animation: sparkle 1s ease-out;
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Feature 2: PDF Themes Gallery */
.feature-demo--themes {
  padding: 2rem 0;
}

.feature-demo__themes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-demo__themes-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin: 0;
}

.feature-demo__themes-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.4);
  border-color: rgba(201, 165, 90, 0.3);
}

.theme-card.is-selected {
  border-color: rgba(201, 165, 90, 0.6);
  box-shadow: 0 20px 60px -40px rgba(201, 165, 90, 0.3);
}

.theme-card__preview {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.theme-card__preview-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.theme-card__preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  color: #0f172a;
  font-family: var(--font-serif);
}

.theme-card__preview-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.theme-card__preview-stats {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  opacity: 0.8;
}

.theme-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.theme-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.theme-card__badge--free {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.3);
}

.theme-card__badge--pro {
  background: rgba(15, 23, 42, 0.05);
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.theme-card__lock {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  opacity: 0.6;
}

.theme-card[data-pro="true"] {
  opacity: 0.7;
}

.theme-card[data-pro="true"]:hover {
  opacity: 0.9;
}

.feature-demo__theme-preview-full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.feature-demo__theme-preview-full:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.feature-demo__theme-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(250, 249, 247, 0.1);
  color: #faf9f7;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.feature-demo__theme-close:hover {
  background: rgba(250, 249, 247, 0.2);
}

.feature-demo__theme-preview-content {
  max-width: 800px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  max-height: 90vh;
  overflow-y: auto;
}

/* Feature 3: Portfolio Showcase - Enhanced with Morphing Animations */
.feature-demo--portfolio {
  background: #ffffff;
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 40px 90px -60px rgba(15, 23, 42, 0.35);
  position: relative;
  overflow: hidden;
}

.feature-demo--portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-demo--portfolio.is-visible::before {
  opacity: 1;
}

.feature-demo__portfolio-toggle {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
}

.feature-demo__toggle-btn {
  padding: 1.25rem 2.5rem;
  border: 2px solid #e2e8f0;
  background: #faf9f7;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  transform: translateY(0);
  overflow: hidden;
}

.feature-demo__toggle-btn:hover {
  border-color: rgba(201, 165, 90, 0.5);
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(201, 165, 90, 0.3);
}

.feature-demo__toggle-btn--active {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15), rgba(201, 165, 90, 0.05));
  border-color: rgba(201, 165, 90, 0.8);
  color: rgba(201, 165, 90, 1);
  box-shadow: 0 4px 16px -4px rgba(201, 165, 90, 0.4);
}

.toggle-btn__label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.toggle-btn__badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  padding: 0.25rem 0.75rem;
  background: rgba(100, 116, 139, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.toggle-btn__badge--pro {
  color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.15);
}

.feature-demo__toggle-btn--active .toggle-btn__badge {
  color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.2);
}

.feature-demo__portfolio-preview {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  perspective: 1200px;
}

.feature-demo__portfolio-frame {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px -32px rgba(15, 23, 42, 0.25),
    0 8px 32px -8px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.feature-demo__portfolio-frame.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-demo__portfolio-frame[data-state="pro"] {
  box-shadow: 0 32px 100px -40px rgba(201, 165, 90, 0.3),
    0 12px 40px -12px rgba(201, 165, 90, 0.2),
    0 0 0 1px rgba(201, 165, 90, 0.1);
  border-color: rgba(201, 165, 90, 0.3);
}

.feature-demo__portfolio-header {
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
}

.feature-demo__portfolio-brand-name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-brand-name {
  color: rgba(201, 165, 90, 0.9);
}

.feature-demo__portfolio-brand-zipsite {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateX(0) scale(1);
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-brand-zipsite {
  opacity: 0;
  transform: translateX(-10px) scale(0.9);
  position: absolute;
  pointer-events: none;
}

.feature-demo__portfolio-url {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(201, 165, 90, 1);
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 0;
  pointer-events: none;
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-url {
  opacity: 1;
  transform: translateX(0) scale(1);
  position: relative;
}

.feature-demo__portfolio-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15), rgba(201, 165, 90, 0.05));
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.8) translateX(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-badge {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.portfolio-badge__icon {
  font-size: 1rem;
}

.portfolio-badge__text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-demo__portfolio-hero {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-hero {
  height: 480px;
}

.feature-demo__portfolio-hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  z-index: 1;
}

.feature-demo__portfolio-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-hero-img {
  transform: scale(1.02);
}

.feature-demo__portfolio-gallery-preview {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-gallery-preview {
  opacity: 1;
  transform: translateY(0);
}

.gallery-preview__item {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.gallery-preview__item:hover {
  transform: scale(1.1);
}

.gallery-preview__item:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=200&q=80');
  background-size: cover;
  background-position: center;
}

.gallery-preview__item:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=200&q=80');
  background-size: cover;
  background-position: center;
}

.gallery-preview__item:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=200&q=80');
  background-size: cover;
  background-position: center;
}

.feature-demo__portfolio-content {
  padding: 2.5rem;
  position: relative;
}

.feature-demo__portfolio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-stats[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-demo__portfolio-stat {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #475569;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(250, 249, 247, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
}

.feature-demo__portfolio-stat[data-reveal-item].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-demo__portfolio-stat:hover {
  background: rgba(250, 249, 247, 0.9);
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-2px);
}

.feature-demo__portfolio-stat:nth-child(1)[data-reveal-item].is-visible {
  transition-delay: 0.1s;
}

.feature-demo__portfolio-stat:nth-child(2)[data-reveal-item].is-visible {
  transition-delay: 0.2s;
}

.feature-demo__portfolio-stat:nth-child(3)[data-reveal-item].is-visible {
  transition-delay: 0.3s;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.feature-demo__portfolio-bio {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-bio[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.feature-demo__portfolio-bio p {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  line-height: 1.85;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.01em;
}

.feature-demo__portfolio-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-features[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.feature-demo__portfolio-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #475569;
  padding: 0.75rem 1rem;
  background: rgba(250, 249, 247, 0.4);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.feature-demo__portfolio-feature[data-reveal-item].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-demo__portfolio-feature:nth-child(1)[data-reveal-item].is-visible {
  transition-delay: 0.4s;
}

.feature-demo__portfolio-feature:nth-child(2)[data-reveal-item].is-visible {
  transition-delay: 0.5s;
}

.feature-demo__portfolio-feature:nth-child(3)[data-reveal-item].is-visible {
  transition-delay: 0.6s;
}

.feature-demo__portfolio-feature:nth-child(4)[data-reveal-item].is-visible {
  transition-delay: 0.7s;
}

.feature-demo__portfolio-feature:hover {
  background: rgba(250, 249, 247, 0.8);
  border-color: rgba(201, 165, 90, 0.2);
  transform: translateX(4px);
}

.feature-demo__portfolio-feature--pro {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.1), rgba(201, 165, 90, 0.05));
  border-color: rgba(201, 165, 90, 0.2);
  color: rgba(201, 165, 90, 0.9);
}

.feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-feature--pro {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.feature-demo__portfolio-feature-icon {
  color: rgba(201, 165, 90, 1);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Pro Overlay Indicators */
.feature-demo__portfolio-pro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  border-radius: 20px;
}

.feature-demo__portfolio-frame[data-state="pro"]:hover .feature-demo__portfolio-pro-overlay {
  opacity: 1;
  pointer-events: auto;
}

.pro-overlay__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__portfolio-frame[data-state="pro"]:hover .pro-overlay__item {
  transform: translateY(0);
  opacity: 1;
}

.pro-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.pro-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.pro-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.pro-overlay__icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(201, 165, 90, 0.4));
}

.pro-overlay__text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #faf9f7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive Styles for Portfolio Feature */
@media (max-width: 768px) {
  .feature-demo--portfolio {
    padding: 2.5rem 1.5rem;
  }

  .feature-demo__portfolio-toggle {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .feature-demo__toggle-btn {
    width: 100%;
    min-width: auto;
  }

  .feature-demo__portfolio-frame {
    border-radius: 16px;
  }

  .feature-demo__portfolio-header {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-demo__portfolio-brand-name {
    font-size: 1.75rem;
  }

  .feature-demo__portfolio-hero {
    height: 300px;
  }

  .feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-hero {
    height: 320px;
  }

  .feature-demo__portfolio-content {
    padding: 1.5rem;
  }

  .feature-demo__portfolio-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-demo__portfolio-pro-overlay {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .pro-overlay__item {
    padding: 1rem;
    width: 100%;
    max-width: 200px;
  }

  .gallery-preview__item {
    width: 50px;
    height: 50px;
  }
}

/* Ripple Effect for Toggle Buttons */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 165, 90, 0.3);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Feature 4: Agency Dashboard Filters */
.feature-demo--filters {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 40px 90px -60px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(201, 165, 90, 0.08);
}

.feature-demo__filters-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
}

.feature-demo__filters-panel {
  border-right: 1px solid rgba(226, 232, 240, 0.6);
  padding-right: 2.5rem;
}

.feature-demo__filters-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.feature-demo__filters-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.feature-demo__clear-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-demo__clear-filters:hover {
  background: rgba(201, 165, 90, 0.06);
  border-color: rgba(201, 165, 90, 0.3);
  color: rgba(201, 165, 90, 1);
}

.feature-demo__clear-filters svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.feature-demo__filter-group {
  margin-bottom: 2rem;
}

.feature-demo__filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-demo__filter-label svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  opacity: 0.7;
  flex-shrink: 0;
}

.feature-demo__filter-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #0f172a;
  background: #faf9f7;
  transition: all 0.2s ease;
}

.feature-demo__filter-input:hover {
  border-color: rgba(201, 165, 90, 0.2);
}

.feature-demo__filter-input:focus {
  outline: none;
  border-color: rgba(201, 165, 90, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.08);
}

.feature-demo__filter-input--search {
  padding-left: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 16px 16px;
}

.feature-demo__filter-input--search:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A55A' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
}

.feature-demo__filter-slider {
  width: 100%;
  height: 6px;
  padding: 0;
  background: rgba(226, 232, 240, 0.6);
  border: none;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s ease;
}

.feature-demo__filter-slider:hover {
  background: rgba(201, 165, 90, 0.2);
}

.feature-demo__slider-wrapper {
  position: relative;
  padding: 0.5rem 0;
}

.feature-demo__filter-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgba(201, 165, 90, 1);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(201, 165, 90, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-demo__filter-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(201, 165, 90, 0.4);
}

.feature-demo__filter-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgba(201, 165, 90, 1);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(201, 165, 90, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-demo__filter-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(201, 165, 90, 0.4);
}

.feature-demo__filter-value {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

.feature-demo__filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.feature-demo__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #0f172a;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.feature-demo__checkbox-label:hover {
  background: rgba(201, 165, 90, 0.04);
}

.feature-demo__filter-checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: rgba(201, 165, 90, 1);
  cursor: pointer;
  flex-shrink: 0;
}

.feature-demo__filters-results {
  min-height: 400px;
}

.feature-demo__results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-demo__results-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-demo__results-count {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.feature-demo__results-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.feature-demo__results-header-right {
  display: flex;
  align-items: center;
}

.feature-demo__sort-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-demo__sort-select {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #0f172a;
  background: #faf9f7;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-demo__sort-select:hover {
  border-color: rgba(201, 165, 90, 0.3);
}

.feature-demo__sort-select:focus {
  outline: none;
  border-color: rgba(201, 165, 90, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.08);
}

.feature-demo__results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
  animation: fadeIn 0.4s ease-out;
}

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

.feature-demo__talent-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.feature-demo__talent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0) 0%, rgba(201, 165, 90, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.feature-demo__talent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -16px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(201, 165, 90, 0.1);
  border-color: rgba(201, 165, 90, 0.2);
}

.feature-demo__talent-card:hover::before {
  opacity: 1;
}

.feature-demo__talent-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.feature-demo__talent-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-demo__talent-card:hover .feature-demo__talent-card-image {
  transform: scale(1.05);
}

.feature-demo__talent-card-info {
  padding: 1.25rem;
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.feature-demo__talent-card-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.feature-demo__talent-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.feature-demo__talent-card-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.feature-demo__talent-card-location svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.feature-demo__talent-card-stats {
  display: flex;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.feature-demo__talent-card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}

.feature-demo__talent-card-stat-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-demo__talent-card-stat-value {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.feature-demo__talent-card-specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.feature-demo__talent-card-specialization {
  padding: 0.25rem 0.625rem;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.15);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-demo__results-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: #64748b;
  animation: fadeIn 0.4s ease-out;
}

.feature-demo__results-empty-icon {
  margin: 0 auto 1.5rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.06);
  border-radius: 50%;
  color: rgba(201, 165, 90, 1);
}

.feature-demo__results-empty-icon svg {
  width: 32px;
  height: 32px;
}

.feature-demo__results-empty-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.feature-demo__results-empty-hint {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
  opacity: 0.8;
}

/* Features CTA */
.features-cta {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.features-cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.features-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #faf9f7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.features-cta__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.features-cta__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.features-cta__button {
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-demo__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-demo__split::before,
  .feature-demo__split::after {
    display: none;
  }

  .feature-demo__filters-layout {
    grid-template-columns: 1fr;
  }

  .feature-demo__filters-panel {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding-right: 0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .feature-demo__results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-demo__results-header-right {
    width: 100%;
  }

  .feature-demo__sort-label {
    width: 100%;
    justify-content: space-between;
  }

  .feature-demo__sort-select {
    flex: 1;
    max-width: 200px;
  }

  .feature-demo__results-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
  }

  .feature-demo__talent-card-image-wrapper {
    height: 240px;
  }

  .feature-demo__themes-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .features-header {
    padding: 4rem 1.5rem 3rem;
  }

  .feature-spread {
    padding: 4rem 1.5rem;
  }

  .feature-demo--transformation,
  .feature-demo--portfolio,
  .feature-demo--filters {
    padding: 2rem 1.5rem;
  }

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

  .features-cta__actions {
    flex-direction: column;
  }

  .features-cta__button {
    width: 100%;
  }
}

/* ========================================
   PRICING PAGE - Editorial Style
   ======================================== */

/* Pricing Header - Compact Editorial Style */
.pricing-header {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.pricing-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.pricing-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.pricing-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.pricing-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.pricing-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.pricing-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.pricing-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.pricing-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Pricing Spread - Split-Screen Editorial Layout */
.pricing-spread {
  position: relative;
  padding: 6rem 2rem;
  background: #faf9f7;
  overflow: hidden;
}

.pricing-spread__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pricing-toggle__label {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.pricing-toggle__label--active {
  color: #0f172a;
  font-weight: 600;
}

.pricing-toggle__switch {
  position: relative;
  width: 56px;
  height: 32px;
  background: #e2e8f0;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
  outline: none;
}

.pricing-toggle__switch:hover {
  background: #cbd5e1;
}

.pricing-toggle__switch--active {
  background: rgba(201, 165, 90, 1);
}

.pricing-toggle__switch--active:hover {
  background: rgba(201, 165, 90, 0.9);
}

.pricing-toggle__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-toggle__switch--active .pricing-toggle__slider {
  transform: translateX(24px);
}

.pricing-toggle__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing-card__billing-note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.pricing-card__amount,
.pricing-card__period {
  transition: opacity 0.15s ease;
}

.pricing-spread__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Pricing Card - Base Styles */
.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Pro Card - Primary Focus */
.pricing-card--pro {
  border: 2px solid rgba(201, 165, 90, 0.2);
  box-shadow:
    0 20px 60px -40px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(201, 165, 90, 0.1);
}

.pricing-card--pro:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 80px -40px rgba(15, 23, 42, 0.3),
    0 0 0 1px rgba(201, 165, 90, 0.2);
}

/* Free Card - Secondary */
.pricing-card--free {
  border: 1px solid #e2e8f0;
  opacity: 0.9;
}

.pricing-card--free:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px -40px rgba(15, 23, 42, 0.25);
}

.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.pricing-card__badge--pro {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15), rgba(201, 165, 90, 0.1));
  color: rgba(201, 165, 90, 1);
  border: 1.5px solid rgba(201, 165, 90, 0.4);
}

.pricing-card__badge--free {
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.pricing-card__header {
  margin-bottom: 2.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.pricing-card__currency {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  line-height: 1;
}

.pricing-card__amount {
  font-size: 4.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card__amount--free {
  font-size: 3.5rem;
  color: #64748b;
}

.pricing-card__period {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 0.25rem;
}

.pricing-card__tagline {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.pricing-card__tagline--free {
  font-size: 1rem;
  color: #64748b;
}

/* Preview Image */
.pricing-card__preview {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.pricing-card__preview-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #e2e8f0;
}

.pricing-card__preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing-card__preview-image--free {
  height: 200px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pricing-card__preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pricing-card__preview-placeholder-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.pricing-card__preview-placeholder-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card__preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  padding: 1.5rem;
}

.pricing-card__preview-overlay--free {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.2), transparent);
}

.pricing-card__preview-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #faf9f7;
}

.pricing-card__preview-label--free {
  color: #0f172a;
}

/* Features List */
.pricing-card__features {
  margin-bottom: 2.5rem;
}

.pricing-card__features--free {
  margin-bottom: 2rem;
}

.pricing-card__feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.pricing-card__feature-item--free {
  margin-bottom: 1.25rem;
}

.pricing-card__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.15);
  color: rgba(201, 165, 90, 1);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 2px;
}

.pricing-card--free .pricing-card__feature-icon {
  background: rgba(15, 23, 42, 0.08);
  color: #64748b;
}

.pricing-card__feature-content {
  flex: 1;
}

.pricing-card__feature-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.pricing-card__feature-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* CTA Button */
.pricing-card__cta {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing-card__cta--pro {
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.9));
  color: #0f172a;
  border: none;
  box-shadow: 0 8px 24px -8px rgba(201, 165, 90, 0.4);
}

.pricing-card__cta--pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(201, 165, 90, 0.5);
}

.pricing-card__cta--free {
  background: #faf9f7;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.pricing-card__cta--free:hover {
  border-color: rgba(201, 165, 90, 0.3);
  background: #ffffff;
}

.pricing-card__note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin: 0;
  font-style: italic;
}

.pricing-card__note--free {
  color: #94a3b8;
}

/* Visual Comparison Section */
.pricing-comparison {
  padding: 6rem 2rem;
  background: #ffffff;
}

.pricing-comparison__container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-comparison__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-comparison__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.pricing-comparison__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-comparison__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.comparison-item {
  padding: 2rem;
  background: #faf9f7;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -20px rgba(15, 23, 42, 0.2);
}

.comparison-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.comparison-item__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.comparison-item__free,
.comparison-item__pro {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.comparison-item__free {
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.comparison-item__pro {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  font-weight: 600;
}

/* Pricing CTA */
.pricing-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  text-align: center;
}

.pricing-cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #faf9f7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.pricing-cta__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.pricing-cta__button {
  min-width: 200px;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-spread__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pricing-card--pro {
    order: 1;
  }

  .pricing-card--free {
    order: 2;
  }
}

@media (max-width: 768px) {
  .pricing-header {
    padding: 4rem 1.5rem 3rem;
  }

  .pricing-spread {
    padding: 4rem 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card__amount {
    font-size: 3.5rem;
  }

  .pricing-card__amount--free {
    font-size: 2.5rem;
  }

  .pricing-toggle {
    margin-bottom: 3rem;
  }

  .pricing-toggle__label {
    font-size: 0.9375rem;
  }

  .pricing-comparison {
    padding: 4rem 1.5rem;
  }

  .pricing-comparison__grid {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    padding: 4rem 1.5rem;
  }
}

/* ========================================
   PARTNERS PAGE - Editorial Style
   ======================================== */

/* Partners Header - Matching features/pricing style */
.partners-header {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.partners-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.partners-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.partners-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.partners-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.partners-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.partners-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.partners-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.partners-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Partners Benefits Section */
.partners-benefits {
  position: relative;
  padding: 6rem 2rem;
  background: #faf9f7;
  overflow: hidden;
}

.partners-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.partners-benefits__card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.partners-benefits__card:hover {
  border-color: rgba(201, 165, 90, 0.4);
  box-shadow: 0 12px 40px -20px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.partners-benefits__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 12px;
  color: rgba(201, 165, 90, 1);
  transition: all 0.3s ease;
}

.partners-benefits__card:hover .partners-benefits__icon {
  background: rgba(201, 165, 90, 0.15);
  transform: scale(1.05);
}

.partners-benefits__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: 0.01em;
}

.partners-benefits__description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Partners Form Section */
.partners-form {
  position: relative;
  padding: 6rem 2rem;
  background: #faf9f7;
  overflow: hidden;
}

.partners-form__container {
  max-width: 600px;
  margin: 0 auto;
}

.partners-form__header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-form__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.partners-form__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.partners-form__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.partners-form__card .form-field {
  margin-bottom: 1.75rem;
}

.partners-form__card .form-field label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.02em;
}

.partners-form__card .form-field input,
.partners-form__card .form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.2s ease;
}

.partners-form__card .form-field input:focus,
.partners-form__card .form-field select:focus {
  outline: none;
  border-color: rgba(201, 165, 90, 0.6);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.1);
}

.partners-form__card .form-field.has-error input,
.partners-form__card .form-field.has-error select {
  border-color: #ef4444;
}

.partners-form__card .form-field.has-error input:focus,
.partners-form__card .form-field.has-error select:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.partners-form__card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.partners-form__card .form-field__help {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.partners-form__card .button-primary {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.partners-form__switch {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #475569;
}

.partners-form__switch a {
  color: rgba(201, 165, 90, 1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.partners-form__switch a:hover {
  color: rgba(201, 165, 90, 0.8);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partners-benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .partners-form__card .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partners-header {
    padding: 4rem 1.5rem 3rem;
  }

  .partners-benefits {
    padding: 4rem 1.5rem;
  }

  .partners-benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partners-benefits__card {
    padding: 2rem 1.5rem;
  }

  .partners-form {
    padding: 4rem 1.5rem;
  }

  .partners-form__card {
    padding: 2rem 1.5rem;
  }

  .partners-form__title {
    font-size: 1.75rem;
  }
}

/* ========================================
   PARTNERS LISTING PAGE - Editorial Style
   ======================================== */

/* Partners Listing Header - Matching features/pricing style */
.partners-listing-header {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.partners-listing-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.partners-listing-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.partners-listing-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.partners-listing-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.partners-listing-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.partners-listing-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.partners-listing-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.partners-listing-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Partners Listing Section */
.partners-listing-section {
  position: relative;
  padding: 6rem 2rem;
  background: #faf9f7;
  overflow: hidden;
}

.partners-listing-section--coming-soon {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.partners-listing-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-listing-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-listing-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.partners-listing-section__subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partners Listing Grid */
.partners-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

/* Partners Listing Card */
.partners-listing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.partners-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -20px rgba(15, 23, 42, 0.15);
  border-color: rgba(201, 165, 90, 0.3);
}

.partners-listing-card--coming-soon {
  background: #f8fafc;
  opacity: 0.95;
}

.partners-listing-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.partners-listing-card__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.5rem;
  flex-shrink: 0;
}

.partners-listing-card__logo-placeholder {
  width: 72px;
  height: 72px;
  background: rgba(201, 165, 90, 0.15);
  color: rgba(201, 165, 90, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.partners-listing-card__logo-placeholder--muted {
  background: #e2e8f0;
  color: #94a3b8;
  border-color: #cbd5e1;
}

.partners-listing-card__info {
  flex: 1;
  min-width: 0;
}

.partners-listing-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.partners-listing-card__location {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.partners-listing-card__location svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.partners-listing-card__body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.partners-listing-card__description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partners-listing-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.partners-listing-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.partners-listing-tag--board {
  background: rgba(15, 23, 42, 0.05);
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.partners-listing-tag--status {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.partners-listing-card__footer {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.partners-listing-card__footer .button {
  flex: 1;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
}

.partners-listing-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  letter-spacing: 0.02em;
}

.partners-listing-badge--coming-soon {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.2);
}

/* Empty State */
.partners-listing-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.partners-listing-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 50%;
  color: rgba(201, 165, 90, 1);
}

.partners-listing-empty__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem 0;
}

.partners-listing-empty__description {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partners-listing-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .partners-listing-header {
    padding: 4rem 1.5rem 3rem;
  }

  .partners-listing-section {
    padding: 4rem 1.5rem;
  }

  .partners-listing-section__header {
    margin-bottom: 3rem;
  }

  .partners-listing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partners-listing-card {
    padding: 1.5rem;
  }

  .partners-listing-card__footer {
    flex-direction: column;
  }

  .partners-listing-card__footer .button {
    width: 100%;
  }
}

/* ========================================
   DEMO PAGE - Interactive Showcase
   ======================================== */

/* Demo Header - Compact Editorial Style */
.demo-header {
  position: relative;
  padding: 8rem 2rem 4rem;
  padding-top: calc(8rem + var(--header-height, 80px) + 2rem);
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.demo-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.demo-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.demo-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.demo-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.demo-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.demo-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.demo-header__pricing {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.75rem;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
}

.demo-header__pricing-amount {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(201, 165, 90, 1);
  letter-spacing: -0.02em;
}

.demo-header__pricing-period {
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 0.15em;
}

.demo-header__pricing-trial {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 165, 90, 0.25);
  white-space: nowrap;
}

.demo-header__pricing-note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

.demo-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.demo-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Demo Showcase - Split-Screen Layout */
.demo-showcase {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  overflow: hidden;
}

/* Pricing Section */
.demo-pricing-section {
  position: relative;
  padding: 4rem 2rem;
  background: #ffffff;
}

.demo-pricing-section__container {
  max-width: 600px;
  margin: 0 auto;
}

.demo-pricing-section__card {
  background: #faf9f7;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.demo-pricing-section__header {
  margin-bottom: 2rem;
}

.demo-pricing-section__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.demo-pricing-section__price {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.demo-pricing-section__currency {
  font-size: 0.6em;
  vertical-align: super;
  color: rgba(201, 165, 90, 1);
}

.demo-pricing-section__period {
  font-size: 0.35em;
  font-weight: 400;
  color: #64748b;
  margin-left: 0.25em;
}

.demo-pricing-section__trial {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.12);
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 165, 90, 0.25);
  margin: 1rem 0;
}

.demo-pricing-section__tagline {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.demo-pricing-section__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.demo-pricing-section__feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #0f172a;
}

.demo-pricing-section__feature-item svg {
  flex-shrink: 0;
  color: rgba(201, 165, 90, 1);
  stroke-width: 3;
}

.demo-pricing-section__cta {
  width: 100%;
  display: block;
  margin: 2rem 0 1rem;
  text-align: center;
}

.demo-pricing-section__note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  font-style: italic;
}

.demo-showcase__container {
  max-width: 1600px;
  margin: 0 auto;
}

.demo-showcase__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Portfolio Preview - Left Column */
.demo-portfolio-preview {
  position: relative;
}

.demo-portfolio-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}

.demo-portfolio-preview__title-group {
  flex: 1;
}

.demo-portfolio-preview__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.demo-portfolio-preview__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.demo-portfolio-preview__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.demo-portfolio-preview__try-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.75rem;
  font-weight: 400;
  font-style: italic;
}

.demo-portfolio-preview__controls {
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.demo-portfolio-preview__control-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-portfolio-preview__control-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.demo-portfolio-preview__control-btn.is-active {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
}

/* Demo Portfolio Preview - Editorial Style Frame */
.demo-portfolio-preview__frame {
  position: relative;
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(201, 165, 90, 0.15);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(201, 165, 90, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid rgba(201, 165, 90, 0.3);
}

.demo-portfolio-preview__frame::before {
  display: none;
  /* Remove animated gradient border */
}

.demo-portfolio-preview__frame:hover {
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(201, 165, 90, 0.2);
  transform: translateY(-2px);
  border-color: rgba(201, 165, 90, 0.25);
}

/* Editorial Style Device Frame */
.demo-portfolio-preview__iframe-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #faf9f7;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  animation: none;
}

.demo-portfolio-preview__iframe-wrapper::before,
.demo-portfolio-preview__iframe-wrapper::after {
  display: none;
  /* Remove dark gradient overlays */
}

.demo-portfolio-preview__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  transform-origin: top left;
  transition: opacity 0.5s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.98);
  position: relative;
  z-index: 0;
}

.demo-portfolio-preview__iframe.loaded {
  opacity: 1;
  transform: scale(1);
}

.demo-portfolio-preview__frame[data-view="tablet"] .demo-portfolio-preview__iframe-wrapper {
  max-width: 768px;
  margin: 0 auto;
  height: 1024px;
  border-radius: 0;
}

.demo-portfolio-preview__frame[data-view="mobile"] .demo-portfolio-preview__iframe-wrapper {
  max-width: 375px;
  margin: 0 auto;
  height: 812px;
  border-radius: 0;
  box-shadow: none;
}

/* Loading State - Editorial Style */
.demo-portfolio-preview__iframe-wrapper.loading {
  background: linear-gradient(90deg,
      #faf9f7 0%,
      #ffffff 50%,
      #faf9f7 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.demo-portfolio-preview__iframe-wrapper.loading::after {
  content: 'Loading portfolio...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(15, 23, 42, 0.4);
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.6;
  }
}

/* Enhanced Overlay - Editorial Style */
.demo-portfolio-preview__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
}

.demo-portfolio-preview__frame:hover .demo-portfolio-preview__overlay {
  opacity: 1;
  transform: translateY(0);
}

.demo-portfolio-preview__url-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(201, 165, 90, 0.15);
  padding: 0.875rem 1.25rem;
  border-radius: 0;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(201, 165, 90, 0.1);
  transition: all 0.3s ease;
}

.demo-portfolio-preview__url-display:hover {
  background: #ffffff;
  border-color: rgba(201, 165, 90, 0.3);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(201, 165, 90, 0.2);
  transform: translateY(-1px);
}

.demo-portfolio-preview__url-label {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.demo-portfolio-preview__url {
  flex: 1;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.85);
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 400;
}

.demo-portfolio-preview__copy-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 0;
  color: rgba(201, 165, 90, 1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.demo-portfolio-preview__copy-btn:hover {
  background: rgba(201, 165, 90, 0.12);
  border-color: rgba(201, 165, 90, 0.35);
  transform: scale(1.05);
}

.demo-portfolio-preview__actions {
  margin-top: 1.5rem;
}

.demo-portfolio-preview__action-btn {
  width: 100%;
  text-align: center;
}

/* Remove techy visual elements for editorial style */
.demo-portfolio-preview__frame::after {
  display: none;
}

/* Smooth Transitions for View Changes */
.demo-portfolio-preview__frame[data-view] {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Responsive Styles for Preview */
@media (max-width: 768px) {
  .demo-header {
    padding: 6rem 1.5rem 3rem;
    padding-top: calc(6rem + var(--header-height, 80px) + 1.5rem);
  }

  .demo-header__pricing {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 1.25rem;
  }

  .demo-header__pricing-trial {
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
  }

  .demo-showcase {
    padding: 4rem 1.5rem 3rem;
  }

  .demo-showcase__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .demo-why-pro {
    position: static;
    top: auto;
  }

  .demo-portfolio-preview__frame {
    border-radius: 20px;
  }

  .demo-portfolio-preview__iframe-wrapper {
    border-radius: 12px;
    margin: 6px;
    height: 500px;
  }

  .demo-portfolio-preview__iframe-wrapper[data-view="tablet"] {
    height: 600px;
  }

  .demo-portfolio-preview__iframe-wrapper[data-view="mobile"] {
    height: 500px;
  }

  .demo-pricing-section {
    padding: 3rem 1.5rem;
  }

  .demo-pricing-section__card {
    padding: 2rem 1.5rem;
  }

  .demo-comparison {
    padding: 4rem 1.5rem;
  }

  .demo-comparison__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .demo-customization {
    padding: 4rem 1.5rem;
  }

  .demo-customization__grid {
    grid-template-columns: 1fr;
  }

  .demo-pdf-themes-section {
    padding: 4rem 1.5rem;
  }

  .demo-pdf-themes-section__gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .demo-portfolio-preview__frame::before,
  .demo-portfolio-preview__frame::after,
  .demo-portfolio-preview__iframe-wrapper::before {
    animation: none !important;
  }

  .demo-portfolio-preview__frame,
  .demo-portfolio-preview__iframe-wrapper {
    transition: none !important;
  }
}

/* Why Pro? - Right Column */
.demo-why-pro {
  position: sticky;
  top: calc(var(--header-height, 80px) + 2rem);
  align-self: start;
}

.demo-why-pro__header {
  margin-bottom: 2rem;
}

.demo-why-pro__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.demo-why-pro__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.demo-why-pro__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.demo-why-pro__feature {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.demo-why-pro__feature:hover {
  border-color: rgba(201, 165, 90, 0.3);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.demo-why-pro__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 10px;
  color: rgba(201, 165, 90, 1);
}

.demo-why-pro__feature-icon svg {
  width: 24px;
  height: 24px;
}

.demo-why-pro__feature-content {
  flex: 1;
}

.demo-why-pro__feature-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.demo-why-pro__feature-description {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.demo-why-pro__feature-description strong {
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
}

.demo-why-pro__cta {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.demo-why-pro__link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(201, 165, 90, 1);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-why-pro__link:hover {
  color: rgba(201, 165, 90, 0.8);
  text-decoration: underline;
}

/* PDF Themes Section (Simplified, at bottom) */
.demo-pdf-themes-section {
  position: relative;
  padding: 6rem 2rem;
  background: #faf9f7;
}

.demo-pdf-themes-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.demo-pdf-themes-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.demo-pdf-themes-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.demo-pdf-themes-section__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.demo-pdf-themes-section__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* PDF theme cards inherit from existing .demo-pdf-theme-card styles */

.demo-pdf-themes-section__preview {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.demo-pdf-themes-section__preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.demo-pdf-themes-section__preview-title-group {
  flex: 1;
}

.demo-pdf-themes-section__preview-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.demo-pdf-themes-section__preview-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.demo-pdf-themes-section__preview-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-pdf-themes-section__preview-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.demo-pdf-themes-section__preview-content {
  min-height: 600px;
}

.demo-pdf-themes-section__preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: #94a3b8;
}

.demo-pdf-themes-section__preview-placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.demo-pdf-themes-section__preview-placeholder-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
}

.demo-pdf-themes-section__preview-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.demo-pdf-themes-section__download-btn {
  flex: 1;
  max-width: 300px;
}

.demo-pdf-themes-section__preview-badge {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}

.demo-pdf-themes-section__preview-badge--pro {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.demo-pdf-themes-section__preview-badge--free {
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

/* PDF Themes - Right Column (kept for compatibility) */
.demo-pdf-themes {
  position: relative;
}

.demo-pdf-themes__header {
  margin-bottom: 2rem;
}

.demo-pdf-themes__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.demo-pdf-themes__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 1rem 0;
}

.demo-pdf-themes__tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.demo-pdf-themes__tab {
  padding: 0.5rem 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-pdf-themes__tab:hover {
  border-color: rgba(201, 165, 90, 0.4);
  color: #0f172a;
}

.demo-pdf-themes__tab--active {
  border-color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
}

.demo-pdf-themes__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.demo-pdf-theme-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.demo-pdf-theme-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-pdf-theme-card:hover {
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.2);
}

.demo-pdf-theme-card.is-selected {
  border-color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.1);
}

.demo-pdf-theme-card__preview {
  width: 100%;
  min-height: 140px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-pdf-theme-card__preview-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 140px;
  text-align: center;
}

.demo-pdf-theme-card__preview-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.demo-pdf-theme-card__preview-stats {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.demo-pdf-theme-card__preview-colors {
  display: flex;
  gap: 6px;
  margin-top: 0.5rem;
}

.demo-pdf-theme-card__swatch {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.demo-pdf-theme-card__pro-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(201, 165, 90, 0.9);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.demo-pdf-theme-card--free {
  border-color: #e2e8f0;
}

.demo-pdf-theme-card--pro {
  border-color: rgba(201, 165, 90, 0.2);
}

.demo-pdf-theme-card--pro:hover {
  border-color: rgba(201, 165, 90, 0.5);
}

.demo-pdf-theme-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-pdf-theme-card__name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.demo-pdf-theme-card__personality {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
  font-style: italic;
}

.demo-pdf-theme-card__features {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.demo-pdf-theme-card__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-top: 0.25rem;
}

.demo-pdf-theme-card__badge--free {
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
}

.demo-pdf-theme-card__badge--pro {
  background: rgba(201, 165, 90, 0.15);
  color: rgba(201, 165, 90, 1);
}

.demo-pdf-theme-card__lock {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  opacity: 0.6;
}

.demo-pdf-themes__preview {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.demo-pdf-themes__preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  gap: 1rem;
}

.demo-pdf-themes__preview-title-group {
  flex: 1;
}

.demo-pdf-themes__preview-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.demo-pdf-themes__preview-subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.demo-pdf-themes__preview-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.demo-pdf-themes__preview-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.demo-pdf-themes__preview-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.demo-pdf-themes__preview-placeholder {
  text-align: center;
}

.demo-pdf-themes__preview-placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.demo-pdf-themes__preview-placeholder-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
}

.demo-pdf-themes__preview-iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.demo-pdf-themes__preview-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-pdf-themes__download-btn {
  flex: 1;
  text-align: center;
}

.demo-pdf-themes__preview-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
}

.demo-pdf-themes__preview-badge--free {
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
}

.demo-pdf-themes__preview-badge--pro {
  background: rgba(201, 165, 90, 0.15);
  color: rgba(201, 165, 90, 1);
}

/* Demo Comparison */
.demo-comparison {
  padding: 6rem 2rem;
  background: #ffffff;
}

.demo-comparison__container {
  max-width: 1200px;
  margin: 0 auto;
}

.demo-comparison__header {
  text-align: center;
  margin-bottom: 4rem;
}

.demo-comparison__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.demo-comparison__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.demo-comparison__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.comparison-card {
  padding: 2rem;
  background: #faf9f7;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -20px rgba(15, 23, 42, 0.2);
}

.comparison-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.comparison-card__icon svg {
  width: 32px;
  height: 32px;
}

.comparison-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.comparison-card__free,
.comparison-card__pro {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.comparison-card__free small,
.comparison-card__pro small {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  font-weight: 400;
}

.comparison-card__free {
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.comparison-card__pro {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  font-weight: 600;
}

/* PDF Customization Showcase */
.demo-customization {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #faf9f7 0%, rgba(250, 249, 247, 0.98) 100%);
  border-top: 1px solid rgba(201, 165, 90, 0.1);
}

.demo-customization__container {
  max-width: 1200px;
  margin: 0 auto;
}

.demo-customization__header {
  text-align: center;
  margin-bottom: 4rem;
}

.demo-customization__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.demo-customization__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.demo-customization__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.demo-customization__feature {
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(201, 165, 90, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.demo-customization__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -20px rgba(15, 23, 42, 0.2);
  border-color: rgba(201, 165, 90, 0.3);
}

.demo-customization__feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 16px;
  color: rgba(201, 165, 90, 1);
  flex-shrink: 0;
}

.demo-customization__feature-icon svg {
  width: 32px;
  height: 32px;
}

.demo-customization__feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.demo-customization__feature-description {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.demo-customization__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

/* Demo CTA */
.demo-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  text-align: center;
}

.demo-cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.demo-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #faf9f7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.demo-cta__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.demo-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-cta__button {
  min-width: 200px;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .demo-showcase__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .demo-portfolio-preview__iframe-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .demo-header {
    padding: 4rem 1.5rem 3rem;
  }

  .demo-showcase {
    padding: 4rem 1.5rem;
  }

  .demo-portfolio-preview__header {
    flex-direction: column;
    gap: 1rem;
  }

  .demo-portfolio-preview__iframe-wrapper {
    height: 400px;
  }

  .demo-pdf-themes__tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .demo-pdf-themes__tab {
    flex: 1;
    min-width: calc(33.333% - 0.5rem);
    text-align: center;
  }

  .demo-pdf-themes__gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .demo-pdf-themes__preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .demo-pdf-themes__preview-title-group {
    width: 100%;
  }

  .demo-pdf-themes__preview-close {
    align-self: flex-end;
  }

  .demo-pdf-themes__preview-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .demo-pdf-themes__download-btn {
    width: 100%;
  }

  .demo-pdf-themes__preview-badge {
    width: 100%;
    text-align: center;
  }

  .demo-comparison {
    padding: 4rem 1.5rem;
  }

  .demo-comparison__grid {
    grid-template-columns: 1fr;
  }

  .demo-cta {
    padding: 4rem 1.5rem;
  }

  .demo-cta__actions {
    flex-direction: column;
  }

  .demo-cta__button {
    width: 100%;
  }

  .demo-customization {
    padding: 4rem 1.5rem;
  }

  .demo-customization__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .demo-customization__cta {
    flex-direction: column;
    gap: 1rem;
  }

  .demo-customization__cta .button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .demo-header__container {
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .demo-header__headline {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
  }

  .demo-header__pricing {
    align-items: flex-start;
    text-align: left;
  }

  .demo-showcase {
    padding: 3.5rem 1.25rem;
  }

  .demo-portfolio-preview__iframe-wrapper {
    height: 340px;
  }

  .demo-portfolio-preview__controls {
    width: 100%;
    justify-content: space-between;
  }

  .demo-portfolio-preview__actions a {
    width: 100%;
    text-align: center;
  }

  .demo-why-pro__features {
    gap: 0.75rem;
  }

  .demo-why-pro__feature {
    padding: 1rem;
  }
}

/* ========================================
   PRESS PAGE - Editorial Style
   ======================================== */

/* Press Header - Matching Editorial Pattern */
.press-header {
  position: relative;
  padding: 8rem 2rem 5rem;
  padding-top: calc(8rem + var(--header-height, 80px));
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
}

.press-header__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.press-header__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.press-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.press-header__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.press-header__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.press-header__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.press-header__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.press-header__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Press Spread - Base Section Styles */
.press-spread {
  position: relative;
  padding: 6rem 2rem;
  background: #faf9f7;
  overflow: hidden;
}

.press-spread__container {
  max-width: 1400px;
  margin: 0 auto;
}

.press-spread__header {
  text-align: center;
  margin-bottom: 4rem;
}

.press-spread__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.press-spread__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Press News Grid */
.press-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.press-news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.press-news-card:hover {
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.15);
}

.press-news-card__date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
}

.press-news-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.01em;
}

.press-news-card__excerpt {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.press-news-card__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.3s ease;
}

.press-news-card__link:hover {
  gap: 0.5rem;
  color: rgba(201, 165, 90, 0.8);
}

/* Media Kit Grid */
.media-kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.media-kit-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.media-kit-card:hover {
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.15);
}

.media-kit-card__icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media-kit-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.01em;
}

.media-kit-card__description {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.media-kit-card__button {
  margin-top: 0.5rem;
}

/* Company Information Section */
.press-company-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.press-company__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.press-company__description {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.press-company__stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.press-company__stat {
  text-align: center;
}

.press-company__stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.press-company__stat-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact Section */
.press-contact-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.press-contact__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.press-contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.press-contact__item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.01em;
}

.press-contact__item-value {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: rgba(201, 165, 90, 1);
  margin: 0;
}

.press-contact__item-value a {
  color: rgba(201, 165, 90, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.press-contact__item-value a:hover {
  color: rgba(201, 165, 90, 0.8);
  text-decoration: underline;
}

.press-contact__item-description {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Contact Form */
.press-contact__form {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.press-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.press-contact__label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press-contact__input,
.press-contact__textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #faf9f7;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.press-contact__input:focus,
.press-contact__textarea:focus {
  border-color: rgba(201, 165, 90, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.1);
}

.press-contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.press-contact__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Responsive Styles for Press Page */
@media (max-width: 1024px) {
  .press-company-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .press-contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .press-header {
    padding: 6rem 1.5rem 4rem;
    padding-top: calc(6rem + var(--header-height, 80px));
  }

  .press-spread {
    padding: 4rem 1.5rem;
  }

  .press-spread__header {
    margin-bottom: 3rem;
  }

  .press-news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .media-kit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .press-company-content {
    gap: 2rem;
  }

  .press-company__stats {
    padding: 1.5rem;
  }

  .press-contact-section {
    gap: 2rem;
  }

  .press-contact__form {
    padding: 2rem;
  }
}

/* ========================================
   CURATION STUDIO - Live Transformation Interface
   ======================================== */

.curation-studio {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 2rem 0;
  overflow: hidden;
}

.curation-studio__container {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  gap: 2rem;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: calc(100vh - 8rem);
  align-items: stretch;
}

/* Panel Base Styles */
.curation-studio__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.curation-studio__panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.curation-studio__panel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #faf9f7;
  margin: 0;
  letter-spacing: 0.05em;
}

.curation-studio__panel-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.curation-studio__panel-badge--polished {
  background: rgba(201, 165, 90, 0.2);
  color: rgba(201, 165, 90, 1);
  border-color: rgba(201, 165, 90, 0.4);
}

/* Raw Panel - Dark, Messy Aesthetic */
.curation-studio__panel--raw {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.raw-data {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.raw-data__section {
  position: relative;
}

.raw-data__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.raw-data__content {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.raw-data__content--messy {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  transform: rotate(-0.5deg);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
}

.raw-data__content--messy::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%);
  background-size: 8px 8px;
  border-radius: 4px;
  z-index: -1;
}

.raw-stat-item {
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transform: rotate(0.3deg);
  opacity: 0.8;
}

.raw-data__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.raw-data__image-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-1deg);
  opacity: 0.7;
}

.raw-data__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(0.9) brightness(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.raw-data__image--uncurated {
  filter: grayscale(50%) contrast(0.85) brightness(0.75) saturate(0.7);
}

/* AI Center Panel */
.curation-studio__panel--ai {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: visible;
}

.curation-studio__panel--ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 165, 90, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(201, 165, 90, 0.05) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.ai-processor {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ai-processor__visualization {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
}

.ai-processor__nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ai-processor__node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(201, 165, 90, 0.6);
  box-shadow:
    0 0 8px rgba(201, 165, 90, 0.4),
    0 0 16px rgba(201, 165, 90, 0.2);
  animation: aiNodePulse 2s ease-in-out infinite;
}

.ai-processor__node--1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.ai-processor__node--2 {
  top: 20%;
  right: 20%;
  animation-delay: 0.3s;
}

.ai-processor__node--3 {
  top: 50%;
  left: 10%;
  animation-delay: 0.6s;
}

.ai-processor__node--4 {
  top: 50%;
  right: 10%;
  animation-delay: 0.9s;
}

.ai-processor__node--5 {
  bottom: 20%;
  left: 30%;
  animation-delay: 1.2s;
}

.ai-processor__node--6 {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.5s;
}

@keyframes aiNodePulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.ai-processor__connections {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ai-processor__connection-svg {
  width: 100%;
  height: 100%;
  stroke: rgba(201, 165, 90, 0.3);
  stroke-width: 1.5;
  fill: none;
  animation: aiConnectionFlow 3s ease-in-out infinite;
}

.ai-processor__connection-path {
  stroke-dasharray: 5, 5;
  animation: aiConnectionDash 2s linear infinite;
}

@keyframes aiConnectionFlow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes aiConnectionDash {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 20;
  }
}

.ai-processor__status {
  text-align: center;
  margin-top: 1rem;
}

.ai-processor__status-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  transition: all 0.3s ease;
}

/* Slider Control */
.curation-studio__slider {
  width: 100%;
  margin: 2rem 0;
  z-index: 1;
  position: relative;
}

.curation-studio__slider-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
}

.curation-studio__slider-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(201, 165, 90, 1);
  border-radius: 50%;
  cursor: grab;
  box-shadow:
    0 0 12px rgba(201, 165, 90, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  z-index: 2;
}

.curation-studio__slider-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.1);
}

.curation-studio__slider-handle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #0a0a0a;
  border-radius: 50%;
}

.curation-studio__slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* Control Buttons */
.curation-studio__controls {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  z-index: 1;
  position: relative;
}

.curation-studio__control-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.curation-studio__control-btn:hover {
  background: rgba(201, 165, 90, 0.2);
  border-color: rgba(201, 165, 90, 0.4);
  color: rgba(201, 165, 90, 1);
  transform: translateY(-2px);
}

.curation-studio__control-btn:active {
  transform: translateY(0);
}

/* Polished Panel - Light, Editorial Aesthetic */
.curation-studio__panel--polished {
  background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  box-shadow:
    0 20px 60px -40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(201, 165, 90, 0.1);
}

.curation-studio__panel--polished .curation-studio__panel-title {
  color: #0f172a;
}

.curation-studio__panel--polished .curation-studio__panel-badge {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border-color: rgba(201, 165, 90, 0.3);
}

/* Initial state: polished elements hidden */
#polished-comp-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#polished-bio,
#polished-height,
#polished-measurements,
#polished-location-text {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#polished-image {
  opacity: 0;
  filter: grayscale(100%) contrast(0.8) brightness(0.7);
  transition: opacity 0.6s ease, filter 0.6s ease;
}

/* CTA Button */
.curation-studio__cta {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.85));
  color: #0f172a;
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(201, 165, 90, 0.3);
}

.curation-studio__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 165, 90, 0.4);
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.95), rgba(201, 165, 90, 0.75));
}

/* Prompt Text */
.curation-studio__prompt {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.curation-studio__prompt-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin: 0;
  animation: promptPulse 2s ease-in-out infinite;
}

@keyframes promptPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.curation-studio__prompt.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .curation-studio__container {
    grid-template-columns: 1fr 0.6fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .curation-studio__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .curation-studio__panel {
    min-height: auto;
  }

  .curation-studio__panel--ai {
    order: -1;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .curation-studio {
    padding: 1rem 0;
  }

  .curation-studio__container {
    padding: 0 1rem;
  }

  .curation-studio__panel {
    padding: 1.5rem;
  }

  .curation-studio__panel-title {
    font-size: 1.25rem;
  }

  .ai-processor {
    height: 250px;
  }

  .curation-studio__prompt {
    bottom: 1rem;
  }
}

/* ========================================
   UNIVERSAL FOOTER - Redesigned Editorial Style
   ======================================== */
.universal-footer {
  position: relative;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg,
      #faf9f7 0%,
      rgba(250, 249, 247, 0.98) 50%,
      #faf9f7 100%);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 165, 90, 0.03) 0%, transparent 50%);
  border-top: 1px solid rgba(201, 165, 90, 0.2);
  margin-top: 8rem;
  overflow: hidden;
}

.universal-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.4) 20%,
      rgba(201, 165, 90, 0.6) 50%,
      rgba(201, 165, 90, 0.4) 80%,
      transparent 100%);
}

.universal-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Footer Hero Section */
.universal-footer__hero {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer.is-visible .universal-footer__hero {
  opacity: 1;
  transform: translateY(0);
}

/* Metrics Bar */
.footer-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  margin-bottom: 4rem;
  border-top: 1px solid rgba(201, 165, 90, 0.15);
  border-bottom: 1px solid rgba(201, 165, 90, 0.15);
  position: relative;
}

.footer-metrics::before,
.footer-metrics::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(201, 165, 90, 0.3) 20%,
      rgba(201, 165, 90, 0.3) 80%,
      transparent 100%);
}

.footer-metrics::before {
  left: 25%;
}

.footer-metrics::after {
  right: 25%;
}

.footer-metrics__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-metrics__value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer-metrics__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-metrics__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(201, 165, 90, 0.2) 20%,
      rgba(201, 165, 90, 0.3) 50%,
      rgba(201, 165, 90, 0.2) 80%,
      transparent 100%);
}


/* Trust Signals */
.universal-footer__trust {
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer.is-visible .universal-footer__trust {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.footer-trust__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-trust__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-trust__logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.05em;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-trust__logo:hover {
  opacity: 1;
  color: rgba(201, 165, 90, 1);
  transform: translateY(-2px);
}

.universal-footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr 1.2fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer.is-visible .universal-footer__main {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Brand Section */
.universal-footer__brand-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer__brand-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.universal-footer__nav-sections {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer__nav-sections.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.universal-footer__newsletter-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer__newsletter-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.universal-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.universal-footer__logo:hover {
  transform: translateX(4px);
}

.footer-logo__text {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0f172a;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.universal-footer__logo:hover .footer-logo__text {
  color: rgba(201, 165, 90, 1);
}

.footer-logo__accent {
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg,
      rgba(201, 165, 90, 1) 0%,
      rgba(201, 165, 90, 0.6) 100%);
  border-radius: 2px;
  transition: transform 0.3s ease, height 0.3s ease;
}

.universal-footer__logo:hover .footer-logo__accent {
  transform: scaleY(1.2);
  height: 28px;
}

.universal-footer__tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.universal-footer__quote {
  margin-top: 1.5rem;
  padding-left: 1.75rem;
  position: relative;
  border-left: 2px solid rgba(201, 165, 90, 0.25);
}

.footer-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.footer-quote__text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
  letter-spacing: 0.015em;
  position: relative;
}

.footer-quote__text::before {
  content: '"';
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(201, 165, 90, 0.2);
  position: absolute;
  left: -1.25rem;
  top: -0.5rem;
  font-family: var(--font-serif);
  font-style: normal;
}

/* Social Links */
.universal-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 10px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-social__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.footer-social__link:hover::before {
  width: 100%;
  height: 100%;
}

.footer-social__link:hover {
  color: rgba(201, 165, 90, 1);
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.15);
}

.footer-social__link svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social__link:hover svg {
  transform: scale(1.1);
}

/* Navigation Sections */
.universal-footer__nav-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-top: 0.5rem;
}

.universal-footer__nav-group {
  display: flex;
  flex-direction: column;
}

.footer-nav__heading {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-nav__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(201, 165, 90, 0.4);
  transition: width 0.3s ease;
}

.footer-nav__heading:hover::after {
  width: 100%;
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav__list li {
  margin: 0;
  padding: 0;
}

.footer-nav__link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
  width: fit-content;
}

.footer-nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg,
      rgba(201, 165, 90, 1) 0%,
      rgba(201, 165, 90, 0.6) 100%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav__link:hover {
  color: rgba(201, 165, 90, 1);
  transform: translateX(4px);
}

.footer-nav__link:hover::before {
  width: 100%;
}

/* Newsletter Section */
.universal-footer__newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 0.5rem;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-newsletter__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-newsletter__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(201, 165, 90, 0.4);
}

.footer-newsletter__text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-newsletter__form {
  margin-top: 0.5rem;
}

.footer-newsletter__input-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1.5px solid rgba(201, 165, 90, 0.25);
  border-radius: 10px;
  padding: 0;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.footer-newsletter__input-wrapper:focus-within {
  border-color: rgba(201, 165, 90, 0.6);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.15),
    0 0 0 3px rgba(201, 165, 90, 0.1);
  transform: translateY(-1px);
}

.footer-newsletter__input-wrapper.footer-newsletter__input-wrapper--error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.footer-newsletter__input-wrapper.footer-newsletter__input-wrapper--success {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.footer-newsletter__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #0f172a;
  padding: 0.9375rem 1.25rem;
  outline: none;
  min-width: 0;
  line-height: 1.5;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-newsletter__input:focus {
  color: #0f172a;
}

.footer-newsletter__input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-newsletter__input:focus::placeholder {
  opacity: 0.5;
}

.footer-newsletter__button {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1) 0%, rgba(184, 149, 79, 1) 100%);
  border: none;
  border-left: 1px solid rgba(201, 165, 90, 0.15);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-newsletter__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-newsletter__button:hover {
  background: linear-gradient(135deg, rgba(184, 149, 79, 1) 0%, rgba(168, 136, 72, 1) 100%);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.25);
  transform: translateY(-1px);
}

.footer-newsletter__button:hover::before {
  opacity: 1;
}

.footer-newsletter__button:active {
  background: linear-gradient(135deg, rgba(168, 136, 72, 1) 0%, rgba(152, 123, 65, 1) 100%);
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-newsletter__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.25);
}

.footer-newsletter__button:focus:not(:focus-visible) {
  box-shadow: none;
}

.footer-newsletter__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.7) 0%, rgba(184, 149, 79, 0.7) 100%);
}

.footer-newsletter__button-icon,
.footer-newsletter__button-spinner {
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 18px;
  height: 18px;
}

.footer-newsletter__button-spinner {
  position: absolute;
  opacity: 0;
  animation: spin 0.8s linear infinite;
}

.footer-newsletter__button--loading .footer-newsletter__button-icon {
  opacity: 0;
  transform: translateX(-4px);
}

.footer-newsletter__button--loading .footer-newsletter__button-spinner {
  opacity: 1;
}

.footer-newsletter__button:hover .footer-newsletter__button-icon {
  transform: translateX(2px) translateY(-1px);
}

.footer-newsletter__button:active .footer-newsletter__button-icon {
  transform: translateX(1px);
}

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

.footer-newsletter__message {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  line-height: 1.5;
  min-height: 1.25rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-newsletter__message--success {
  color: #10b981;
  font-weight: 500;
}

.footer-newsletter__message--error {
  color: #ef4444;
  font-weight: 500;
}

.footer-newsletter__message:empty {
  opacity: 0;
  min-height: 0;
  margin-top: 0;
}

.footer-newsletter__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-newsletter__benefit {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 1rem;
}

.footer-newsletter__benefit::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(201, 165, 90, 0.5);
}

/* Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.footer-contact__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.footer-contact__email {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  color: rgba(201, 165, 90, 1);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  width: fit-content;
  position: relative;
  letter-spacing: 0.01em;
}

.footer-contact__email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: rgba(201, 165, 90, 1);
  transition: width 0.3s ease;
}

.footer-contact__email:hover {
  color: #0f172a;
  transform: translateX(4px);
}

.footer-contact__email:hover::after {
  width: 100%;
}

/* Footer Bottom Bar */
.universal-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.universal-footer.is-visible .universal-footer__bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.universal-footer__bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.4) 50%,
      transparent 100%);
}

.footer-bottom__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 165, 90, 0.25);
  border-radius: 20px;
  background: linear-gradient(135deg,
      rgba(201, 165, 90, 0.08) 0%,
      rgba(201, 165, 90, 0.03) 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.1) 50%,
      transparent 100%);
  transition: left 0.6s ease;
}

.footer-badge:hover::before {
  left: 100%;
}

.footer-badge:hover {
  border-color: rgba(201, 165, 90, 0.4);
  background: linear-gradient(135deg,
      rgba(201, 165, 90, 0.12) 0%,
      rgba(201, 165, 90, 0.05) 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.15);
}

.badge-icon {
  font-size: 0.875rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(201, 165, 90, 0.3));
}

.badge-text {
  position: relative;
  z-index: 1;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
}

.footer-bottom-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
}

.footer-bottom-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(201, 165, 90, 1);
  transition: width 0.3s ease;
}

.footer-bottom-link:hover {
  color: rgba(201, 165, 90, 1);
}

.footer-bottom-link:hover::after {
  width: 100%;
}

.footer-separator {
  color: #cbd5e1;
  font-size: 0.875rem;
  user-select: none;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .universal-footer__main {
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 4rem;
  }

  .universal-footer__nav-sections {
    gap: 2.5rem;
  }

  .footer-metrics {
    gap: 3rem;
  }

  .footer-trust__logos {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .universal-footer {
    padding: 5rem 1.5rem 3rem;
    margin-top: 5rem;
  }

  .universal-footer__hero {
    margin-bottom: 4rem;
  }

  .footer-metrics {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }

  .footer-metrics::before,
  .footer-metrics::after {
    display: none;
  }

  .footer-metrics__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 165, 90, 0.2) 20%,
        rgba(201, 165, 90, 0.3) 50%,
        rgba(201, 165, 90, 0.2) 80%,
        transparent 100%);
  }


  .universal-footer__trust {
    margin: 3rem 0;
    padding: 2rem 0;
  }

  .footer-trust__logos {
    gap: 2rem;
  }

  .universal-footer__main {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .universal-footer__brand-section {
    gap: 1.5rem;
  }

  .universal-footer__tagline {
    max-width: 100%;
  }

  .universal-footer__nav-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .universal-footer__newsletter-section {
    gap: 2rem;
  }

  .footer-newsletter__input-wrapper {
    flex-direction: row;
  }

  .universal-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .footer-bottom__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-bottom-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-separator {
    display: none;
  }

  .footer-bottom-link {
    padding: 0.5rem 0;
  }

  .universal-footer__quote {
    padding-left: 1rem;
  }

  .footer-quote__text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .universal-footer {
    padding: 4rem 1.25rem 2.5rem;
  }

  .universal-footer__nav-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .universal-footer__social {
    flex-wrap: wrap;
  }

  .footer-newsletter__input-wrapper {
    flex-wrap: wrap;
  }

  .footer-newsletter__input {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .footer-newsletter__button {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

/* ========================================
   HOMEPAGE: AI TRANSFORMATION HERO
   ======================================== */

/* Transformation Hero: Split-Screen AI Curation */
.transformation-hero {
  position: relative;
  background: #FAF9F7;
  padding: calc(8rem + var(--header-height, 80px)) 2rem 8rem;
  margin-top: 0;
  overflow: hidden;
}

/* Scroll-triggered parallax effect for hero header */
@media (prefers-reduced-motion: no-preference) {
  .transformation-hero__header {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }

  .transformation-hero.scrolled .transformation-hero__header {
    transform: translateY(-20px);
    opacity: 0.9;
  }
}

.transformation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.transformation-hero__container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.transformation-hero__header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  padding: 0 1rem;
  z-index: 2;
}

.transformation-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  padding: 1rem 0;
}

.transformation-hero__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.25), transparent);
  opacity: 0.6;
}

.transformation-hero__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.15), transparent);
  opacity: 0.5;
}

.transformation-hero__title-word {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.transformation-hero__word-inner {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(20px) rotateX(90deg);
  animation: wordReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.transformation-hero__title-word:nth-child(1) .transformation-hero__word-inner {
  animation-delay: 0.1s;
}

.transformation-hero__title-word:nth-child(2) .transformation-hero__word-inner {
  animation-delay: 0.3s;
}

.transformation-hero__title-arrow {
  animation-delay: 0.5s;
  opacity: 0;
  animation: wordReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.transformation-hero__title-word:nth-child(4) .transformation-hero__word-inner {
  animation-delay: 0.7s;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.transformation-hero__title-raw {
  color: #475569;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.transformation-hero__title-raw .transformation-hero__word-inner {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.transformation-hero__title-word--small {
  font-size: 0.85em;
}

.transformation-hero__title-word--small .transformation-hero__word-inner {
  color: #64748b;
}

.transformation-hero__title-arrow {
  color: rgba(201, 165, 90, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowPulse 2.5s ease-in-out infinite 1s;
  flex-shrink: 0;
  position: relative;
  padding: 0 0.75rem;
}

.transformation-hero__title-arrow::before,
.transformation-hero__title-arrow::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.25), transparent);
}

.transformation-hero__title-arrow::before {
  left: -30px;
}

.transformation-hero__title-arrow::after {
  right: -30px;
}

.transformation-hero__title-arrow svg {
  width: clamp(40px, 5vw, 70px);
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(201, 165, 90, 0.25));
}

@keyframes arrowPulse {

  0%,
  100% {
    opacity: 0.8;
    transform: translateX(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(12px) scale(1.05);
  }
}

.transformation-hero__title-accent {
  color: rgba(201, 165, 90, 1);
  font-weight: 400;
  background: linear-gradient(135deg,
      rgba(201, 165, 90, 1) 0%,
      rgba(201, 165, 90, 0.95) 25%,
      rgba(201, 165, 90, 0.9) 50%,
      rgba(201, 165, 90, 0.95) 75%,
      rgba(201, 165, 90, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(201, 165, 90, 0.4);
  letter-spacing: 0.01em;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 40px rgba(201, 165, 90, 0.4);
  }

  50% {
    filter: brightness(1.1);
    text-shadow: 0 0 60px rgba(201, 165, 90, 0.6);
  }
}

.transformation-hero__title-accent::before {
  content: '';
  position: absolute;
  bottom: -0.15em;
  left: -0.1em;
  right: -0.1em;
  height: 4px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.3) 10%,
      rgba(201, 165, 90, 0.7) 30%,
      rgba(201, 165, 90, 0.9) 50%,
      rgba(201, 165, 90, 0.7) 70%,
      rgba(201, 165, 90, 0.3) 90%,
      transparent 100%);
  border-radius: 3px;
  opacity: 0.8;
  box-shadow: 0 2px 12px rgba(201, 165, 90, 0.4);
}

.transformation-hero__title-accent::after {
  content: '';
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.2), transparent);
  opacity: 0.5;
}

.transformation-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(10px);
  animation: subtitleReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

@keyframes subtitleReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Split-Screen Layout */
.transformation-hero__split {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 2rem;
  align-items: start;
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  z-index: 1;
}

/* Visual connection between header and transformation */
.transformation-hero__header::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(201, 165, 90, 0.2) 30%,
      rgba(201, 165, 90, 0.15) 70%,
      transparent 100%);
  opacity: 0.6;
}

.transformation-hero__side {
  position: relative;
  z-index: 1;
}

.transformation-hero__side--curated {
  z-index: 2;
}

.transformation-hero__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
  text-align: center;
}

.transformation-hero__side--raw .transformation-hero__label {
  color: #94a3b8;
}

.transformation-hero__side--curated .transformation-hero__label {
  color: rgba(201, 165, 90, 1);
}

/* Email Draft - Gmail/Outlook Style */
.email-draft {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.email-draft__window {
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 20px 60px -40px rgba(15, 23, 42, 0.3),
    0 8px 24px -12px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transform: rotate(-0.3deg);
}

.email-draft__header {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.email-draft__toolbar {
  display: flex;
  gap: 0.5rem;
}

.email-draft__toolbar-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.email-draft__toolbar-button--close {
  background: #ff5f57;
}

.email-draft__toolbar-button--minimize {
  background: #ffbd2e;
}

.email-draft__toolbar-button--maximize {
  background: #28ca42;
}

.email-draft__title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333;
  flex: 1;
}

.email-draft__form {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
}

.email-draft__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.email-draft__field:last-child {
  margin-bottom: 0;
}

.email-draft__field--subject {
  border-top: 1px solid #e0e0e0;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.email-draft__field-label {
  color: #666;
  font-weight: 500;
  min-width: 50px;
  font-size: 0.8125rem;
}

.email-draft__field-value {
  color: #333;
  flex: 1;
}

.email-draft__subject {
  color: #1a73e8;
  font-weight: 500;
  word-break: break-word;
}

.email-draft__body {
  min-height: 400px;
  max-height: 500px;
  overflow-y: auto;
  padding: 1.5rem;
  background: #ffffff;
}

.email-draft__body-content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #202124;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.email-draft__body-content p {
  margin: 0 0 1rem 0;
}

.email-draft__body-content p:last-child {
  margin-bottom: 0;
}

.email-draft__body-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  padding: 0;
}

.email-draft__body-content li {
  margin-bottom: 0.5rem;
}

.email-draft__link {
  margin: 0.75rem 0;
  word-break: break-all;
}

.email-draft__link-url {
  color: #1a73e8;
  text-decoration: underline;
  font-size: 0.8125rem;
  font-family: 'Courier New', monospace;
  opacity: 0.9;
}

.email-draft__link-url:hover {
  color: #1557b0;
}

.email-draft__signature {
  margin-top: 1.5rem;
  font-style: italic;
  color: #666;
}

.email-draft__footer {
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.email-draft__attachment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #666;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  max-width: 100%;
  overflow: hidden;
}

.email-draft__attachment-icon {
  font-size: 1rem;
}

.email-draft__attachment-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
}

.email-draft__actions {
  display: flex;
  gap: 0.75rem;
}

.email-draft__button {
  padding: 0.625rem 1.5rem;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.email-draft__button--send {
  background: #1a73e8;
  color: #ffffff;
  border-color: #1a73e8;
}

.email-draft__button--send:hover {
  background: #1557b0;
  border-color: #1557b0;
  box-shadow: 0 1px 3px rgba(26, 115, 232, 0.3);
}

.email-draft__button--draft {
  background: #ffffff;
  color: #5f6368;
  border-color: #dadce0;
}

.email-draft__button--draft:hover {
  background: #f8f9fa;
  border-color: #c4c7c5;
}

/* Raw Document - Messy Paper Style (kept for reference, can be removed) */
.raw-document {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.raw-document__paper {
  background: #fefefe;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(0, 0, 0, 0.03) 31px, rgba(0, 0, 0, 0.03) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(0, 0, 0, 0.03) 31px, rgba(0, 0, 0, 0.03) 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 0 60px rgba(0, 0, 0, 0.02);
  padding: 2.5rem 2rem;
  position: relative;
  min-height: 600px;
  transform: rotate(-0.5deg);
}

.raw-document__stain {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.raw-document__stain--1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.4) 0%, transparent 70%);
  top: 15%;
  right: 10%;
  transform: rotate(25deg);
}

.raw-document__stain--2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  transform: rotate(-15deg);
}

.raw-document__header {
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  position: relative;
}

.raw-document__name {
  margin-bottom: 0.75rem;
  position: relative;
}

.raw-document__name-handwritten {
  font-family: 'Courier New', 'Monaco', monospace;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.06em;
  display: inline-block;
  transform: rotate(0.5deg);
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.raw-document__typo {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: #dc2626;
  margin-left: 0.5rem;
  font-style: italic;
  opacity: 0.8;
  font-weight: 600;
  background: rgba(220, 38, 38, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  display: inline-block;
}

.raw-document__location {
  font-family: 'Courier New', monospace;
  font-size: 0.9375rem;
  color: #334155;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.raw-document__location-text {
  display: inline-block;
  font-weight: 500;
  color: #1e293b;
}

.raw-document__scribble {
  font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
  font-size: 0.8125rem;
  color: #64748b;
  margin-left: 0.75rem;
  font-style: italic;
  opacity: 0.7;
  transform: rotate(-2deg);
  display: inline-block;
  background: rgba(255, 255, 0, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.raw-document__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.raw-document__photo {
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 0.5rem;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transform: rotate(var(--rotation, 0deg));
}

.raw-document__photo--1 {
  grid-column: 1 / -1;
  --rotation: -1.5deg;
  transform: rotate(-1.5deg);
}

.raw-document__photo--2 {
  --rotation: 2deg;
  transform: rotate(2deg);
}

.raw-document__photo--3 {
  --rotation: -1deg;
  transform: rotate(-1deg);
}

.raw-document__photo--4 {
  --rotation: 1.5deg;
  transform: rotate(1.5deg);
}

.raw-document__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(0.9) brightness(0.95);
}

.raw-document__photo-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  border-radius: 2px;
  font-weight: 600;
}

.raw-document__tape {
  position: absolute;
  width: 40px;
  height: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  transform: rotate(45deg);
  top: -8px;
  left: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.raw-document__notes {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.raw-document__note {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: #1e293b;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 0, 0.18);
  border-left: 3px solid #f59e0b;
  transform: rotate(var(--note-rotation, 0deg));
  line-height: 1.5;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.raw-document__note--handwritten {
  font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
  --note-rotation: -0.5deg;
  transform: rotate(-0.5deg);
  font-style: italic;
  font-weight: 600;
}

.raw-document__note--typed {
  font-family: 'Courier New', monospace;
  --note-rotation: 0.3deg;
  transform: rotate(0.3deg);
  font-weight: 500;
}

.raw-document__note-icon {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.raw-document__bio-section {
  margin-bottom: 1.5rem;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
}

.raw-document__bio-label {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.raw-document__bio-text {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #1e293b;
  white-space: pre-wrap;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.raw-document__sticky {
  position: absolute;
  padding: 0.6rem 0.9rem;
  background: #ffeb3b;
  border: 1px solid #fdd835;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
  font-size: 0.75rem;
  color: #333;
  z-index: 10;
  transform: rotate(var(--sticky-rotation, -8deg));
  animation: stickyFloat 4s ease-in-out infinite;
}

.raw-document__sticky--1 {
  top: 10%;
  right: 5%;
  --sticky-rotation: -8deg;
  animation-delay: 0s;
}

.raw-document__sticky--2 {
  top: 45%;
  right: 8%;
  --sticky-rotation: 6deg;
  background: #ff9800;
  border-color: #f57c00;
  color: #fff;
  animation-delay: 1.5s;
}

.raw-document__sticky--3 {
  bottom: 25%;
  left: 5%;
  --sticky-rotation: -5deg;
  background: #e91e63;
  border-color: #c2185b;
  color: #fff;
  animation-delay: 3s;
}

@keyframes stickyFloat {

  0%,
  100% {
    transform: rotate(var(--sticky-rotation, -8deg)) translateY(0);
  }

  50% {
    transform: rotate(var(--sticky-rotation, -8deg)) translateY(-8px);
  }
}

.raw-document__margin-note {
  position: absolute;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 0.7rem;
  color: #6b7280;
  font-style: italic;
  transform: rotate(90deg);
  transform-origin: left top;
  white-space: nowrap;
  opacity: 0.6;
}

.raw-document__margin-note--1 {
  top: 30%;
  right: -2rem;
  color: #ef4444;
}

.raw-document__margin-note--2 {
  bottom: 15%;
  left: -2rem;
  transform: rotate(-90deg);
  transform-origin: right top;
}

/* Portfolio Card - Vogue-Level Comp Card */
.portfolio-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px -40px rgba(15, 23, 42, 0.3),
    0 8px 24px -12px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Free Tier Card - High-End Product Look */
.portfolio-card--free {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  min-height: 600px;
  position: relative;
}

/* Hero Image (Full Bleed) */
.portfolio-card--free .portfolio-card__hero-image {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #000000;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.portfolio-card--free .portfolio-card__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Free Badge (Inside Image) */
.portfolio-card--free .portfolio-card__free-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Skeleton/Scanning State (Step 1) */
.portfolio-card--free .portfolio-card__skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
  background: #ffffff;
  transition: opacity 0.7s ease;
}

.portfolio-card--free .portfolio-card__skeleton-line {
  height: 1rem;
  background: linear-gradient(
    90deg,
    #f3f4f6 0%,
    #e5e7eb 50%,
    #f3f4f6 100%
  );
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.portfolio-card--free .portfolio-card__skeleton-line--header {
  height: 2rem;
  width: 60%;
  margin: 0 auto;
}

.portfolio-card--free .portfolio-card__skeleton-line--subheader {
  height: 0.75rem;
  width: 40%;
  margin: 0 auto;
}

.portfolio-card--free .portfolio-card__skeleton-line--tags {
  height: 1.5rem;
  width: 50%;
  margin: 0 auto;
}

.portfolio-card--free .portfolio-card__skeleton-line--stats {
  height: 8rem;
  width: 100%;
  margin-top: 1rem;
}

.portfolio-card--free .portfolio-card__skeleton-line--footer {
  height: 1.5rem;
  width: 70%;
  margin-top: auto;
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Content Section */
.portfolio-card--free .portfolio-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: auto;
  flex: 1;
  position: relative;
}

.portfolio-card--free .portfolio-card__header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  z-index: 1;
}

.portfolio-card--free .portfolio-card__name {
  font-family: var(--font-serif);
  font-size: 2.25rem; /* text-4xl */
  font-weight: 500; /* font-medium */
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em; /* tracking-tighter */
  text-transform: uppercase;
  color: #0f172a;
}

.portfolio-card--free .portfolio-card__location {
  font-family: var(--font-sans);
  font-size: 0.625rem; /* text-[10px] */
  letter-spacing: 0.2em; /* tracking-[0.2em] */
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 1rem 0;
  font-weight: 400;
}

/* Category Tags */
.portfolio-card--free .portfolio-card__category-tags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-card--free .portfolio-card__category-tag {
  background: transparent;
  border: 1px solid #0f172a; /* border-black */
  color: #0f172a; /* text-black */
  font-family: var(--font-sans);
  font-size: 0.5625rem; /* text-[9px] */
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px; /* rounded-full */
}

/* Stats Section (Editorial Layout) */
.portfolio-card--free .portfolio-card__stats-section {
  padding: 2rem 0;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
}

.portfolio-card--free .portfolio-card__stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  gap-y: 2rem; /* gap-y-8 */
  position: relative;
  visibility: visible !important;
  opacity: 1 !important;
}

.portfolio-card--free .portfolio-card__stat-item {
  display: flex !important;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
  padding: 0;
  position: relative;
  transition: opacity 0.2s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.portfolio-card--free .portfolio-card__stat-item:hover {
  opacity: 0.7;
}

.portfolio-card--free .portfolio-card__stat-item .portfolio-card__stat-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem; /* text-[9px] */
  letter-spacing: 0.2em; /* tracking-widest */
  text-transform: uppercase;
  color: #9ca3af !important; /* text-gray-400 */
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.portfolio-card--free .portfolio-card__stat-item .portfolio-card__stat-value {
  font-family: var(--font-serif);
  font-size: 1rem; /* text-base */
  font-weight: 500;
  color: #0f172a !important; /* text-black */
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Social Media Handles */
.portfolio-card--free .portfolio-card__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.portfolio-card--free .portfolio-card__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280; /* text-gray-500 */
  font-family: var(--font-sans);
  font-size: 0.75rem; /* text-xs */
  text-decoration: none;
  transition: color 0.2s ease;
}

.portfolio-card--free .portfolio-card__social-link:hover {
  color: #0f172a;
}

.portfolio-card--free .portfolio-card__social-link svg {
  flex-shrink: 0;
  color: #6b7280;
  transition: color 0.2s ease;
}

.portfolio-card--free .portfolio-card__social-link:hover svg {
  color: #0f172a;
}

/* Signature Watermark */
.portfolio-card--free .portfolio-card__signature {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 3rem; /* text-5xl */
  font-style: italic;
  color: #f3f4f6; /* text-gray-100 */
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  font-weight: 300;
  white-space: nowrap;
}

/* URL Footer with Status */
.portfolio-card--free .portfolio-card__url-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1;
}

.portfolio-card--free .portfolio-card__url-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-card--free .portfolio-card__url-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.portfolio-card--free .portfolio-card__url-link:hover {
  opacity: 0.7;
}

.portfolio-card--free .portfolio-card__url-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #475569;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.portfolio-card--free .portfolio-card__copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.portfolio-card--free .portfolio-card__copy-btn:hover {
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
}

/* Status Indicator */
.portfolio-card--free .portfolio-card__status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.portfolio-card--free .portfolio-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
}

.portfolio-card--free .portfolio-card__status-text {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: #16a34a;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive: Free Card */
@media (max-width: 768px) {
  .portfolio-card--free .portfolio-card__hero-image {
    height: 280px;
  }

  .portfolio-card--free .portfolio-card__content {
    padding: 1.5rem;
  }

  .portfolio-card--free .portfolio-card__name {
    font-size: 1.25rem;
  }

  .portfolio-card--free .portfolio-card__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.5rem;
  }

  .portfolio-card--free .portfolio-card__url-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .portfolio-card--free .portfolio-card__status {
    align-self: flex-start;
  }
}
}

/* Split-Panel Layout */
.portfolio-card__split {
  display: flex;
  min-height: 600px;
  position: relative;
}

/* Left Panel: Hero Image (60-65%) */
.portfolio-card__image-panel {
  flex: 0 0 62%;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.portfolio-card__hero-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  background: #000000;
}

.portfolio-card__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.portfolio-card__image-panel:hover .portfolio-card__hero-image img {
  transform: scale(1.02);
  filter: brightness(1.05) contrast(1.02);
}

.portfolio-card__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Gold Vertical Divider */
.portfolio-card__divider {
  flex: 0 0 2px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(201, 165, 90, 0.4) 10%,
      rgba(201, 165, 90, 0.6) 50%,
      rgba(201, 165, 90, 0.4) 90%,
      transparent 100%);
  position: relative;
  z-index: 2;
}

.portfolio-card__divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(201, 165, 90, 0.2);
  width: 1px;
  margin: 0 auto;
}

/* Right Panel: Information (35-40%) */
.portfolio-card__info-panel {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 2.5rem 2rem;
  position: relative;
}

/* Header Section */
.portfolio-card__header {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.15);
}

.portfolio-card__name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

.portfolio-card__name-first {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 200;
  letter-spacing: 0.15em;
}

.portfolio-card__name-last {
  display: block;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #0f172a;
}

.portfolio-card__location {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1.25rem;
}

/* Free Version Description */
.portfolio-card__free-description {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.1);
}

.portfolio-card__free-description p {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  letter-spacing: 0.01em;
}

.portfolio-card__free-description strong {
  color: #0f172a;
  font-weight: 600;
}

/* Stats Section */
.portfolio-card__stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

.portfolio-card__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.portfolio-card__stat-label {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.9);
  font-weight: 600;
  white-space: nowrap;
  min-width: 80px;
}

.portfolio-card__stat-value {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #0f172a;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: right;
  flex: 1;
}

/* Specializations */
.portfolio-card__specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

.portfolio-card__specialization-badge {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.25);
  border-radius: 2px;
  color: rgba(201, 165, 90, 1);
  transition: all 0.3s ease;
}

.portfolio-card__specialization-badge:hover {
  background: rgba(201, 165, 90, 0.12);
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-1px);
}

.portfolio-card__specialization-badge--editorial {
  border-color: rgba(201, 165, 90, 0.3);
}

.portfolio-card__specialization-badge--runway {
  border-color: rgba(201, 165, 90, 0.3);
}

.portfolio-card__specialization-badge--commercial {
  border-color: rgba(201, 165, 90, 0.3);
}

/* Bio Preview */
.portfolio-card__bio-preview {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  letter-spacing: 0.015em;
  text-align: left;
  font-weight: 400;
  margin: 0 0 2rem 0;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Portfolio Access */
.portfolio-card__portfolio-access {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

.portfolio-card__portfolio-url {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.portfolio-card__portfolio-label {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.9);
  font-weight: 600;
}

.portfolio-card__portfolio-link {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.875rem;
  color: #0f172a;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.portfolio-card__portfolio-link:hover {
  color: rgba(201, 165, 90, 1);
  border-bottom-color: rgba(201, 165, 90, 0.3);
}

/* Contact Section */
.portfolio-card__contact {
  margin-top: auto;
  padding-top: 0;
}

.portfolio-card__contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.06) 0%, rgba(201, 165, 90, 0.03) 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.portfolio-card__contact-card:hover {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.06) 100%);
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.15);
}

.portfolio-card__contact-card:active {
  transform: translateY(0);
}

.portfolio-card__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(201, 165, 90, 0.9);
  transition: all 0.3s ease;
}

.portfolio-card__contact-card:hover .portfolio-card__contact-icon {
  color: rgba(201, 165, 90, 1);
  transform: scale(1.1);
}

.portfolio-card__contact-handle {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.8125rem;
  color: #1e293b;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.portfolio-card__contact-card:hover .portfolio-card__contact-handle {
  color: #0f172a;
}

/* Legacy styles for backward compatibility */
.portfolio-card__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portfolio-card__contact-label {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  font-weight: 600;
  min-width: 80px;
}

.portfolio-card__contact-value {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.875rem;
  color: #1e293b;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Messy Raw Card Elements */
.transformation-card__sticky-note {
  position: absolute;
  padding: 0.5rem 0.75rem;
  background: #ffeb3b;
  border: 1px solid #fdd835;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
  font-size: 0.75rem;
  color: #333;
  z-index: 10;
  transform: rotate(-5deg);
  animation: stickyNoteFloat 3s ease-in-out infinite;
}

.transformation-card__sticky-note--1 {
  top: -10px;
  right: 20px;
  animation-delay: 0s;
}

.transformation-card__sticky-note--2 {
  top: 40px;
  right: 10px;
  transform: rotate(8deg);
  animation-delay: 1.5s;
  background: #ff9800;
  border-color: #f57c00;
  color: #fff;
}

@keyframes stickyNoteFloat {

  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }

  50% {
    transform: rotate(-5deg) translateY(-5px);
  }
}

.transformation-card__handwritten-note {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 235, 59, 0.2);
  border-left: 3px solid #ffc107;
  font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
  font-size: 0.7rem;
  color: #666;
  font-style: italic;
  transform: rotate(-1deg);
}

.transformation-card__header--messy {
  background: #f1f3f5;
  border-bottom: 2px dashed #cbd5e1;
}

.transformation-card__name--messy {
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0;
  text-transform: none;
}

.transformation-card__location--messy {
  font-family: Arial, sans-serif;
  color: #64748b;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.transformation-card__content--messy {
  background: #ffffff;
}

.transformation-card__hero-image--messy {
  border: 2px dashed #cbd5e1;
  transform: rotate(-1deg);
  position: relative;
}

.transformation-card__image-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  border-radius: 3px;
}

.transformation-card__image-label--small {
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
}

.transformation-card__gallery--messy {
  gap: 0.75rem;
}

.transformation-card__gallery-item--messy {
  border: 2px dashed #cbd5e1;
  background: #f8f9fa;
  position: relative;
}

.transformation-card__stats--messy {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px dashed #cbd5e1;
}

.transformation-card__stat--messy {
  flex-direction: row;
  gap: 0.5rem;
  align-items: baseline;
}

.transformation-card__stat-label--messy {
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: #475569;
  font-size: 0.8rem;
}

.transformation-card__stat-value--messy {
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #64748b;
  font-size: 0.85rem;
}

.transformation-card__bio--messy {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 6px;
  border-left: 3px solid #cbd5e1;
}

.transformation-card__bio-text--messy {
  font-family: Arial, sans-serif;
  color: #475569;
  line-height: 1.5;
  font-style: italic;
  font-size: 0.8rem;
}

.transformation-card--curated {
  border: 1px solid rgba(201, 165, 90, 0.2);
  box-shadow: 0 8px 30px rgba(201, 165, 90, 0.15);
  background: #faf9f7;
  position: relative;
}

/* Editorial Curated Card Elements */
.transformation-card__editorial-badge {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 10;
  padding: 0.6rem 1.25rem;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid rgba(201, 165, 90, 0.6);
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 0.575rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 165, 90, 0.2);
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}

.transformation-card__editorial-badge.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.transformation-card__editorial-badge span {
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 8px rgba(201, 165, 90, 0.3);
}

.transformation-card__editorial-badge span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.8) 50%,
      transparent 100%);
  box-shadow: 0 2px 4px rgba(201, 165, 90, 0.4);
}

.transformation-card__header--editorial {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #ffffff;
  border-bottom: 2px solid rgba(201, 165, 90, 0.3);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.transformation-card__header--editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.4), transparent);
}

.transformation-card__name--editorial {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.15em;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  font-style: normal;
}

.transformation-card__name--editorial::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 1px;
  background: rgba(201, 165, 90, 0.6);
}

.transformation-card__name-last {
  font-weight: 400;
  letter-spacing: 0.18em;
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.transformation-card__location--editorial {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  font-weight: 500;
  margin-top: 1.25rem;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(201, 165, 90, 0.15);
  border: 1px solid rgba(201, 165, 90, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.transformation-card__content--editorial {
  background: #ffffff;
  padding: 2.5rem 2rem;
  position: relative;
}

.transformation-card__hero-image--editorial {
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 280px;
  background: #000000;
}

.transformation-card__hero-image--editorial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 2;
}

.transformation-card__hero-image--editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.transformation-card__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.transformation-card__gallery--editorial {
  gap: 0.5rem;
}

.transformation-card__gallery-item--editorial {
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s ease;
  background: #000000;
}

.transformation-card__gallery-item--editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.transformation-card__gallery-item--editorial:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(201, 165, 90, 0.25);
}

.transformation-card__gallery-item--editorial:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.transformation-card__gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 40%,
      transparent 60%,
      rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.transformation-card__stats--editorial {
  background: linear-gradient(180deg,
      rgba(201, 165, 90, 0.04) 0%,
      transparent 40%,
      transparent 60%,
      rgba(201, 165, 90, 0.04) 100%);
  border-top: 1px solid rgba(201, 165, 90, 0.2);
  border-bottom: 1px solid rgba(201, 165, 90, 0.2);
  padding: 2.5rem 0;
  gap: 3rem;
  margin: 2rem 0;
  position: relative;
}

.transformation-card__stats--editorial::before,
.transformation-card__stats--editorial::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 165, 90, 0.3) 20%,
      rgba(201, 165, 90, 0.3) 80%,
      transparent 100%);
}

.transformation-card__stats--editorial::before {
  top: 0;
}

.transformation-card__stats--editorial::after {
  bottom: 0;
}

.transformation-card__stat--editorial {
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.transformation-card__stat--editorial:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(201, 165, 90, 0.25) 50%,
      transparent 100%);
}

.transformation-card__stat-label--editorial {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.95);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.transformation-card__stat-value--editorial {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: #0f172a;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.transformation-card__bio--editorial {
  background: transparent;
  border-top: 1px solid rgba(201, 165, 90, 0.15);
  padding-top: 2rem;
  margin-top: 1rem;
  position: relative;
}

.transformation-card__bio--editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(201, 165, 90, 0.4);
}

.transformation-card__bio-text--editorial {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #1e293b;
  font-style: normal;
  letter-spacing: 0.02em;
  text-align: left;
  font-weight: 400;
  max-width: 100%;
  margin: 0;
}

.transformation-card__bio-text--editorial::first-letter {
  font-size: 3.5em;
  line-height: 0.85;
  float: left;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  color: rgba(201, 165, 90, 0.85);
  font-family: var(--font-serif);
  font-weight: 300;
  padding-right: 0.4rem;
  border-right: 1px solid rgba(201, 165, 90, 0.25);
  margin-right: 0.6rem;
}

@media (max-width: 768px) {
  .transformation-card__bio-text--editorial::first-letter {
    font-size: 2.5em;
  }

  .transformation-card__bio-text--editorial {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.transformation-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.transformation-card--curated .transformation-card__header {
  border-bottom-color: rgba(201, 165, 90, 0.1);
}

.transformation-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
}

.transformation-card--raw .transformation-card__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.transformation-card__location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 500;
}

.transformation-card--curated .transformation-card__location {
  color: #475569;
  font-weight: 400;
}

.transformation-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transformation-card__hero-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
}

.transformation-card--raw .transformation-card__hero-image {
  border: 1px solid #e2e8f0;
}

.transformation-card__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(0.95);
  transition: filter 0.6s ease;
}

.transformation-card--curated .transformation-card__hero-image img {
  filter: brightness(1) contrast(1.05);
}

.transformation-card__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.transformation-card__gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: #f1f5f9;
}

.transformation-card--raw .transformation-card__gallery-item {
  border: 1px solid #e2e8f0;
}

.transformation-card__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.6s ease;
}

.transformation-card--curated .transformation-card__gallery-item img {
  filter: brightness(1);
}

.transformation-card__stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.transformation-card--curated .transformation-card__stats {
  border-top-color: rgba(201, 165, 90, 0.1);
}

.transformation-card__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.transformation-card__stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 500;
}

.transformation-card--curated .transformation-card__stat-label {
  color: #64748b;
  font-weight: 400;
}

.transformation-card__stat-value {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.05em;
}

.transformation-card--raw .transformation-card__stat-value {
  font-weight: 700;
  color: #475569;
}

.transformation-card--curated .transformation-card__stat-value {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.transformation-card__bio {
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.transformation-card--curated .transformation-card__bio {
  border-top-color: rgba(201, 165, 90, 0.1);
}

.transformation-card__bio-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  letter-spacing: 0.01em;
}

.transformation-card--raw .transformation-card__bio-text {
  color: #94a3b8;
  line-height: 1.5;
  font-style: italic;
}

.transformation-card--curated .transformation-card__bio-text {
  color: #475569;
  line-height: 1.7;
  font-style: normal;
}

/* Transformation Center Zone */
.transformation-hero__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  overflow: visible;
  z-index: 1;
}

.transformation-zone {
  position: relative;
  width: 100%;
  max-width: 140px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  overflow: visible;
  padding-top: 2rem;
}

.transformation-zone__particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 165, 90, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 165, 90, 0.1) 0%, transparent 50%);
  animation: particleFlow 3s ease-in-out infinite;
  opacity: 0;
}

.transformation-zone.animating .transformation-zone__particles {
  opacity: 1;
}

@keyframes particleFlow {

  0%,
  100% {
    transform: translateX(-20px) translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: translateX(20px) translateY(-10px);
    opacity: 0.6;
  }
}

.transformation-zone__border {
  position: absolute;
  left: 50%;
  top: 3rem;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(201, 165, 90, 0.2);
  z-index: 0;
}

.transformation-zone__indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  white-space: nowrap;
  margin-bottom: 2rem;
  opacity: 1;
  transform: scale(1);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(201, 165, 90, 0.2);
  }

  50% {
    box-shadow: 0 4px 30px rgba(201, 165, 90, 0.4);
  }
}

.transformation-zone__ai-label {
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
}

.transformation-zone__processing {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.05em;
}

/* Progress Indicators - Vertical Stepper */
.transformation-zone__progress {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
  min-height: 280px;
  padding-top: 0.5rem;
}

.transformation-zone__progress-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  gap: 2.5rem;
}

.transformation-zone__progress-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.transformation-zone__progress-step.active {
  opacity: 1;
  z-index: 2;
}

.transformation-zone__progress-step.completed {
  opacity: 0.6;
}

.transformation-zone__progress-step-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(201, 165, 90, 0.3);
  background: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.transformation-zone__progress-step.active .transformation-zone__progress-step-indicator {
  width: 16px;
  height: 16px;
  border-color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 1);
  box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.15);
}

.transformation-zone__progress-step.completed .transformation-zone__progress-step-indicator {
  border-color: rgba(201, 165, 90, 0.6);
  background: rgba(201, 165, 90, 0.6);
}

.transformation-zone__progress-step.completed .transformation-zone__progress-step-indicator::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
}

.transformation-zone__progress-step-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.transformation-zone__progress-step.active .transformation-zone__progress-step-label {
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
}

.transformation-zone__progress-step.completed .transformation-zone__progress-step-label {
  color: rgba(201, 165, 90, 0.7);
}

/* Interactive Slider */
.transformation-hero__slider-wrapper {
  margin-top: 3rem;
  width: 100%;
  max-width: 500px;
}

.transformation-hero__slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.transformation-hero__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-accent);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.transformation-hero__slider-btn:hover {
  background: rgba(201, 165, 90, 0.1);
  border-color: var(--color-accent);
}

.transformation-hero__slider-btn:active {
  transform: scale(0.95);
}

.transformation-hero__slider-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.transformation-hero__slider-container {
  flex: 1;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}

.transformation-hero__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.transformation-hero__slider-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(201, 165, 90, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.transformation-hero__slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), rgba(201, 165, 90, 0.8));
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
  pointer-events: none;
}

.transformation-hero__slider-thumb {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: white;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.3);
  transition: transform 0.1s ease, box-shadow 0.2s ease;
  pointer-events: none;
  z-index: 3;
}

.transformation-hero__slider:active + .transformation-hero__slider-track .transformation-hero__slider-thumb {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.4);
}

.transformation-hero__slider-percentage {
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  min-width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.transformation-hero__replay {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.transformation-hero__replay.visible {
  opacity: 1;
  pointer-events: auto;
}

.transformation-hero__replay:hover {
  background: rgba(201, 165, 90, 0.1);
  border-color: rgba(201, 165, 90, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.homepage-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(201, 165, 90, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(15, 23, 42, 0.3) 0%, #0a0a0a 70%);
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.homepage-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}


/* Editorial Overlay */
.homepage-hero__overlay {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.homepage-hero__badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.homepage-hero__badge-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.9);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 999px;
  background: rgba(201, 165, 90, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.homepage-hero__headline {
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.homepage-hero__headline-main {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: #faf9f7;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.homepage-hero__headline-sub {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.homepage-hero__description {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: rgba(250, 249, 247, 0.85);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Portfolio Preview Frame */
.homepage-hero__preview {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem 0;
  z-index: 1;
}

.homepage-hero__frame-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 165, 90, 0.2);
  background: #0a0a0a;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s ease;
}

.homepage-hero__frame-wrapper:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(201, 165, 90, 0.4);
}

.homepage-hero__iframe-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.homepage-hero__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.homepage-hero__iframe.loaded {
  opacity: 1;
}

.homepage-hero__frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, transparent 20%, transparent 80%, rgba(10, 10, 10, 0.3) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Talent Info Overlay */
.homepage-hero__talent-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.homepage-hero__frame-wrapper:hover .homepage-hero__talent-info {
  opacity: 1;
  transform: translateY(0);
}

.homepage-hero__talent-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #faf9f7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
}

.homepage-hero__talent-location {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.homepage-hero__talent-stat {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  font-weight: 500;
  color: rgba(250, 249, 247, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

/* Navigation Dots */
.homepage-hero__navigation {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.homepage-hero__nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(250, 249, 247, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

.homepage-hero__nav-dot:focus-visible {
  outline: 2px solid rgba(201, 165, 90, 1);
  outline-offset: 4px;
}

.homepage-hero__nav-dot:hover {
  border-color: rgba(201, 165, 90, 0.6);
  transform: scale(1.2);
}

.homepage-hero__nav-dot.is-active {
  border-color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 1);
}

.homepage-hero__nav-dot-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Navigation Arrows */
.homepage-hero__nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(250, 249, 247, 0.3);
  background: rgba(10, 10, 10, 0.6);
  color: #faf9f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  outline: none;
}

.homepage-hero__nav-arrow:focus-visible {
  outline: 2px solid rgba(201, 165, 90, 1);
  outline-offset: 4px;
}

.homepage-hero__nav-arrow:hover {
  border-color: rgba(201, 165, 90, 1);
  background: rgba(201, 165, 90, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.homepage-hero__nav-arrow--prev {
  left: -64px;
}

.homepage-hero__nav-arrow--next {
  right: -64px;
}

@media (max-width: 1200px) {
  .homepage-hero__nav-arrow--prev {
    left: 1rem;
  }

  .homepage-hero__nav-arrow--next {
    right: 1rem;
  }
}

/* AI Indicator */
.homepage-hero__ai-indicator {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.homepage-hero__ai-indicator.active {
  opacity: 1;
  transform: translateY(0);
}

.homepage-hero__ai-icon {
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
}

.homepage-hero__ai-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(250, 249, 247, 0.9);
}

/* Scroll Indicator */
.homepage-hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 249, 247, 0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.homepage-hero__scroll-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Portfolio Showcase Grid */
.homepage-portfolio-showcase {
  padding: 8rem 2rem; /* pt-32 top, py-32 equivalent */
  background: #0c0a09; /* bg-stone-900 */
  position: relative;
  overflow: hidden;
  padding-top: 8rem; /* pt-32 - massive padding for clean transition */
}

/* Remove gradient overlay - clean hard cut */

.homepage-portfolio-showcase__container {
  max-width: 1280px; /* max-w-7xl */
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1rem;
}

.homepage-portfolio-showcase__header {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.homepage-portfolio-showcase__header-content {
  text-align: left;
  max-width: 800px;
}

.homepage-portfolio-showcase__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.9);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.1);
  font-weight: 500;
}

.homepage-portfolio-showcase__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0; /* Remove bottom margin since wrapper handles spacing */
  color: #ffffff; /* text-white */
  letter-spacing: 0.02em;
}

.homepage-portfolio-showcase__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.homepage-portfolio-showcase__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.homepage-portfolio-showcase__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d6d3d1; /* text-stone-300 */
  max-width: 650px;
  margin: 1.5rem 0 0 0;
  line-height: 1.7;
  font-weight: 400;
}

.homepage-portfolio-showcase__headline-wrapper {
  display: flex;
  align-items: center; /* Vertically center the gold line with text */
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.homepage-portfolio-showcase__accent-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 165, 90, 0.6) 0%, transparent 100%);
  max-width: 200px;
}

/* Grid Layout - Ensures full rows */
.homepage-portfolio-showcase__grid {
  display: grid;
  grid-template-columns: 1fr; /* sm: 1 column */
  gap: 1rem; /* gap-4 */
  animation: fadeInUp 1s ease-out 0.2s both;
  align-items: start; /* Force top alignment */
}

/* Tablet: md breakpoint (2 columns) */
@media (min-width: 768px) {
  .homepage-portfolio-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start; /* Force top alignment */
  }
}

/* Desktop: lg breakpoint (3 columns) */
@media (min-width: 1024px) {
  .homepage-portfolio-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start; /* Force top alignment */
    grid-auto-rows: 1fr; /* Force equal row heights */
  }
}

@media (max-width: 767px) {
  .homepage-portfolio-showcase__grid {
    grid-template-columns: 1fr; /* sm: 1 column */
    gap: 0.75rem;
  }

  .homepage-portfolio-showcase__headline-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .homepage-portfolio-showcase__accent-line {
    max-width: 100%;
    width: 100px;
  }
}

.homepage-portfolio-showcase__card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1c1917;
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.7s ease;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  border: none;
  width: 100%;
  display: block;
  align-self: start; /* Force top alignment in grid */
}

.homepage-portfolio-showcase__card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Vary aspect ratios */
.homepage-portfolio-showcase__card--portrait {
  aspect-ratio: 3 / 4;
  height: 100%; /* Force full height */
}

.homepage-portfolio-showcase__card--landscape {
  aspect-ratio: 4 / 3;
  height: 100%; /* Force full height */
  /* Force alignment with portrait cards by matching row height */
  align-self: start; /* Align to top of grid cell */
}

.homepage-portfolio-showcase__card:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.homepage-portfolio-showcase__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.homepage-portfolio-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s ease;
  filter: brightness(0.95) contrast(0.95);
  background: #1c1917; /* Fallback background if image fails to load */
}

.homepage-portfolio-showcase__card:hover .homepage-portfolio-showcase__image {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.05);
}

.homepage-portfolio-showcase__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 0.8) 100%); /* from-black/80 to-transparent */
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 1; /* Always visible for dark mode */
  transition: opacity 0.7s ease;
  z-index: 1;
}

.homepage-portfolio-showcase__card:hover .homepage-portfolio-showcase__overlay {
  opacity: 1;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 75%,
      rgba(0, 0, 0, 0.9) 100%);
}

.homepage-portfolio-showcase__overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.homepage-portfolio-showcase__card:hover .homepage-portfolio-showcase__overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.homepage-portfolio-showcase__name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 300;
  color: #ffffff; /* text-white */
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
}

.homepage-portfolio-showcase__location {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}


/* Portfolio Lightbox Dialog */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox:not([hidden]) {
  display: flex;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.portfolio-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.portfolio-lightbox__content {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.portfolio-lightbox.is-open .portfolio-lightbox__content {
  transform: scale(1) translateY(0);
}

.portfolio-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-lightbox__close:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.portfolio-lightbox__close:active {
  transform: scale(0.95);
}

.portfolio-lightbox__header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.portfolio-lightbox__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.portfolio-lightbox__meta {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portfolio-lightbox__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-lightbox__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.portfolio-lightbox__carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio-lightbox__carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-lightbox__carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-lightbox__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.portfolio-lightbox__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s ease;
  z-index: 5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-lightbox__carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.05);
}

.portfolio-lightbox__carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.portfolio-lightbox__carousel-btn--prev {
  left: 1rem;
}

.portfolio-lightbox__carousel-btn--next {
  right: 1rem;
}

.portfolio-lightbox__carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.portfolio-lightbox__carousel-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.portfolio-lightbox__carousel-separator {
  opacity: 0.6;
}

.portfolio-lightbox__thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 165, 90, 0.3) transparent;
}

.portfolio-lightbox__thumbnails::-webkit-scrollbar {
  height: 6px;
}

.portfolio-lightbox__thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.portfolio-lightbox__thumbnails::-webkit-scrollbar-thumb {
  background: rgba(201, 165, 90, 0.3);
  border-radius: 3px;
}

.portfolio-lightbox__thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 165, 90, 0.5);
}

.portfolio-lightbox__thumbnail {
  flex: 0 0 80px;
  width: 80px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.6;
  position: relative;
}

.portfolio-lightbox__thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-lightbox__thumbnail.active {
  opacity: 1;
  border-color: var(--color-accent);
}

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

.portfolio-lightbox__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(201, 165, 90, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.1);
}

.portfolio-lightbox__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.portfolio-lightbox__info-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.portfolio-lightbox__info-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text);
}

.portfolio-lightbox__footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.portfolio-lightbox__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--color-text);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-lightbox__cta:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.3);
}

.portfolio-lightbox__cta svg {
  transition: transform 0.3s ease;
}

.portfolio-lightbox__cta:hover svg {
  transform: translateX(4px);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .portfolio-lightbox {
    padding: 0;
  }

  .portfolio-lightbox__content {
    max-height: 100vh;
    border-radius: 0;
    max-width: 100%;
  }

  .portfolio-lightbox__header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .portfolio-lightbox__title {
    font-size: 1.5rem;
  }

  .portfolio-lightbox__body {
    padding: 1.5rem;
  }

  .portfolio-lightbox__carousel {
    aspect-ratio: 3 / 4;
  }

  .portfolio-lightbox__carousel-btn {
    width: 40px;
    height: 40px;
  }

  .portfolio-lightbox__carousel-btn--prev {
    left: 0.5rem;
  }

  .portfolio-lightbox__carousel-btn--next {
    right: 0.5rem;
  }

  .portfolio-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .portfolio-lightbox__info {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
}

/* Dashboard Showcase Section */
.dashboard-showcase {
  padding: 8rem 2rem;
  background: #faf9f7;
  position: relative;
  overflow: hidden;
}

.dashboard-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-showcase__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dashboard-showcase__header {
  text-align: center;
  margin-bottom: 4rem;
}

.dashboard-showcase__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.dashboard-showcase__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-showcase__title-fashion {
  font-weight: 300;
}

.dashboard-showcase__title-ai {
  font-weight: 700;
  color: rgba(201, 165, 90, 0.9);
}

.dashboard-showcase__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.dashboard-showcase__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.dashboard-showcase__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Tab Switcher */
.dashboard-showcase__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 0;
}

.dashboard-showcase__tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: -1px;
}

.dashboard-showcase__tab:hover {
  color: #0f172a;
}

.dashboard-showcase__tab--active {
  color: #0f172a;
  border-bottom-color: rgba(201, 165, 90, 0.8);
}

.dashboard-showcase__tab svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.dashboard-showcase__content {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Side-by-Side Browser Windows Layout */
.dashboard-showcase__comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .dashboard-showcase__comparison {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

/* Browser Window Frame */
.browser-window {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 700px; /* Fixed height for scrollable content */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.browser-window__header {
  background: #f5f5f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.browser-window__controls {
  display: flex;
  gap: 0.5rem;
}

.browser-window__control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.browser-window__control--close {
  background: #ff5f57;
}

.browser-window__control--minimize {
  background: #ffbd2e;
}

.browser-window__control--maximize {
  background: #28ca42;
}

.browser-window__address-bar {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
  font-family: var(--font-sans);
}

.browser-window__address-bar svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
}

.browser-window__content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  position: relative;
}

.browser-window__content::-webkit-scrollbar {
  width: 8px;
}

.browser-window__content::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.browser-window__content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.browser-window__content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Dashboard Preview - Actual UI - Ensure dashboard CSS applies */
.dashboard-preview {
  padding: 2rem;
  min-height: 100%;
  background: #faf9f7;
  font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif);
}

.dashboard-preview--talent {
  background: #faf9f7;
}

.dashboard-preview--agency {
  background: #faf9f7;
}

/* Override any conflicting styles to ensure dashboard components render correctly */
.dashboard-preview .dash-hero {
  margin-bottom: 60px;
  padding: 0;
}

.dashboard-preview .dash-grid {
  padding: 0 0 48px 0;
  max-width: 100%;
  margin: 0;
}

.dashboard-preview .dash-sidebar {
  position: relative;
  top: 0;
  padding: 0;
}

/* Ensure accordion works correctly */
.dashboard-preview .talent-accordion__item--expanded .talent-accordion__content,
.dashboard-preview .talent-accordion__header[aria-expanded="true"] + .talent-accordion__content {
  display: block;
}

.dashboard-preview .form-stacked {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-preview .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-preview .form-field__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-preview .form-field__input {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 6px;
  font-size: 0.9375rem;
  background: #faf9f7;
}

.dashboard-preview .media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.dashboard-preview .media-grid__item {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.dashboard-preview .media-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-preview .dash-sidebar {
  position: sticky;
  top: 1.5rem;
  align-self: start;
}

.dashboard-preview .dash-panel {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.dashboard-preview .dash-panel__header {
  margin-bottom: 1rem;
}

.dashboard-preview .dash-panel__header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-preview .profile-progress {
  padding: 1rem;
  background: rgba(201, 165, 90, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(201, 165, 90, 0.15);
  margin-bottom: 1.5rem;
}

.dashboard-preview .profile-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.dashboard-preview .profile-progress__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  font-weight: 600;
}

.dashboard-preview .profile-progress__percentage {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
}

.dashboard-preview .profile-progress__bar {
  width: 100%;
  height: 8px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.dashboard-preview .profile-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, #B8954F 100%);
  border-radius: 999px;
  transition: width 1s ease-out;
}

.dashboard-preview .profile-quick-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-preview .profile-quick-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-preview .profile-quick-stat__value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard-preview .profile-quick-stat__label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Agency Dashboard Preview Styles */
.dashboard-preview .agency-overview__greeting {
  margin-bottom: 2rem;
}

.dashboard-preview .agency-overview__greeting-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.dashboard-preview .agency-overview__greeting-subtitle {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

.dashboard-preview .agency-overview__kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.dashboard-preview .agency-overview__kpi-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.dashboard-preview .agency-overview__kpi-card--highlight {
  border-color: rgba(201, 165, 90, 0.3);
  background: rgba(201, 165, 90, 0.02);
}

.dashboard-preview .agency-overview__kpi-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dashboard-preview .agency-overview__kpi-header svg {
  color: #64748b;
}

.dashboard-preview .agency-overview__kpi-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-preview .agency-overview__kpi-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.dashboard-preview .agency-overview__kpi-subtext {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.dashboard-preview .agency-overview__kpi-trend {
  color: var(--color-accent);
  font-weight: 600;
}

.dashboard-preview .agency-overview__recent-applicants {
  margin-bottom: 2rem;
}

.dashboard-preview .agency-overview__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dashboard-preview .agency-overview__section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.dashboard-preview .agency-overview__section-link {
  font-size: 0.875rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.dashboard-preview .agency-overview__recent-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-preview .agency-overview__recent-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.dashboard-preview .agency-overview__recent-item:hover {
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateX(4px);
}

.dashboard-preview .agency-overview__recent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(15, 23, 42, 0.1);
}

.dashboard-preview .agency-overview__recent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-preview .agency-overview__recent-info {
  flex: 1;
}

.dashboard-preview .agency-overview__recent-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
}

.dashboard-preview .agency-overview__recent-meta {
  font-size: 0.8125rem;
  color: #64748b;
}

.dashboard-preview .agency-overview__recent-badges {
  display: flex;
  gap: 0.5rem;
}

.dashboard-preview .agency-overview__recent-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-preview .agency-overview__recent-badge--new {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.dashboard-preview .agency-overview__quick-actions {
  margin-bottom: 2rem;
}

.dashboard-preview .agency-overview__quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dashboard-preview .agency-overview__quick-action-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dashboard-preview .agency-overview__quick-action-card:hover {
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.dashboard-preview .agency-overview__quick-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(201, 165, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.dashboard-preview .agency-overview__quick-action-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
}

.dashboard-preview .agency-overview__quick-action-description {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.dashboard-showcase__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.dashboard-showcase__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__live-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Talent Dashboard Card - Portfolio Preview */
.dashboard-showcase__portfolio-preview {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dashboard-showcase__portfolio-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.dashboard-showcase__portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-showcase__portfolio-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__portfolio-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.dashboard-showcase__action-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.dashboard-showcase__action-btn--primary {
  background: var(--color-accent);
  color: #ffffff;
}

.dashboard-showcase__action-btn--primary:hover {
  background: #B8954F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__action-btn--secondary {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__action-btn--secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.dashboard-showcase__portfolio-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.dashboard-showcase__stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard-showcase__stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Agency Dashboard Card - Applicants List */
.dashboard-showcase__applicants-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.dashboard-showcase__applicant-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #faf9f7;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

.dashboard-showcase__applicant-item:hover {
  background: #f5f5f5;
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateX(4px);
}

.dashboard-showcase__applicant-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__applicant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-showcase__applicant-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.dashboard-showcase__applicant-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard-showcase__applicant-meta {
  font-size: 0.75rem;
  color: #64748b;
}

.dashboard-showcase__review-btn {
  padding: 0.5rem 1.25rem;
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.dashboard-showcase__review-btn:hover {
  background: #B8954F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__pipeline-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__pipeline-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.dashboard-showcase__pipeline-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard-showcase__pipeline-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.dashboard-showcase__panel {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  transition: opacity 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.dashboard-showcase__panel--agency {
  display: none;
  opacity: 0;
}

.dashboard-showcase__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dashboard-showcase__panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  border-color: rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__panel:hover::before {
  opacity: 1;
}

.dashboard-showcase__panel-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__panel-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.dashboard-showcase__panel-badge--talent {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15) 0%, rgba(201, 165, 90, 0.05) 100%);
  color: var(--color-accent);
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.dashboard-showcase__panel-badge--agency {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.dashboard-showcase__panel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__mockup {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Talent Dashboard: Sidebar + Main Layout */
.dashboard-showcase__panel--talent .dashboard-showcase__mockup {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.dashboard-showcase__sidebar {
  position: sticky;
  top: 2rem;
}

.dashboard-showcase__profile-status {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.dashboard-showcase__status-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-showcase__quick-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__quick-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-showcase__quick-stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard-showcase__quick-stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-showcase__completion-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__completion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
}

.dashboard-showcase__completion-item--complete {
  color: #0f172a;
}

.dashboard-showcase__completion-icon {
  width: 16px;
  height: 16px;
  color: #10B981;
  flex-shrink: 0;
}

.dashboard-showcase__completion-label {
  flex: 1;
}

/* Talent Dashboard: Accordion */
.dashboard-showcase__accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-showcase__accordion-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dashboard-showcase__accordion-item:hover {
  border-color: rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__accordion-item--expanded {
  border-color: rgba(201, 165, 90, 0.4);
}

.dashboard-showcase__accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.dashboard-showcase__accordion-header:hover {
  background: rgba(15, 23, 42, 0.02);
}

.dashboard-showcase__accordion-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}

.dashboard-showcase__accordion-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.dashboard-showcase__accordion-status {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-showcase__accordion-status--complete {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.dashboard-showcase__accordion-chevron {
  width: 20px;
  height: 20px;
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dashboard-showcase__accordion-item--expanded .dashboard-showcase__accordion-chevron {
  transform: rotate(180deg);
}

.dashboard-showcase__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.dashboard-showcase__accordion-item--expanded .dashboard-showcase__accordion-content {
  max-height: 1000px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.dashboard-showcase__form-preview {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-showcase__form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-showcase__form-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-showcase__form-value {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #0f172a;
  padding: 0.5rem 0.75rem;
  background: #faf9f7;
  border-radius: 6px;
}

/* Talent Dashboard Styles */
.dashboard-showcase__talent-hero {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.dashboard-showcase__talent-image {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__talent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-showcase__talent-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-showcase__talent-name-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dashboard-showcase__talent-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__talent-location {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

.dashboard-showcase__talent-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dashboard-showcase__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-showcase__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 600;
}

.dashboard-showcase__stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  position: relative;
  min-height: 1.2em;
  display: inline-block;
}

.dashboard-showcase__stat-value--complete {
  color: #10B981;
}

/* Skeleton Loading State */
.stat-counter-skeleton {
  display: inline-block;
  width: 2em;
  height: 1em;
  background: linear-gradient(90deg, 
    rgba(201, 165, 90, 0.1) 0%, 
    rgba(201, 165, 90, 0.2) 50%, 
    rgba(201, 165, 90, 0.1) 100%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.stat-counter-skeleton.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.dashboard-showcase__talent-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.dashboard-showcase__progress {
  padding: 1rem;
  background: rgba(201, 165, 90, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(201, 165, 90, 0.15);
}

.dashboard-showcase__progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.dashboard-showcase__progress-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  font-weight: 600;
}

.dashboard-showcase__progress-percentage {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
}

.dashboard-showcase__progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.dashboard-showcase__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, #B8954F 100%);
  border-radius: 999px;
  transition: width 1s ease-out;
  box-shadow: 0 2px 4px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.dashboard-showcase__accordion-content .dashboard-showcase__media-grid {
  margin-top: 0.5rem;
}

.dashboard-showcase__media-item {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__media-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}

.dashboard-showcase__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-showcase__analytics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dashboard-showcase__analytics-card {
  padding: 1.25rem;
  background: rgba(201, 165, 90, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.15);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dashboard-showcase__analytics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.1), transparent);
  transition: left 0.6s ease;
}

.dashboard-showcase__analytics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.25);
  border-color: rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__analytics-card:hover::before {
  left: 100%;
}

.dashboard-showcase__analytics-card[data-analytics-card] {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.dashboard-showcase__analytics-card[data-analytics-card]:nth-child(1) {
  animation-delay: 0.1s;
}

.dashboard-showcase__analytics-card[data-analytics-card]:nth-child(2) {
  animation-delay: 0.2s;
}

.dashboard-showcase__analytics-card[data-analytics-card]:nth-child(3) {
  animation-delay: 0.3s;
}

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

.dashboard-showcase__analytics-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dashboard-showcase__analytics-card:hover .dashboard-showcase__analytics-icon {
  transform: scale(1.1) rotate(5deg);
}

.dashboard-showcase__analytics-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1;
  display: block;
}

.dashboard-showcase__analytics-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.dashboard-showcase__analytics-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 500;
  margin-top: 0.5rem;
}

.dashboard-showcase__analytics-trend svg {
  width: 14px;
  height: 14px;
  color: #10B981;
}

/* Agency Dashboard Styles */
.dashboard-showcase__filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__filter-group {
  flex: 1;
  min-width: 120px;
}

.dashboard-showcase__filter-input,
.dashboard-showcase__filter-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 6px;
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-sans);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__filter-input:focus,
.dashboard-showcase__filter-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.1);
}

.dashboard-showcase__talent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dashboard-showcase__talent-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__talent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.dashboard-showcase__talent-card-image {
  position: relative;
  aspect-ratio: 3/4;
  background: #f5f5f5;
  overflow: hidden;
}

.dashboard-showcase__talent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-showcase__talent-card-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.dashboard-showcase__badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-showcase__badge--pro {
  background: linear-gradient(135deg, var(--color-accent) 0%, #B8954F 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__badge--pending {
  background: rgba(251, 191, 36, 0.2);
  color: #F59E0B;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.dashboard-showcase__badge--accepted {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.dashboard-showcase__talent-card-content {
  padding: 1.25rem;
}

.dashboard-showcase__talent-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__talent-card-stats {
  font-size: 0.75rem;
  color: #475569;
  margin: 0 0 0.75rem 0;
}

.dashboard-showcase__talent-card-bio {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.dashboard-showcase__talent-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}


/* Agency Hero Showcase */
.dashboard-showcase__agency-hero {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.05) 0%, rgba(201, 165, 90, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.15);
  margin-bottom: 1rem;
}

.dashboard-showcase__agency-hero-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dashboard-showcase__agency-hero-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dashboard-showcase__agency-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #B8954F 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__agency-info {
  flex: 1;
}

.dashboard-showcase__agency-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.dashboard-showcase__agency-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__badge--verified {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.625rem;
  padding: 0.25rem 0.625rem;
}

.dashboard-showcase__agency-subtitle {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

.dashboard-showcase__agency-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__agency-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-showcase__agency-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-serif);
}

.dashboard-showcase__agency-stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 600;
}

/* Agency Info Panel */
.dashboard-showcase__agency-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-showcase__agency-info-card {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__agency-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__agency-info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dashboard-showcase__agency-info-content {
  flex: 1;
}

.dashboard-showcase__agency-info-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-showcase__agency-info-text {
  font-size: 0.75rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

/* Agency Dashboard: Greeting */
.dashboard-showcase__agency-greeting {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__agency-greeting-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__agency-greeting-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

/* Agency Dashboard: KPI Cards */
.dashboard-showcase__kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.dashboard-showcase__kpi-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.dashboard-showcase__kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__kpi-card--highlight {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.02) 100%);
  border-color: rgba(201, 165, 90, 0.2);
}

.dashboard-showcase__kpi-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dashboard-showcase__kpi-header svg {
  width: 24px;
  height: 24px;
  color: #64748b;
  stroke-width: 1.5;
}

.dashboard-showcase__kpi-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-showcase__kpi-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dashboard-showcase__kpi-subtext {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
}

.dashboard-showcase__kpi-trend {
  color: #10B981;
  font-weight: 500;
}

/* Agency Dashboard: Recent Applicants */
.dashboard-showcase__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dashboard-showcase__section-title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.dashboard-showcase__section-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(201, 165, 90, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.dashboard-showcase__section-link:hover {
  color: rgba(201, 165, 90, 1);
}

.dashboard-showcase__recent-applicants {
  margin-bottom: 2rem;
}

.dashboard-showcase__recent-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-showcase__recent-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dashboard-showcase__recent-item:hover {
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateX(4px);
}

.dashboard-showcase__recent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.dashboard-showcase__recent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-showcase__recent-info {
  flex: 1;
  min-width: 0;
}

.dashboard-showcase__recent-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
}

.dashboard-showcase__recent-meta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.dashboard-showcase__recent-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dashboard-showcase__recent-badge {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
}

.dashboard-showcase__recent-badge--match {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
}

/* Agency Dashboard: Quick Actions */
.dashboard-showcase__quick-actions {
  margin-bottom: 1rem;
}

.dashboard-showcase__quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dashboard-showcase__quick-action-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.dashboard-showcase__quick-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  border-color: rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__quick-action-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
  color: rgba(201, 165, 90, 1);
}

.dashboard-showcase__quick-action-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.dashboard-showcase__quick-action-content {
  flex: 1;
  min-width: 0;
}

.dashboard-showcase__quick-action-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
}

.dashboard-showcase__quick-action-description {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.dashboard-showcase__quick-action-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.9);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
}

/* Agency Dashboard Stats */
.dashboard-showcase__agency-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-showcase__agency-stat-card {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__agency-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__agency-stat-card--highlight {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.02) 100%);
  border-color: rgba(201, 165, 90, 0.2);
}

.dashboard-showcase__agency-stat-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dashboard-showcase__agency-stat-card-content {
  flex: 1;
}

.dashboard-showcase__agency-stat-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-serif);
  margin-bottom: 0.125rem;
}

.dashboard-showcase__agency-stat-card-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 600;
}

/* Kanban Board Preview */
.dashboard-showcase__kanban {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dashboard-showcase__kanban-column {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
}

.dashboard-showcase__kanban-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__kanban-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.dashboard-showcase__kanban-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 0.5rem;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__kanban-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-showcase__kanban-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-showcase__kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__kanban-card-image {
  position: relative;
  aspect-ratio: 3/4;
  background: #f5f5f5;
  overflow: hidden;
}

.dashboard-showcase__kanban-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-showcase__kanban-card-score {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #B8954F 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(201, 165, 90, 0.4);
  line-height: 1;
}

.dashboard-showcase__kanban-card-content {
  padding: 0.75rem;
}

.dashboard-showcase__kanban-card-name {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 300;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
  letter-spacing: 0.02em;
}

.dashboard-showcase__kanban-card-meta {
  font-size: 0.625rem;
  color: #475569;
  margin: 0 0 0.5rem 0;
}

.dashboard-showcase__kanban-card-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.dashboard-showcase__tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-showcase__tag--purple {
  background: rgba(139, 92, 246, 0.15);
  color: #8B5CF6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.dashboard-showcase__tag--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.dashboard-showcase__tag--green {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Completion Checklist */
.dashboard-showcase__completion-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-showcase__completion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #475569;
}

.dashboard-showcase__completion-item--complete {
  color: #10B981;
}

.dashboard-showcase__completion-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dashboard-showcase__completion-label {
  font-weight: 500;
}


/* Buttons */
.dashboard-showcase__button {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dashboard-showcase__button--primary {
  background: var(--color-accent);
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.2);
}

.dashboard-showcase__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__button--secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid rgba(201, 165, 90, 0.4);
}

.dashboard-showcase__button--secondary:hover {
  border-color: rgba(201, 165, 90, 0.6);
  background: rgba(201, 165, 90, 0.05);
}

.dashboard-showcase__button--accent {
  background: #10B981;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.dashboard-showcase__button--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* CTA Section */
.dashboard-showcase__cta {
  text-align: center;
  margin-top: 3rem;
}

.dashboard-showcase__cta-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0 0 1rem 0;
}

.dashboard-showcase__cta-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.dashboard-showcase__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.dashboard-showcase__cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dashboard-showcase__cta-link--talent {
  background: rgba(201, 165, 90, 0.1);
  color: rgba(201, 165, 90, 1);
  border: 1px solid rgba(201, 165, 90, 0.3);
}

.dashboard-showcase__cta-link--talent:hover {
  background: rgba(201, 165, 90, 0.15);
  border-color: rgba(201, 165, 90, 0.5);
}

.dashboard-showcase__cta-link--agency {
  background: #ffffff;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.dashboard-showcase__cta-link--agency:hover {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dashboard-showcase__panel--talent .dashboard-showcase__mockup {
    grid-template-columns: 1fr;
  }

  .dashboard-showcase__sidebar {
    position: static;
  }

  .dashboard-showcase__kpi-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-showcase__quick-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dashboard-showcase {
    padding: 6rem 1.5rem;
  }

  .dashboard-showcase__header {
    margin-bottom: 3rem;
  }

  .dashboard-showcase__panel {
    padding: 1.5rem;
  }

  .dashboard-showcase__talent-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dashboard-showcase__talent-image {
    max-width: 200px;
    margin: 0 auto;
  }

  .dashboard-showcase__media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-showcase__analytics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .dashboard-showcase__analytics-card {
    padding: 1rem;
  }
  
  .dashboard-showcase__analytics-value {
    font-size: 1.5rem;
  }

  .dashboard-showcase__filters {
    flex-direction: column;
  }

  .dashboard-showcase__filter-group {
    min-width: 100%;
  }

  .dashboard-showcase__cta-links {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-showcase__cta-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dashboard-showcase {
    padding: 4rem 1.25rem;
  }

  .dashboard-showcase__title {
    font-size: 2rem;
  }

  .dashboard-showcase__panel-title {
    font-size: 1.25rem;
  }

  .dashboard-showcase__talent-name {
    font-size: 1.25rem;
  }

  .dashboard-showcase__media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* How It Works Section */
.homepage-how-it-works {
  padding: 8rem 2rem;
  background: #faf9f7;
  position: relative;
  overflow: hidden;
}

.homepage-how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 165, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.homepage-how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.homepage-how-it-works__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.homepage-how-it-works__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.homepage-how-it-works__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.homepage-how-it-works__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.homepage-how-it-works__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.homepage-how-it-works__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

.homepage-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 0;
}

/* Horizontal dashed gold line connector behind content */
.homepage-how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1px dashed rgba(201, 165, 90, 0.4);
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.homepage-how-it-works__step {
  position: relative;
  z-index: 1;
}

.homepage-how-it-works__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

/* Massive watermark number behind content */
.homepage-how-it-works__step-number-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 8rem; /* text-8xl */
  font-weight: 300;
  color: #f5f5f4; /* text-stone-100 */
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  opacity: 0.6;
}

/* Icon wrapper - floating on top of watermark */
.homepage-how-it-works__step-icon-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.homepage-how-it-works__step-icon {
  width: 64px;
  height: 64px;
  color: rgba(201, 165, 90, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-how-it-works__step:hover .homepage-how-it-works__step-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201, 165, 90, 0.25);
}

.homepage-how-it-works__step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.homepage-how-it-works__step-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0 auto;
  max-width: 280px;
  position: relative;
  z-index: 2;
}

/* Responsive: How It Works */
@media (max-width: 1024px) {
  .homepage-how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem 0;
  }

  .homepage-how-it-works__steps::before {
    top: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: 100%;
    border-top: none;
    border-left: 1px dashed rgba(201, 165, 90, 0.4);
    transform: translateX(-50%);
  }

  .homepage-how-it-works__step-number-watermark {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .homepage-how-it-works {
    padding: 4rem 1.5rem 3rem;
  }

  .homepage-how-it-works__header {
    margin-bottom: 3rem;
  }

  .homepage-how-it-works__step {
    padding: 1.5rem 1rem;
  }
}

/* Agency Partnership Section */
.homepage-agency {
  padding: 8rem 2rem;
  background: #faf9f7;
  position: relative;
  overflow: visible; /* Allow rotated card to show fully */
}

.homepage-agency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.2), transparent);
}

.homepage-agency::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.homepage-agency__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible; /* Ensure rotated elements aren't clipped */
}

/* Editorial Header */
.homepage-agency__header {
  text-align: center;
  margin-bottom: 5rem;
}

.homepage-agency__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.homepage-agency__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.homepage-agency__headline-main {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.homepage-agency__headline-accent {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.homepage-agency__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.homepage-agency__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.homepage-agency__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Split Layout */
.homepage-agency__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Dashboard Preview */
.homepage-agency__visual {
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
  overflow: visible; /* Ensure card isn't clipped */
  padding: 2rem; /* Add padding to prevent clipping from rotation */
}

.homepage-agency__visual:hover {
  transform: translateY(-4px);
}

.homepage-agency__dashboard-preview {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  transform: rotate(-1deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  display: block;
}

.homepage-agency__visual:hover .homepage-agency__dashboard-preview {
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.15);
}

.homepage-agency__dashboard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.homepage-agency__dashboard-controls {
  display: flex;
  gap: 0.5rem;
}

.homepage-agency__dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
}

.homepage-agency__dashboard-dot--red {
  background: #ef4444;
}

.homepage-agency__dashboard-dot--yellow {
  background: #f59e0b;
}

.homepage-agency__dashboard-dot--green {
  background: #10b981;
}

.homepage-agency__dashboard-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-left: auto;
}

.homepage-agency__dashboard-content {
  padding: 2rem;
  background: #fafbfc;
}

/* Kanban Board */
.homepage-agency__kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.homepage-agency__kanban-column {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  min-height: 320px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.homepage-agency__kanban-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.homepage-agency__kanban-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.homepage-agency__kanban-count {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.homepage-agency__kanban-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
  cursor: pointer;
}

.homepage-agency__kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 165, 90, 0.2);
}

.homepage-agency__kanban-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.25) 0%, rgba(201, 165, 90, 0.15) 100%);
  flex-shrink: 0;
  border: 2px solid rgba(201, 165, 90, 0.1);
}

.homepage-agency__kanban-info {
  flex: 1;
  min-width: 0;
}

.homepage-agency__kanban-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.375rem;
  letter-spacing: 0.01em;
}

.homepage-agency__kanban-match {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(201, 165, 90, 1);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Features List */
.homepage-agency__features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.homepage-agency__feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.homepage-agency__feature-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 165, 90, 0.2);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.5rem;
}

.homepage-agency__feature-content {
  flex: 1;
}

.homepage-agency__feature-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.homepage-agency__feature-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(201, 165, 90, 0.4);
  transition: width 0.4s ease;
}

.homepage-agency__feature:hover .homepage-agency__feature-title::after {
  width: 60px;
}

.homepage-agency__feature-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Command Palette Demo */
.agency-command-palette-demo {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
  border: 1px solid rgba(201, 165, 90, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.agency-command-palette-demo__header {
  text-align: center;
  margin-bottom: 2rem;
}

.agency-command-palette-demo__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 0.75rem 0;
}

.agency-command-palette-demo__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0;
}

.agency-command-palette-demo__kbd {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(201, 165, 90, 0.15);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0.25rem;
}

.agency-command-palette-demo__trigger-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.agency-command-palette-demo__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.agency-command-palette-demo__trigger:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.2);
}

.agency-command-palette-demo__trigger svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.agency-command-palette-demo__shortcut {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: rgba(201, 165, 90, 0.15);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-left: auto;
}

.agency-command-palette-demo__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8rem 1rem 2rem;
  pointer-events: none;
}

.agency-command-palette-demo__modal:not([hidden]) {
  pointer-events: all;
}

.agency-command-palette-demo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.agency-command-palette-demo__modal:not([hidden]) .agency-command-palette-demo__overlay {
  opacity: 1;
}

.agency-command-palette-demo__content {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--color-bg);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  transition: all 0.2s ease;
}

.agency-command-palette-demo__modal:not([hidden]) .agency-command-palette-demo__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.agency-command-palette-demo__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.1);
}

.agency-command-palette-demo__search-icon {
  width: 20px;
  height: 20px;
  color: var(--color-muted);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.agency-command-palette-demo__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
}

.agency-command-palette-demo__input::placeholder {
  color: var(--color-muted);
}

.agency-command-palette-demo__esc {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-left: 0.75rem;
}

.agency-command-palette-demo__results {
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.agency-command-palette-demo__section {
  margin-bottom: 1rem;
}

.agency-command-palette-demo__section-header {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.agency-command-palette-demo__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.agency-command-palette-demo__item:hover,
.agency-command-palette-demo__item--active {
  background: rgba(201, 165, 90, 0.1);
  border-left-color: var(--color-accent);
}

.agency-command-palette-demo__item-icon {
  width: 18px;
  height: 18px;
  color: var(--color-muted);
  flex-shrink: 0;
}

.agency-command-palette-demo__item--active .agency-command-palette-demo__item-icon {
  color: var(--color-accent);
}

.agency-command-palette-demo__item-label {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
}

.agency-command-palette-demo__item-shortcut {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

.agency-command-palette-demo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(201, 165, 90, 0.1);
  background: rgba(15, 23, 42, 0.02);
}

.agency-command-palette-demo__hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.agency-command-palette-demo__hint kbd {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.375rem;
  background: rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .agency-command-palette-demo {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  .agency-command-palette-demo__title {
    font-size: 1.5rem;
  }
  
  .agency-command-palette-demo__modal {
    padding: 4rem 1rem 1rem;
  }
  
  .agency-command-palette-demo__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Agency Dashboard Preview */
.agency-dashboard-preview {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.agency-dashboard-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.agency-dashboard-preview__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
}

.agency-dashboard-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 165, 90, 0.15);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.agency-dashboard-preview__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.agency-dashboard-preview__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.agency-dashboard-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.agency-dashboard-preview__stat-card {
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(201, 165, 90, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.agency-dashboard-preview__stat-card:hover {
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.15);
}

.agency-dashboard-preview__stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.agency-dashboard-preview__stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.agency-dashboard-preview__stat-change {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.agency-dashboard-preview__charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.agency-dashboard-preview__chart-card {
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(201, 165, 90, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.agency-dashboard-preview__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.agency-dashboard-preview__chart-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
}

.agency-dashboard-preview__chart-period {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.agency-dashboard-preview__chart-container {
  position: relative;
}

.agency-dashboard-preview__area-chart {
  width: 100%;
  height: 120px;
}

.agency-dashboard-preview__area-path {
  transition: opacity 0.3s ease;
}

.agency-dashboard-preview__area-line {
  transition: stroke-width 0.3s ease;
}

.agency-dashboard-preview__chart-card:hover .agency-dashboard-preview__area-line {
  stroke-width: 3;
}

.agency-dashboard-preview__pie-chart {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.agency-dashboard-preview__pie-legend {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.agency-dashboard-preview__legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.agency-dashboard-preview__legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.agency-dashboard-preview__legend-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text);
}

.agency-dashboard-preview__bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agency-dashboard-preview__bar-group {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 1rem;
}

.agency-dashboard-preview__bar-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  text-align: right;
}

.agency-dashboard-preview__bar-track {
  height: 8px;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.agency-dashboard-preview__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(201, 165, 90, 0.8) 100%);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.agency-dashboard-preview__bar-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
}

@media (max-width: 1024px) {
  .agency-dashboard-preview__charts {
    grid-template-columns: 1fr;
  }
  
  .agency-dashboard-preview__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .agency-dashboard-preview {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  .agency-dashboard-preview__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .agency-dashboard-preview__title {
    font-size: 1.5rem;
  }
  
  .agency-dashboard-preview__stat-value {
    font-size: 2rem;
  }
  
  .agency-dashboard-preview__pie-chart {
    max-width: 150px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .homepage-agency__split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .homepage-agency__visual {
    order: 2;
    padding: 1.5rem; /* Reduce padding on mobile */
  }

  .homepage-agency__features {
    order: 1;
  }

  .homepage-agency__dashboard-preview {
    transform: rotate(0deg);
  }

  .homepage-agency__visual:hover .homepage-agency__dashboard-preview {
    transform: rotate(0deg) scale(1.01);
  }

  .homepage-agency__kanban {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .homepage-agency {
    padding: 6rem 1.5rem;
  }

  .homepage-agency__header {
    margin-bottom: 3rem;
  }

  .homepage-agency__split {
    gap: 3rem;
  }

  .homepage-agency__features {
    gap: 2.5rem;
    padding-top: 0;
  }

  .homepage-agency__feature {
    gap: 1.5rem;
    padding-left: 0.75rem;
  }

  .homepage-agency__feature-number {
    font-size: 2.75rem;
  }

  .homepage-agency__feature-title {
    font-size: 1.375rem;
  }

  .homepage-agency__feature-text {
    font-size: 1rem;
  }
}

/* CTA */
.homepage-agency__cta-wrapper {
  text-align: center;
  margin-top: 4rem;
}

.homepage-agency__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1) 0%, rgba(201, 165, 90, 0.9) 100%);
  color: #ffffff;
  border: 2px solid rgba(201, 165, 90, 1);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(201, 165, 90, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.homepage-agency__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.homepage-agency__cta svg {
  transition: transform 0.4s ease;
}

.homepage-agency__cta:hover {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.95) 0%, rgba(201, 165, 90, 0.85) 100%);
  border-color: rgba(201, 165, 90, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 165, 90, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.homepage-agency__cta:hover::before {
  left: 100%;
}

.homepage-agency__cta:hover svg {
  transform: translateX(4px);
}

.homepage-agency__cta-text {
  position: relative;
  z-index: 1;
}

/* Comp Card Canvas: Legacy (kept for backward compatibility, can be removed later) */
.comp-card-canvas {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
  padding: 8rem 2rem 4rem;
  margin-top: 0;
}

.comp-card-canvas__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.3) 0%, #0a0a0a 100%);
  opacity: 0.5;
}

.comp-card-canvas__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

/* Live Comp Card */
.comp-card-canvas__card {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 5.5 / 8.5;
  background: #faf9f7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  backface-visibility: hidden;
  cursor: pointer;
}

.comp-card-canvas__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* AI Indicator */
.comp-card-canvas__ai-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  color: #faf9f7;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.comp-card-canvas__card--curated .comp-card-canvas__ai-indicator,
.comp-card-canvas__card:hover .comp-card-canvas__ai-indicator {
  opacity: 1;
  transform: translateY(0);
}

.comp-card-canvas__ai-text {
  display: inline-block;
}

/* Comp Card Header */
.comp-card-canvas__header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.comp-card-canvas__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: font-weight 0.6s ease, letter-spacing 0.6s ease;
}

.comp-card-canvas__card--curated .comp-card-canvas__name {
  font-weight: 400;
  letter-spacing: 0.08em;
}

.comp-card-canvas__location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 1rem;
  transition: color 0.6s ease;
}

.comp-card-canvas__card--curated .comp-card-canvas__location {
  color: #475569;
}

.comp-card-canvas__stats {
  display: flex;
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comp-card-canvas__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.comp-card-canvas__stat-label {
  opacity: 0.65;
  font-weight: 400;
  font-size: 0.7rem;
}

.comp-card-canvas__stat {
  position: relative;
}

.comp-card-canvas__stat-value {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0f172a;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateZ(0);
  will-change: opacity, transform;
}

.comp-card-canvas__stat-value--raw {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.comp-card-canvas__stat-value--curated {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  white-space: nowrap;
}

.comp-card-canvas__card--curated .comp-card-canvas__stat-value--raw {
  opacity: 0;
  transform: translateY(-10px);
}

.comp-card-canvas__card--curated .comp-card-canvas__stat-value--curated {
  opacity: 1;
  transform: translateY(0);
  position: absolute;
}

/* Comp Card Content */
.comp-card-canvas__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  overflow: hidden;
  gap: 0.75rem;
}

/* Hero Image */
.comp-card-canvas__hero {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #e5e5e5;
  border-radius: 4px;
  transition: filter 0.6s ease, transform 0.6s ease;
}

.comp-card-canvas__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) saturate(0.9) contrast(0.95);
  transition: filter 0.6s ease;
  transform: translateZ(0);
  will-change: filter;
}

.comp-card-canvas__card--curated .comp-card-canvas__hero img {
  filter: brightness(1) saturate(1.1) contrast(1.05);
}

/* Gallery Grid */
.comp-card-canvas__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem;
  flex: 1;
  min-height: 0;
}

.comp-card-canvas__gallery-item {
  overflow: hidden;
  background: #e5e5e5;
  border-radius: 4px;
  position: relative;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.comp-card-canvas__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) saturate(0.9);
  transition: filter 0.6s ease;
  transform: translateZ(0);
  will-change: filter;
}

.comp-card-canvas__card--curated .comp-card-canvas__gallery-item img {
  filter: brightness(1) saturate(1.05);
}

/* Bio Section */
.comp-card-canvas__bio {
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  position: relative;
  min-height: 60px;
}

.comp-card-canvas__bio-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #475569;
  margin: 0;
  position: absolute;
  top: 0.75rem;
  left: 0;
  right: 0;
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.6s ease, line-height 0.6s ease;
  transform: translateZ(0);
  will-change: opacity, transform;
}

.comp-card-canvas__bio-text--raw {
  opacity: 1;
  transform: translateY(0);
  color: #64748b;
  line-height: 1.5;
}

.comp-card-canvas__bio-text--curated {
  opacity: 0;
  transform: translateY(10px);
  color: #475569;
  line-height: 1.7;
}

.comp-card-canvas__card--curated .comp-card-canvas__bio-text--raw {
  opacity: 0;
  transform: translateY(-10px);
}

.comp-card-canvas__card--curated .comp-card-canvas__bio-text--curated {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Section */
.comp-card-canvas__cta {
  text-align: center;
  z-index: 3;
}

.comp-card-canvas__cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #faf9f7;
  background: transparent;
  border: 1px solid rgba(250, 249, 247, 0.3);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.comp-card-canvas__cta-button:hover {
  background: #faf9f7;
  color: #0a0a0a;
  border-color: #faf9f7;
}

.comp-card-canvas__cta-hint {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(250, 249, 247, 0.6);
  margin-top: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Value Proposition Section */
.homepage-value-prop {
  position: relative;
  padding: 6rem 2rem 8rem 2rem; /* py-24 top, pb-32 bottom */
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  text-align: center;
  overflow: hidden;
  padding-bottom: 8rem; /* pb-32 - massive padding for clean transition */
}

.homepage-value-prop__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Visual Connector - Vertical dashed line */
.homepage-value-prop__connector {
  width: 1px;
  height: 100px;
  border-left: 1px dashed #e7e5e4; /* border-stone-200 */
  margin: 0 auto 4rem;
  position: relative;
}

.homepage-value-prop__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.homepage-value-prop__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.homepage-value-prop__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.homepage-value-prop__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.homepage-value-prop__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.homepage-value-prop__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto 3rem;
  position: relative;
}

.homepage-value-prop__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Talent/Agency Differentiation */
.homepage-value-prop__differentiation {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.homepage-value-prop__differentiation-card {
  flex: 1;
  max-width: 360px;
  padding: 3rem 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.homepage-value-prop__differentiation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -16px rgba(15, 23, 42, 0.15);
  border-color: rgba(201, 165, 90, 0.15);
}

.homepage-value-prop__differentiation-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 90, 0.05);
  border: 1px solid rgba(201, 165, 90, 0.15);
  border-radius: 16px;
  color: rgba(201, 165, 90, 1);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.homepage-value-prop__differentiation-card:hover .homepage-value-prop__differentiation-icon {
  background: rgba(201, 165, 90, 0.08);
  border-color: rgba(201, 165, 90, 0.25);
}

.homepage-value-prop__differentiation-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.01em;
}

.homepage-value-prop__differentiation-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Zig-Zag Feature List */
.homepage-value-prop__zigzag {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.homepage-value-prop__zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 400px;
}

.homepage-value-prop__zigzag-row--text-left {
  /* Text Left, Visual Right - default order */
}

.homepage-value-prop__zigzag-row--visual-left {
  /* Visual Left, Text Right - reverse order */
}

.homepage-value-prop__zigzag-row--visual-left .homepage-value-prop__zigzag-visual {
  order: 1;
}

.homepage-value-prop__zigzag-row--visual-left .homepage-value-prop__zigzag-content {
  order: 2;
}

.homepage-value-prop__zigzag-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage-value-prop__zigzag-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.25rem); /* text-3xl */
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* First feature headline - larger */
.homepage-value-prop__zigzag-title--first {
  font-size: clamp(2.25rem, 4vw, 2.5rem); /* text-4xl */
}

.homepage-value-prop__zigzag-description {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
}

.homepage-value-prop__zigzag-description--narrow {
  max-width: 28rem; /* max-w-md */
  line-height: 1.75; /* leading-relaxed */
}

.homepage-value-prop__zigzag-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 300px;
}

.homepage-value-prop__zigzag-visual-shape {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.homepage-value-prop__zigzag-visual-shape::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.homepage-value-prop__zigzag-row:hover .homepage-value-prop__zigzag-visual-shape::before {
  opacity: 1;
}

.homepage-value-prop__zigzag-visual-shape--1 {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.1) 0%, rgba(201, 165, 90, 0.05) 100%);
}

.homepage-value-prop__zigzag-visual-shape--2 {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.03) 100%);
  transform: scale(0.95);
}

.homepage-value-prop__zigzag-visual-shape--3 {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.06) 100%);
  transform: scale(1.05);
}

.homepage-value-prop__zigzag-row:hover .homepage-value-prop__zigzag-visual-shape {
  transform: scale(1.05) rotate(5deg);
}

.homepage-value-prop__zigzag-row:hover .homepage-value-prop__zigzag-visual-shape--2 {
  transform: scale(1) rotate(-5deg);
}

.homepage-value-prop__zigzag-row:hover .homepage-value-prop__zigzag-visual-shape--3 {
  transform: scale(1.1) rotate(5deg);
}

.homepage-value-prop__zigzag-visual-inner {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  color: rgba(201, 165, 90, 1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.homepage-value-prop__zigzag-row:hover .homepage-value-prop__zigzag-visual-inner {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transform: scale(1.1);
}

/* Floating UI Card for Stats Grid */
.homepage-value-prop__stats-card {
  width: 320px;
  background: #ffffff;
  border-radius: 12px; /* rounded-xl */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
  transform: rotate(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.homepage-value-prop__zigzag-row:hover .homepage-value-prop__stats-card {
  transform: rotate(2deg) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.homepage-value-prop__stats-card-header {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.homepage-value-prop__stats-card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
}

.homepage-value-prop__stats-card-dot:first-child {
  background: #ef4444;
}

.homepage-value-prop__stats-card-dot:nth-child(2) {
  background: #f59e0b;
}

.homepage-value-prop__stats-card-dot:nth-child(3) {
  background: #10b981;
}

.homepage-value-prop__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}

.homepage-value-prop__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.homepage-value-prop__stat-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem; /* text-[9px] */
  color: #9ca3af; /* text-gray-400 */
  text-transform: uppercase;
  letter-spacing: 0.2em; /* tracking-widest */
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.homepage-value-prop__stat-value {
  font-family: var(--font-serif);
  font-size: 1rem; /* text-base */
  color: #0f172a; /* text-black */
  font-weight: 400;
}

@media (max-width: 1024px) {
  .homepage-value-prop__zigzag-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .homepage-value-prop__zigzag-row--visual-left .homepage-value-prop__zigzag-visual {
    order: 1;
  }

  .homepage-value-prop__zigzag-row--visual-left .homepage-value-prop__zigzag-content {
    order: 2;
  }

  .homepage-value-prop__zigzag-visual {
    min-height: 250px;
  }

  .homepage-value-prop__zigzag-visual-shape {
    width: 240px;
    height: 240px;
  }

  .homepage-value-prop__zigzag-description {
    max-width: 100%;
  }

  .homepage-value-prop__stats-card {
    width: 280px;
    transform: rotate(1deg);
  }
}

@media (max-width: 1024px) {
  .homepage-value-prop__differentiation {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .homepage-value-prop__benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .homepage-value-prop {
    padding: 6rem 1.5rem 4rem;
  }

  .homepage-value-prop__differentiation {
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .homepage-value-prop__differentiation-card {
    max-width: 100%;
    padding: 2.5rem 2rem;
  }

  .homepage-value-prop__benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .homepage-value-prop__benefit-card {
    padding: 2rem 1.75rem;
  }
}

/* Interactive Feature Cards */
.feature-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card__icon {
  transition: transform 0.3s ease;
}

.feature-card__content {
  position: relative;
  flex: 1;
}

.feature-card__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    margin-top 0.3s ease;
  margin-top: 0;
}

.feature-card__details p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
  padding-top: 0.75rem;
}

.feature-card.expanded .feature-card__details {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.75rem;
}

.feature-card__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0.375rem 0.875rem;
  background: var(--color-accent);
  color: white;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.feature-card:hover .feature-card__badge,
.feature-card.expanded .feature-card__badge {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
}

/* Tooltip */
.feature-card__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  color: white;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(15, 23, 42, 0.95);
}

.feature-card:hover .feature-card__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.homepage-value-prop__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.04) 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.homepage-value-prop__benefit:hover {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.06) 100%);
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.15);
}

.homepage-value-prop__benefit-icon {
  font-size: 1.25rem;
  display: block;
}

.homepage-value-prop__benefit-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .homepage-value-prop__benefits {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .homepage-value-prop__benefit {
    justify-content: center;
  }
}

/* Testimonials Section */
.homepage-testimonials {
  padding: 8rem 2rem;
  background: #faf9f7;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf9f7 0%, #faf9f7 100%);
  position: relative;
  overflow: hidden;
}

.homepage-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 165, 90, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201, 165, 90, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.homepage-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.homepage-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.homepage-testimonials__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, 0.8);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 20px;
  background: rgba(201, 165, 90, 0.05);
  font-weight: 500;
}

.homepage-testimonials__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.homepage-testimonials__headline-fashion {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.homepage-testimonials__headline-ai {
  display: block;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.08em;
}

.homepage-testimonials__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.homepage-testimonials__accent {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.5), transparent);
  margin: 0 auto;
  position: relative;
}

.homepage-testimonials__accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(201, 165, 90, 0.8);
  border-radius: 50%;
}

/* Trust Metrics */
.homepage-testimonials__metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.homepage-testimonials__metric {
  text-align: center;
}

.homepage-testimonials__metric-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 165, 90, 1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.homepage-testimonials__metric-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Testimonials Grid */
.homepage-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.homepage-testimonials__testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-testimonials__testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -20px rgba(15, 23, 42, 0.2);
}

.homepage-testimonials__testimonial-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.homepage-testimonials__testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 165, 90, 0.2);
}

.homepage-testimonials__testimonial-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 165, 90, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(201, 165, 90, 1);
}

.homepage-testimonials__testimonial-quote {
  margin: 0;
}

.homepage-testimonials__testimonial-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}

.homepage-testimonials__testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.homepage-testimonials__testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.homepage-testimonials__testimonial-role {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .homepage-testimonials {
    padding: 4rem 1.5rem 3rem;
  }

  .homepage-testimonials__header {
    margin-bottom: 2.5rem;
  }

  .homepage-testimonials__metrics {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .homepage-testimonials__metric-value {
    font-size: 2rem;
  }

  .homepage-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .homepage-testimonials__testimonial {
    padding: 2rem;
  }
}

.homepage-testimonials__content {
  animation: fadeInUp 1s ease-out;
}

.testimonial__image-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.testimonial__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(201, 165, 90, 0.3);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.2);
}

.testimonial {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(201, 165, 90, 0.15);
  line-height: 1;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: #0f172a;
  margin: 0 0 3rem 0;
  letter-spacing: 0.01em;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.testimonial__name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(201, 165, 90, 1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial__role {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #475569;
  letter-spacing: 0.02em;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}

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

.testimonial-carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.testimonial-carousel__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-carousel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.testimonial__image-wrapper {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.testimonial__badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial__badge--agency {
  background: var(--color-accent);
  color: white;
}

.testimonial__badge--talent {
  background: rgba(201, 165, 90, 0.15);
  color: var(--color-accent);
  border: 1px solid rgba(201, 165, 90, 0.3);
}

.testimonial__company-logo {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.testimonial__company-logo--talent {
  color: var(--color-accent);
  font-weight: 600;
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-carousel__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-carousel__btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.testimonial-carousel__btn:active {
  transform: scale(0.95);
}

.testimonial-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.testimonial-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 165, 90, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-carousel__dot:hover {
  background: rgba(201, 165, 90, 0.5);
  transform: scale(1.2);
}

.testimonial-carousel__dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

/* Final CTA Section */
/* Pricing Section - Clean Modern Design */
.pricing-section {
  padding: 6rem 2rem;
  background: #faf9f7;
  position: relative;
}

.pricing-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.pricing-section__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Comparison Table */
.comparison-table-wrapper {
  max-width: 1000px;
  margin: 3rem auto 0;
  overflow-x: auto;
  padding: 0 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.15);
}

.comparison-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.05) 0%, rgba(201, 165, 90, 0.02) 100%);
  border-bottom: 2px solid rgba(201, 165, 90, 0.2);
}

.comparison-table__header-cell {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.comparison-table__header-cell--feature {
  text-align: left;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.comparison-table__plan-badge {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-table__plan-badge--free {
  background: rgba(15, 23, 42, 0.1);
  color: var(--color-text);
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.comparison-table__plan-badge--pro {
  background: var(--color-accent);
  color: white;
  border: 1px solid var(--color-accent);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.comparison-table__plan-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.comparison-table__plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.comparison-table__price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
}

.comparison-table__price-period {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.comparison-table__popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.875rem;
  background: var(--color-accent);
  color: white;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.comparison-table__body {
  display: flex;
  flex-direction: column;
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(201, 165, 90, 0.1);
  transition: background 0.2s ease;
  position: relative;
}

.comparison-table__row:last-child {
  border-bottom: none;
}

.comparison-table__row:hover {
  background: rgba(201, 165, 90, 0.03);
}

.comparison-table__row--highlight {
  background: rgba(201, 165, 90, 0.05);
}

.comparison-table__row--highlight:hover {
  background: rgba(201, 165, 90, 0.08);
}

.comparison-table__cell {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
}

.comparison-table__cell--feature {
  justify-content: flex-start;
  gap: 0.5rem;
  position: relative;
}

.comparison-table__feature-name {
  font-weight: 500;
  color: var(--color-text);
}

.comparison-table__tooltip-trigger {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(201, 165, 90, 0.3);
  border-radius: 50%;
  cursor: help;
  color: var(--color-muted);
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.comparison-table__tooltip-trigger:hover {
  background: rgba(201, 165, 90, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.1);
}

.comparison-table__check {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-table__cross {
  color: var(--color-muted);
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.4;
}

.comparison-table__footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.03) 0%, rgba(201, 165, 90, 0.01) 100%);
  border-top: 2px solid rgba(201, 165, 90, 0.15);
}

.comparison-table__footer-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-table__cta {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.comparison-table__cta--free {
  background: var(--color-text);
  color: white;
}

.comparison-table__cta--free:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.comparison-table__cta--pro {
  background: var(--color-accent);
  color: white;
}

.comparison-table__cta--pro:hover {
  background: rgba(201, 165, 90, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.3);
}

/* Tooltip for comparison table */
.comparison-table__row-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  color: white;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  white-space: normal;
  max-width: 250px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-8px);
}

.comparison-table__row-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 1.5rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(15, 23, 42, 0.95);
}

.comparison-table__row:hover .comparison-table__row-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Comparison Table */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    margin: 2rem -1rem 0;
    padding: 0;
  }

  .comparison-table {
    border-radius: 0;
    min-width: 600px;
  }

  .comparison-table__header,
  .comparison-table__row,
  .comparison-table__footer {
    grid-template-columns: 200px 150px 180px;
  }

  .comparison-table__header-cell,
  .comparison-table__cell,
  .comparison-table__footer-cell {
    padding: 1rem 0.75rem;
  }

  .comparison-table__plan-title {
    font-size: 1rem;
  }

  .comparison-table__price-amount {
    font-size: 1.5rem;
  }
}

/* Pricing Grid */
.pricing-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.pricing-card--free {
  background: #ffffff;
}

.pricing-card--pro {
  background: #ffffff;
  border: 2px solid rgba(201, 165, 90, 0.3);
  box-shadow: 0 4px 16px rgba(201, 165, 90, 0.1);
}

.pricing-card--pro:hover {
  border-color: rgba(201, 165, 90, 0.5);
  box-shadow: 0 16px 48px rgba(201, 165, 90, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #0f172a;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 1.5rem;
}

.pricing-card__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card__price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card__price-period {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.pricing-card__description {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 2rem 0;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
}

.pricing-card__check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  margin-top: 2px;
}

.pricing-card--free .pricing-card__check-icon {
  color: #94a3b8;
}

.pricing-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  border: 2px solid transparent;
  margin-top: auto;
}

.pricing-card__button--free {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.pricing-card__button--free:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card__button--pro {
  background: var(--color-accent);
  color: #0f172a;
  border-color: var(--color-accent);
  font-weight: 700;
}

.pricing-card__button--pro:hover {
  background: rgba(201, 165, 90, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

/* Homepage Pricing Section - New Design */
.homepage-pricing {
  padding: 8rem 2rem;
  background: #faf9f7;
  position: relative;
}

.homepage-pricing__container {
  max-width: 1200px;
  margin: 0 auto;
}

.homepage-pricing__header {
  text-align: center;
  margin-bottom: 4rem;
}

.homepage-pricing__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.homepage-pricing__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

.homepage-pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Pricing Cards */
.homepage-pricing__card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.homepage-pricing__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.homepage-pricing__card--free {
  border-color: #e2e8f0;
}

.homepage-pricing__card--pro {
  border: 2px solid rgba(201, 165, 90, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, rgba(201, 165, 90, 0.02) 100%);
  box-shadow: 0 8px 32px rgba(201, 165, 90, 0.12);
  position: relative;
}

.homepage-pricing__card--pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 165, 90, 0.6) 0%, rgba(201, 165, 90, 0.9) 50%, rgba(201, 165, 90, 0.6) 100%);
  border-radius: 20px 20px 0 0;
}

.homepage-pricing__card--pro:hover {
  border-color: rgba(201, 165, 90, 0.6);
  box-shadow: 0 20px 64px rgba(201, 165, 90, 0.2);
}

/* Badges */
.homepage-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.homepage-pricing__badge--free {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.homepage-pricing__badge--pro {
  background: var(--color-accent);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

/* Card Header */
.homepage-pricing__card-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.homepage-pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.homepage-pricing__price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.04em;
}

.homepage-pricing__price-period {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.homepage-pricing__price-amount,
.homepage-pricing__price-period {
  transition: opacity 0.15s ease;
}

.homepage-pricing__billing-note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.homepage-pricing__tagline {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Features List */
.homepage-pricing__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.homepage-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.homepage-pricing__feature small {
  display: block;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  font-weight: 400;
}

.homepage-pricing__feature--limited {
  opacity: 0.8;
}

.homepage-pricing__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #94a3b8;
  margin-top: 2px;
  stroke-width: 2.5;
}

.homepage-pricing__check--pro {
  color: var(--color-accent);
}

.homepage-pricing__check--limited {
  color: #cbd5e1;
}

/* CTA Buttons */
.homepage-pricing__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  margin-top: auto;
}

.homepage-pricing__cta--free {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.homepage-pricing__cta--free:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.homepage-pricing__cta--pro {
  background: var(--color-accent);
  color: #0f172a;
  border-color: var(--color-accent);
  font-weight: 700;
}

.homepage-pricing__cta--pro:hover {
  background: rgba(201, 165, 90, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.3);
}

/* Note */
.homepage-pricing__note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 1rem 0 0 0;
}

.homepage-cta__column {
  padding: 4rem 3rem;
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  position: relative;
  overflow: visible;
}

.homepage-cta__column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(201, 165, 90, 0.3) 0%,
      rgba(201, 165, 90, 0.6) 50%,
      rgba(201, 165, 90, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.homepage-cta__column--free::before {
  background: linear-gradient(90deg,
      rgba(15, 23, 42, 0.2) 0%,
      rgba(15, 23, 42, 0.4) 50%,
      rgba(15, 23, 42, 0.2) 100%);
}

.homepage-cta__column--free {
  opacity: 0.85;
  transform: scale(0.95);
}

.homepage-cta__column--free:hover {
  opacity: 0.95;
  transform: scale(0.97) translateY(-4px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.homepage-cta__column--pro {
  background: linear-gradient(135deg,
      #ffffff 0%,
      rgba(250, 249, 247, 0.98) 25%,
      rgba(201, 165, 90, 0.08) 50%,
      rgba(250, 249, 247, 0.98) 75%,
      #ffffff 100%);
  border: 3px solid rgba(201, 165, 90, 0.4);
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(201, 165, 90, 0.25),
    0 8px 24px rgba(201, 165, 90, 0.15),
    0 0 0 1px rgba(201, 165, 90, 0.1) inset,
    0 0 80px rgba(201, 165, 90, 0.1);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
  animation: proGlow 3s ease-in-out infinite;
  overflow: visible;
  margin-top: 1rem;
}

@keyframes proGlow {

  0%,
  100% {
    box-shadow:
      0 20px 60px rgba(201, 165, 90, 0.25),
      0 8px 24px rgba(201, 165, 90, 0.15),
      0 0 0 1px rgba(201, 165, 90, 0.1) inset,
      0 0 80px rgba(201, 165, 90, 0.1);
  }

  50% {
    box-shadow:
      0 24px 70px rgba(201, 165, 90, 0.35),
      0 10px 30px rgba(201, 165, 90, 0.2),
      0 0 0 1px rgba(201, 165, 90, 0.15) inset,
      0 0 100px rgba(201, 165, 90, 0.15);
  }
}

.homepage-cta__column--pro::before {
  background: linear-gradient(135deg,
      rgba(201, 165, 90, 0.15) 0%,
      rgba(201, 165, 90, 0.25) 50%,
      rgba(201, 165, 90, 0.15) 100%);
  opacity: 0.6;
}

.homepage-cta__column--pro::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg,
      rgba(201, 165, 90, 0.3),
      rgba(201, 165, 90, 0.1),
      rgba(201, 165, 90, 0.3));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(12px);
  animation: proBorderGlow 3s ease-in-out infinite;
}

@keyframes proBorderGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

.homepage-cta__column--pro:hover {
  transform: scale(1.08) translateY(-12px);
  border-color: rgba(201, 165, 90, 0.6);
  box-shadow:
    0 30px 80px rgba(201, 165, 90, 0.4),
    0 12px 32px rgba(201, 165, 90, 0.25),
    0 0 0 1px rgba(201, 165, 90, 0.2) inset,
    0 0 120px rgba(201, 165, 90, 0.2);
}

.homepage-cta__column:hover::before {
  opacity: 1;
}

.homepage-cta__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.homepage-cta__icon--pro {
  filter: drop-shadow(0 4px 12px rgba(201, 165, 90, 0.5));
  font-size: 3.5rem;
  animation: iconFloat 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.homepage-cta__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.homepage-cta__badge--free {
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
}

.homepage-cta__popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.9));
  color: #0f172a;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  box-shadow:
    0 4px 12px rgba(201, 165, 90, 0.4),
    0 2px 6px rgba(201, 165, 90, 0.3);
  z-index: 10;
  white-space: nowrap;
  animation: popularPulse 2s ease-in-out infinite;
}

@keyframes popularPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow:
      0 4px 12px rgba(201, 165, 90, 0.4),
      0 2px 6px rgba(201, 165, 90, 0.3);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow:
      0 6px 16px rgba(201, 165, 90, 0.5),
      0 3px 8px rgba(201, 165, 90, 0.4);
  }
}

.homepage-cta__badge--pro {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.2), rgba(201, 165, 90, 0.15));
  color: rgba(201, 165, 90, 1);
  border: 2px solid rgba(201, 165, 90, 0.4);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.2);
}

.homepage-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.homepage-cta__title--pro {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  background: linear-gradient(135deg, #0f172a 0%, rgba(201, 165, 90, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
}

.homepage-cta__description {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin: 0 0 1.5rem 0;
}

.homepage-cta__description--pro {
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  color: #334155;
  font-weight: 500;
  margin-bottom: 2rem;
}

.homepage-cta__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(201, 165, 90, 0.05);
  border-radius: 8px;
}

.homepage-cta__price-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201, 165, 90, 1);
  line-height: 1;
}

.homepage-cta__price--pro {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08), rgba(201, 165, 90, 0.03));
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.2);
  position: relative;
  overflow: hidden;
}

.homepage-cta__price--pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.1), transparent);
  animation: priceShine 3s ease-in-out infinite;
}

@keyframes priceShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.homepage-cta__price-amount--pro {
  font-size: 3.5rem;
  font-weight: 400;
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(201, 165, 90, 0.3);
  position: relative;
  z-index: 1;
}

.homepage-cta__price-period {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.homepage-cta__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.homepage-cta__features li {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.homepage-cta__features li:last-child {
  margin-bottom: 0;
}

.homepage-cta__features--pro {
  margin-bottom: 2.5rem;
}

.homepage-cta__features--pro li {
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
  padding-left: 0.5rem;
  position: relative;
}

.homepage-cta__features--pro li::before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: rgba(201, 165, 90, 1);
  font-weight: 700;
  font-size: 1.125rem;
}

.homepage-cta__button {
  display: inline-block;
  padding: 1.125rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201, 165, 90, 0.4);
  color: #0f172a;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.homepage-cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(201, 165, 90, 1);
  transition: left 0.3s ease;
  z-index: -1;
}

.homepage-cta__button:hover {
  color: #0f172a;
  border-color: rgba(201, 165, 90, 0.8);
}

.homepage-cta__button:hover::before {
  left: 0;
}

.homepage-cta__button--pro {
  background: linear-gradient(135deg, rgba(201, 165, 90, 1), rgba(201, 165, 90, 0.9));
  border: 2px solid rgba(201, 165, 90, 1);
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.25rem 3rem;
  box-shadow:
    0 4px 16px rgba(201, 165, 90, 0.4),
    0 2px 8px rgba(201, 165, 90, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.homepage-cta__button--pro::before {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.95), rgba(201, 165, 90, 0.85));
}

.homepage-cta__button--pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.homepage-cta__button--pro:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 165, 90, 1);
  color: #0f172a;
  box-shadow:
    0 6px 20px rgba(201, 165, 90, 0.5),
    0 3px 10px rgba(201, 165, 90, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.homepage-cta__button--pro:hover::after {
  left: 100%;
}

.homepage-cta__button--pro:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(201, 165, 90, 0.4),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Transformation Hero Responsive */
@media (max-width: 1200px) {
  .transformation-hero__split {
    grid-template-columns: 1fr 120px 1fr;
    gap: 1.5rem;
  }

  .transformation-zone {
    max-width: 120px;
  }

  .transformation-zone__progress {
    max-width: 120px;
  }

  .transformation-zone {
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .transformation-hero__split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .transformation-hero__center {
    order: -1;
    padding-top: 0;
  }

  .transformation-zone {
    height: 260px;
  }

  .homepage-portfolio-showcase {
    padding: 6.75rem 1.75rem;
  }

  .homepage-portfolio-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .feature-demo__split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-demo__split::before,
  .feature-demo__split::after {
    display: none;
  }

  .feature-demo__portfolio-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-demo__portfolio-hero {
    height: 360px;
  }

  .feature-demo__portfolio-frame[data-state="pro"] .feature-demo__portfolio-hero {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .transformation-hero {
    padding: calc(4rem + var(--header-height, 80px)) 1rem 3rem;
    min-height: auto;
  }

  .transformation-hero__title {
    font-size: clamp(2.75rem, 10vw, 4.5rem);
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .transformation-hero__title-arrow svg {
    width: 40px;
  }

  .transformation-hero__split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .transformation-hero__center {
    order: -1;
    padding-top: 0;
  }

  .transformation-zone {
    height: 200px;
  }

  .transformation-hero__header {
    margin-bottom: 3rem;
    padding: 0;
  }

  .transformation-hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    gap: 1rem;
    flex-wrap: wrap;
  }

  .transformation-hero__title-arrow svg {
    width: 40px;
  }

  .email-draft__window {
    transform: rotate(0deg);
  }

  .email-draft__body {
    min-height: 300px;
    max-height: 350px;
    padding: 1rem;
  }

  .email-draft__body-content {
    font-size: 0.8125rem;
  }

  .email-draft__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .email-draft__attachment {
    max-width: 100%;
  }

  .email-draft__attachment-text {
    max-width: 100%;
  }

  .email-draft__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .portfolio-card__split {
    flex-direction: column;
    min-height: auto;
  }

  .portfolio-card__image-panel {
    flex: 0 0 auto;
    width: 100%;
  }

  .portfolio-card__hero-image {
    min-height: 300px;
    height: 300px;
  }

  .portfolio-card__divider {
    flex: 0 0 1px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201, 165, 90, 0.4) 10%,
        rgba(201, 165, 90, 0.6) 50%,
        rgba(201, 165, 90, 0.4) 90%,
        transparent 100%);
  }

  .portfolio-card__divider::before {
    display: none;
  }

  .portfolio-card__info-panel {
    flex: 0 0 auto;
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .portfolio-card__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .portfolio-card__name {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .portfolio-card__location {
    font-size: 0.625rem;
    padding: 0.4rem 1rem;
    margin-top: 0.75rem;
  }

  .portfolio-card__free-badge {
    top: 0.875rem;
    right: 0.875rem;
    font-size: 0.5625rem;
    padding: 0.3rem 0.75rem;
  }

  .portfolio-card__free-description {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .portfolio-card__free-description p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .portfolio-card__stats {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .portfolio-card__stat {
    flex-direction: row;
    align-items: center;
  }

  .portfolio-card__stat-label {
    font-size: 0.6rem;
    min-width: 70px;
  }

  .portfolio-card__stat-value {
    font-size: 0.9375rem;
  }

  .portfolio-card__specializations {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .portfolio-card__specialization-badge {
    font-size: 0.625rem;
    padding: 0.4rem 0.875rem;
  }

  .portfolio-card__bio-preview {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .portfolio-card__portfolio-access {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .portfolio-card__portfolio-label {
    font-size: 0.6rem;
  }

  .portfolio-card__portfolio-link {
    font-size: 0.8125rem;
  }

  .portfolio-card__contact {
    margin-top: 0;
  }

  .portfolio-card__contact-card {
    padding: 0.625rem 0.875rem;
    gap: 0.625rem;
  }

  .portfolio-card__contact-icon {
    width: 16px;
    height: 16px;
  }

  .portfolio-card__contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .portfolio-card__contact-handle {
    font-size: 0.75rem;
  }

  .portfolio-card__bio-text::first-letter {
    font-size: 3em;
  }

  .transformation-card__name-last {
    letter-spacing: 0.25em;
  }

  .transformation-card__content--editorial {
    padding: 1.5rem;
  }

  .transformation-card__hero-image--editorial {
    height: 200px;
  }

  .transformation-card__stats--editorial {
    gap: 2rem;
    padding: 1.5rem 0;
  }

  .transformation-card__stat--editorial:not(:last-child)::after {
    display: none;
  }

  .homepage-portfolio-showcase {
    padding: 6rem 1.5rem;
  }

  .homepage-portfolio-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .homepage-agency {
    padding: 6rem 1.5rem;
  }

  .homepage-agency__features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .homepage-agency__feature {
    padding: 2rem;
  }

  .homepage-agency__cta {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }

  .homepage-value-prop {
    padding: 6rem 1.5rem;
  }

  .homepage-testimonials {
    padding: 6rem 1.5rem;
  }

  .testimonial__image {
    width: 100px;
    height: 100px;
  }

  .homepage-cta {
    padding: 6rem 1.5rem;
  }

  .homepage-cta__header {
    margin-bottom: 3rem;
  }

  .pricing-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card__price-amount {
    font-size: 2.5rem;
  }

  .homepage-cta__column {
    padding: 2.5rem 2rem;
  }

  .homepage-cta__column--free {
    transform: scale(1);
    opacity: 1;
  }

  .homepage-cta__column--pro {
    transform: scale(1);
  }

  .homepage-cta__column--pro:hover {
    transform: translateY(-8px) scale(1);
  }

  .homepage-cta__popular-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1.25rem;
    top: -10px;
  }

  .homepage-cta__title--pro {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .homepage-cta__price-amount--pro {
    font-size: 2.75rem;
  }

  .homepage-cta__button--pro {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 600px) {
  .transformation-hero__header {
    text-align: left;
  }

  .transformation-hero__title {
    justify-content: flex-start;
    letter-spacing: 0.08em;
  }

  .transformation-hero__subtitle {
    font-size: 1rem;
    text-align: left;
  }

  .homepage-portfolio-showcase {
    padding: 4.75rem 1.25rem;
  }

  .homepage-portfolio-showcase__header {
    text-align: left;
    margin-bottom: 2.25rem;
  }

  .homepage-portfolio-showcase__header {
    margin-bottom: 3rem;
  }

  .homepage-portfolio-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }

  .homepage-portfolio-showcase__card {
    aspect-ratio: 2 / 3;
    border-radius: 16px;
  }
}

/* Responsive Pricing Section */
@media (max-width: 768px) {
  .pricing-section {
    padding: 4rem 1.5rem;
  }

  .pricing-section__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card__title {
    font-size: 1.5rem;
  }

  .pricing-card__price-amount {
    font-size: 2.5rem;
  }

  .homepage-pricing {
    padding: 4rem 1.5rem;
  }

  .homepage-pricing__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .homepage-pricing__card {
    padding: 2.5rem 2rem;
  }

  .homepage-pricing__price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .transformation-hero__title {
    font-size: 2.5rem;
  }

  .homepage-portfolio-showcase__grid {
    grid-template-columns: 1fr;
  }

  .homepage-agency__cta {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }

  .transformation-card__header {
    padding: 1rem;
  }

  .transformation-card__content {
    padding: 1rem;
  }

  .pricing-section {
    padding: 3rem 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card__price-amount {
    font-size: 2rem;
  }

  .homepage-pricing {
    padding: 3rem 1rem;
  }

  .homepage-pricing__card {
    padding: 2rem 1.5rem;
  }

  .homepage-pricing__price-amount {
    font-size: 2rem;
  }
}

@media (hover: none) {
  .homepage-portfolio-showcase__card:hover {
    transform: translateY(0);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  }
}
