:root {
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;
  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --tracking-tight: -0.025em;
  --tracking-snug: -0.015em;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.14em;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6rem;
  --space-12: 8rem;
  --content-narrow: 640px;
  --content-sm: 768px;
  --content-md: 960px;
  --content-lg: 1140px;
  --content-xl: 1440px;

  
  --color-primary: #038FE5;
  --color-secondary: #1f1b5c;
  --color-accent: #99BBFF;
  --color-bg: #131733;
  --color-surface: #FFFFFF;
  --color-text: #091A28;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 50%, #2a4a7c 100%);
  color: var(--color-surface);
  padding: var(--space-10) var(--space-6) var(--space-11);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 143, 229, 0.1) 100%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--content-lg);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
  max-width: 20em;
}

.hero-subtext {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 36em;
  opacity: 0.92;
}

.hero-cta-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--space-4);
}

.conversion-placeholder {
  display: inline-block;
}

.hero-subline {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: var(--weight-medium);
}

.hero-artwork-container {
  max-width: 24em;
  margin: var(--space-9) 0 0;
  display: flex;
  justify-content: flex-start;
}

.artwork-placeholder {
  display: block;
}

@media (max-width: 768px) {
  .hero {
    padding: var(--space-8) var(--space-5) var(--space-9);
  }
  .hero h1 {
    font-size: var(--text-3xl);
  }
  .hero-subtext {
    font-size: var(--text-base);
  }
}


.comparison-section {
  padding: var(--space-10) var(--space-6);
  background: var(--color-surface);
}

.comparison-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.comparison-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.comparison-header p {
  font-size: var(--text-lg);
  color: var(--color-text);
  opacity: 0.8;
  max-width: 44em;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  background: #e5e7eb;
  padding: var(--space-2);
  border-radius: 2px;
}

.comparison-card {
  background: var(--color-surface);
  padding: var(--space-7);
  border-radius: 1px;
}

.comparison-card.before {
  border-left: 4px solid #dc2626;
}

.comparison-card.after {
  border-left: 4px solid var(--color-primary);
}

.comparison-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-4);
  opacity: 0.6;
}

.comparison-card.before .comparison-label {
  color: #dc2626;
}

.comparison-card.after .comparison-label {
  color: var(--color-primary);
}

.comparison-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
  color: var(--color-bg);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
  padding-left: var(--space-6);
  position: relative;
}

.comparison-list li::before {
  content: '•';
  position: absolute;
  left: var(--space-2);
  font-weight: var(--weight-bold);
}

.comparison-card.before .comparison-list li::before {
  color: #dc2626;
}

.comparison-card.after .comparison-list li::before {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  .comparison-header h2 {
    font-size: var(--text-2xl);
  }
  .comparison-card {
    padding: var(--space-6);
  }
}


.features-section {
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(180deg, var(--color-surface) 0%, #f8f9fa 100%);
}

.features-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.features-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.features-header p {
  font-size: var(--text-lg);
  color: var(--color-text);
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-surface);
  padding: var(--space-7);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(3, 143, 229, 0.08);
  border-color: var(--color-accent);
}

.icon-placeholder {
  width: 2.5em;
  height: 2.5em;
  background: rgba(3, 143, 229, 0.08);
  border-radius: 4px;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-placeholder svg,
.icon-placeholder .icon {
  width: 55%;
  height: 55%;
}

.feature-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-bg);
  margin-bottom: var(--space-3);
}

.feature-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.8;
}

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

@media (max-width: 768px) {
  .features-section {
    padding: var(--space-8) var(--space-5);
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .features-header h2 {
    font-size: var(--text-2xl);
  }
}


.process-section {
  padding: var(--space-10) var(--space-6);
  background: var(--color-surface);
}

.process-container {
  max-width: var(--content-md);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.process-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.process-steps {
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
}

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

.step-number {
  width: 3em;
  height: 3em;
  background: var(--color-primary);
  color: var(--color-surface);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.step-content {
  padding-top: var(--space-2);
}

.step-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .process-section {
    padding: var(--space-8) var(--space-5);
  }
  .process-header h2 {
    font-size: var(--text-2xl);
  }
  .process-step {
    gap: var(--space-4);
  }
  .step-number {
    width: 2.5em;
    height: 2.5em;
    font-size: var(--text-lg);
  }
}


.social-proof-section {
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
  color: var(--color-surface);
}

.social-proof-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.social-proof-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.social-proof-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-none);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.stat-label {
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-7);
  border-radius: 2px;
}

.testimonial-quote {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  opacity: 0.95;
}

.testimonial-author {
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.testimonial-role {
  font-size: var(--text-sm);
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .social-proof-section {
    padding: var(--space-8) var(--space-5);
  }
  .social-proof-header h2 {
    font-size: var(--text-2xl);
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .stat-number {
    font-size: var(--text-3xl);
  }
}


.pricing-section {
  padding: var(--space-10) var(--space-6);
  background: var(--color-surface);
}

.pricing-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.pricing-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.pricing-header p {
  font-size: var(--text-lg);
  color: var(--color-text);
  opacity: 0.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pricing-card {
  background: var(--color-surface);
  border: 2px solid #e5e7eb;
  padding: var(--space-7);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(3, 143, 229, 0.12);
}

.pricing-badge {
  position: absolute;
  top: calc(var(--space-4) * -1);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.pricing-tier {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-4);
}

.pricing-price {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-none);
  color: var(--color-bg);
  margin-bottom: var(--space-2);
}

.pricing-price-period {
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--color-text);
  opacity: 0.6;
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-7);
  min-height: 14em;
}

.pricing-features li {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
  padding-left: var(--space-6);
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

.pricing-cta-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .pricing-features {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: var(--space-8) var(--space-5);
  }
  .pricing-header h2 {
    font-size: var(--text-2xl);
  }
}


.cta-section {
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-surface);
  text-align: center;
}

.cta-container {
  max-width: var(--content-md);
  margin: 0 auto;
}

.cta-container h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

.cta-container p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-7);
  opacity: 0.95;
}

.cta-button-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-section {
    padding: var(--space-8) var(--space-5);
  }
  .cta-container h2 {
    font-size: var(--text-2xl);
  }
  .cta-container p {
    font-size: var(--text-base);
  }
}


.article-header {
  padding: var(--space-10) var(--space-6) var(--space-8);
  background: var(--color-surface);
}

.article-header-container {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.article-header h1 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.article-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: var(--space-5);
}

.article-meta {
  font-size: var(--text-sm);
  color: var(--color-text);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .article-header {
    padding: var(--space-8) var(--space-5) var(--space-7);
  }
  .article-header h1 {
    font-size: var(--text-2xl);
  }
}


.article-body {
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
}

.article-body-container {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.article-body h2 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-snug);
  color: var(--color-bg);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-bg);
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}

.article-body p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.article-body li {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.article-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--color-text);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .article-body {
    padding: var(--space-7) var(--space-5);
  }
  .article-body h2 {
    font-size: var(--text-xl);
  }
  .article-body h3 {
    font-size: var(--text-lg);
  }
}


.seo-section {
  padding: var(--space-8) var(--space-6);
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
}

.seo-container {
  max-width: var(--content-md);
  margin: 0 auto;
}

.seo-container h2 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
  opacity: 0.85;
}

.seo-container p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.75;
  margin-bottom: var(--space-4);
}

.seo-container p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .seo-section {
    padding: var(--space-7) var(--space-5);
  }
}
.split-hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 50%, #2a4a7c 100%);
  color: var(--color-surface);
  padding: var(--space-10) var(--space-6);
  position: relative;
  overflow: hidden;
}

.split-hero-container {
  max-width: var(--content-xl);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.split-hero-content h1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

.split-hero-subtext {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-7);
  opacity: 0.92;
}

.split-hero-cta-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--space-4);
}

.split-hero-subline {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: var(--weight-medium);
}

.split-hero-artwork-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .split-hero {
    padding: var(--space-8) var(--space-5);
  }
  .split-hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .split-hero-content h1 {
    font-size: var(--text-3xl);
  }
  .split-hero-subtext {
    font-size: var(--text-base);
  }
}

.bundle-hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
  color: var(--color-surface);
  padding: var(--space-11) var(--space-6) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bundle-hero-container {
  max-width: var(--content-md);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bundle-hero h1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

.bundle-hero-subtext {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  opacity: 0.92;
}

.bundle-hero-cta-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-9);
}

.bundle-hero-artwork-container {
  max-width: 32em;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bundle-hero {
    padding: var(--space-9) var(--space-5) var(--space-8);
  }
  .bundle-hero h1 {
    font-size: var(--text-3xl);
  }
  .bundle-hero-subtext {
    font-size: var(--text-lg);
  }
}

.content-prose {
  padding: var(--space-9) var(--space-6);
  background: var(--color-surface);
}

.content-prose-container {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.content-prose h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-5);
}

.content-prose-body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .content-prose {
    padding: var(--space-8) var(--space-5);
  }
  .content-prose h2 {
    font-size: var(--text-2xl);
  }
  .content-prose-body {
    font-size: var(--text-base);
  }
}

.content-split {
  padding: var(--space-9) var(--space-6);
  background: var(--color-surface);
}

.content-split-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.content-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
  margin-bottom: var(--space-10);
}

.content-split-row:last-child {
  margin-bottom: 0;
}

.content-split-row:nth-child(even) .content-split-text {
  order: 2;
}

.content-split-row:nth-child(even) .content-split-visual {
  order: 1;
}

.content-split-text h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-snug);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.content-split-text p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.85;
}

.content-split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .content-split {
    padding: var(--space-8) var(--space-5);
  }
  .content-split-row {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }
  .content-split-row:nth-child(even) .content-split-text,
  .content-split-row:nth-child(even) .content-split-visual {
    order: 0;
  }
}

.gallery-section {
  padding: var(--space-9) var(--space-6);
  background: var(--color-surface);
}

.gallery-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 26, 40, 0.85);
  color: var(--color-surface);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

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

@media (max-width: 768px) {
  .gallery-section {
    padding: var(--space-8) var(--space-5);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.logo-cloud {
  padding: var(--space-8) var(--space-6);
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.logo-cloud-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.logo-cloud-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.logo-cloud-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.logo-cloud-item:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .logo-cloud-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-cloud {
    padding: var(--space-7) var(--space-5);
  }
  .logo-cloud-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

.faq-section {
  padding: var(--space-9) var(--space-6);
  background: var(--color-surface);
}

.faq-container {
  max-width: var(--content-md);
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.faq-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
}

.faq-list {
  border-top: 1px solid #e5e7eb;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: var(--space-5) 0;
}

.faq-question {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-bg);
  margin-bottom: var(--space-3);
  cursor: pointer;
}

.faq-answer {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .faq-section {
    padding: var(--space-8) var(--space-5);
  }
  .faq-header h2 {
    font-size: var(--text-2xl);
  }
}

.insight-callout {
  background: rgba(3, 143, 229, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-6);
  margin: var(--space-7) 0;
}

.insight-callout-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.insight-callout-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.9;
}

.article-quote {
  margin: var(--space-8) 0;
  padding: var(--space-7) var(--space-8);
  background: #f8f9fa;
  border-left: 4px solid var(--color-primary);
  text-align: center;
}

.article-quote-text {
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  line-height: var(--leading-relaxed);
  color: var(--color-bg);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.article-quote-author {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.article-quote-role {
  font-size: var(--text-sm);
  color: var(--color-text);
  opacity: 0.7;
  margin-top: var(--space-1);
}

@media (max-width: 768px) {
  .article-quote {
    padding: var(--space-6);
    margin: var(--space-7) 0;
  }
  .article-quote-text {
    font-size: var(--text-lg);
  }
}

.in-content-promo {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-surface);
  padding: var(--space-7);
  margin: var(--space-8) 0;
  text-align: center;
  border-radius: 2px;
}

.in-content-promo-headline {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.in-content-promo-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  opacity: 0.95;
}

.in-content-promo-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .in-content-promo {
    padding: var(--space-6);
  }
  .in-content-promo-headline {
    font-size: var(--text-xl);
  }
}

.author-bio {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  padding: var(--space-6);
  margin: var(--space-8) 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: center;
}

.author-bio-avatar {
  width: 4em;
  height: 4em;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  color: var(--color-surface);
  flex-shrink: 0;
}

.author-bio-name {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-bg);
  margin-bottom: var(--space-2);
}

.author-bio-text {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .author-bio {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-bio-avatar {
    margin: 0 auto;
  }
}
.feature-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  margin-top: var(--space-4);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.feature-link::after {
  content: '→';
  margin-left: var(--space-2);
}
.link-card-grid-section {
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(180deg, var(--color-surface) 0%, #f8f9fa 100%);
}

.link-card-grid-container {
  max-width: var(--content-lg);
  margin: 0 auto;
}

.link-card-grid-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.link-card-grid-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}

.link-card-grid-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text);
  opacity: 0.8;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.link-card {
  background: var(--color-surface);
  padding: var(--space-7);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.link-card:hover {
  box-shadow: 0 4px 12px rgba(3, 143, 229, 0.08);
  border-color: var(--color-accent);
}

.link-card-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-bg);
  margin-bottom: var(--space-3);
}

.link-card-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: var(--space-5);
}

.link-card-cta {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

@media (max-width: 1024px) {
  .link-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .link-card-grid-section {
    padding: var(--space-8) var(--space-5);
  }
  .link-card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .link-card-grid-header h2 {
    font-size: var(--text-2xl);
  }
}

.statement-banner {
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-surface);
  text-align: center;
}

.statement-banner-container {
  max-width: var(--content-md);
  margin: 0 auto;
}

.statement-banner h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

.statement-banner-subline {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  opacity: 0.9;
  margin-bottom: var(--space-7);
}

.statement-banner-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.statement-banner-point {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  opacity: 0.95;
  max-width: 36em;
}

@media (max-width: 768px) {
  .statement-banner {
    padding: var(--space-8) var(--space-5);
  }
  .statement-banner h2 {
    font-size: var(--text-3xl);
  }
  .statement-banner-subline {
    font-size: var(--text-base);
  }
}.icon { width: 1.5em; height: 1.5em; display: inline-block; vertical-align: middle; fill: currentColor; }
.artwork { width: 100%; display: flex; justify-content: center; align-items: center; }

.artwork-glow-core { position: relative; width: min(14.4em, 100%); height: min(14.4em, 100%); display: flex; align-items: center; justify-content: center; }
.artwork-glow-bg { position: absolute; inset: 0.8em; border-radius: 50%; background: radial-gradient(circle, var(--color-primary, #6366f1), var(--color-accent, #8b5cf6)); opacity: 0.04; filter: blur(2.4em); transition: opacity 0.4s ease, transform 0.4s ease; }
.artwork-glow-core > .icon { position: relative; z-index: 1; width: 6em; height: 6em; }
.artwork-glow.artwork-on-dark .icon { color: #fff; fill: #fff; }


.artwork-media img { width: 100%; height: auto; max-width: min(28em, 100%); border-radius: 0.75em; object-fit: cover; display: block; }


.artwork-orbit-core { position: relative; width: 100%; max-width: 100%; aspect-ratio: 1; container-type: inline-size; }
.artwork-orbit-core::before { content: ''; position: absolute; inset: 10%; border-radius: 50%; background: radial-gradient(circle, var(--color-primary, #6366f1), var(--color-accent, #8b5cf6)); opacity: 0.04; filter: blur(3em); z-index: 0; transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
.artwork-orbit-core::after { content: ''; position: absolute; left: 50%; top: 50%; width: 60cqi; height: 60cqi; margin-left: -30cqi; margin-top: -30cqi; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-primary, #6366f1) 10%, transparent); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 1; }
.artwork-orbit-core:hover::before { opacity: 0.2; transform: scale(1.1); animation: artwork-orbit-glow 4s ease-in-out infinite; }
.artwork-orbit-core:hover::after { opacity: 1; }
.artwork-orbit-core:hover .artwork-orbit-item { animation-play-state: paused; }
.artwork-orbit-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 20cqi; height: 20cqi; display: flex; align-items: center; justify-content: center; animation: artwork-orbit-pulse 3s ease-in-out infinite; }
.artwork-orbit-center-bg { position: absolute; inset: -80%; border-radius: 35% 45% 40% 50%; background: linear-gradient(135deg, var(--color-primary, #6366f1), var(--color-accent, #8b5cf6)); filter: blur(6cqi); opacity: 0.45; transition: background 0.4s ease, box-shadow 0.4s ease; }
.artwork-orbit-center:hover .artwork-orbit-center-bg { background: linear-gradient(135deg, var(--color-accent, #8b5cf6), var(--color-primary, #6366f1)); box-shadow: 0 0 2em var(--color-primary, rgba(99,102,241,0.4)); }
.artwork-orbit-center .icon { position: relative; z-index: 1; width: 10cqi; height: 10cqi; color: #fff; fill: #fff; transition: transform 0.5s ease; }
.artwork-orbit-center:hover .icon { transform: rotate(180deg); }
.artwork-orbit-item { position: absolute; left: 50%; top: 50%; width: 12.5cqi; height: 12.5cqi; margin-left: -6.25cqi; margin-top: -6.25cqi; display: flex; align-items: center; justify-content: center; border-radius: 50%; animation: artwork-orbit-path 30s linear infinite; transition: background 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease; }
.artwork-orbit-item:hover { background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary, #6366f1) 25%, transparent), color-mix(in srgb, var(--color-accent, #8b5cf6) 15%, transparent)); box-shadow: 0 0 1em color-mix(in srgb, var(--color-primary, #6366f1) 30%, transparent); z-index: 3; filter: blur(0); }
.artwork-orbit-item .icon { width: 6.25cqi; height: 6.25cqi; transition: transform 0.3s ease, filter 0.3s ease; }
.artwork-orbit-item:hover .icon { transform: scale(1.5); filter: drop-shadow(0 0 0.4em var(--color-primary, #6366f1)); }
.artwork-orbit.artwork-on-dark .artwork-orbit-item .icon { color: #fff; fill: #fff; }
@keyframes artwork-orbit-path { from { transform: rotate(0deg) translateY(-30cqi) rotate(0deg); } to { transform: rotate(360deg) translateY(-30cqi) rotate(-360deg); } }
@keyframes artwork-orbit-pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.05); } }
@keyframes artwork-orbit-glow { 0%, 100% { transform: scale(1); opacity: 0.15; } 50% { transform: scale(1.05); opacity: 0.25; } }
.conversion { display: flex; width: fit-content; }

.conversion-form-btn { display: inline-block; padding: 12px 20px; background: var(--color-primary, #6366f1); color: #fff; border: none; border-radius: 0.5em; font-weight: 600; font-size: 1.125em; cursor: pointer; transition: background 0.3s ease; }
.conversion-form-btn:hover { background: var(--color-accent, #8b5cf6); }
.conversion-from-header .conversion-form-btn { padding: 8px 14px; font-size: 0.95em; }
.conversion-form-popup { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; }
.conversion-form-popup.active { display: flex; }
.conversion-form-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.conversion-form-modal { position: relative; background: var(--color-surface, #fff); border-radius: 1em; padding: 2em; max-width: 28em; width: 90%; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.conversion-form-close { position: absolute; top: 0.75em; right: 0.75em; background: none; border: none; font-size: 1.5em; cursor: pointer; color: var(--color-text, #333); opacity: 0.5; }
.conversion-form-close:hover { opacity: 1; }
.conversion-form-title { font-size: 1.5em; margin-bottom: 0.5em; }
.conversion-form-desc { color: var(--color-text-muted, #666); margin-bottom: 1em; }
.conversion-form-body { display: flex; gap: 0.5em; }
.conversion-form-input { flex: 1; padding: 0.75em 1em; border: 1px solid color-mix(in srgb, var(--color-text, #333) 20%, transparent); border-radius: 0.5em; font-size: 1em; }
.conversion-form-input:focus { outline: none; border-color: var(--color-primary, #6366f1); }
.conversion-form-submit { padding: 0.75em 1.5em; background: var(--color-primary, #6366f1); color: #fff; border: none; border-radius: 0.5em; font-weight: 600; cursor: pointer; }
.conversion-form-submit:hover { background: var(--color-accent, #8b5cf6); }
.conversion-form-success { text-align: center; color: var(--color-primary, #6366f1); font-weight: 600; padding: 1em 0; }


.conversion-link-btn { display: inline-block; padding: 0.875em 2em; background: var(--color-primary, #6366f1); color: #fff; text-decoration: none; border-radius: 0.5em; font-weight: 600; font-size: 1.125em; transition: background 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.conversion-link-btn:hover { background: var(--color-accent, #8b5cf6); box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary, #6366f1) 30%, transparent); }
.conversion-from-header .conversion-link-btn { padding: 0.5em 1.25em; font-size: 0.95em; }

html:has(.preview-frame) { scroll-behavior: smooth; }
.preview { width: 100%; display: block; padding: clamp(1rem, 2.8vw, 2.4rem); background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.08)), var(--preview-banner-bg-color, #2f3338); box-sizing: border-box; }
.preview-frame-shell { width: min(100%, var(--preview-frame-max-width, 82rem), calc(var(--preview-frame-target-height, 40rem) * var(--preview-frame-aspect-number, 1.7778))); margin-inline: auto; display: grid; gap: clamp(0.8rem, 1.35vw, 1.2rem); box-sizing: border-box; }
.preview-demo-header { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(0.75rem, 1.8vw, 1.25rem); }
.preview-demo-title { margin: 0; color: #ffffff; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 760; line-height: 1.1; letter-spacing: 0; }
.preview-demo-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 2.75rem; padding: 0.78rem 1rem; border-radius: 7px; background: var(--preview-cta-bg-color, #17213f); color: var(--preview-cta-text-color, #ffffff); border: 1px solid rgba(255, 255, 255, 0.22); box-shadow: 0 0.65rem 1.35rem rgba(21, 27, 47, 0.16); font-family: inherit; font-size: 0.95rem; font-weight: 720; line-height: 1; text-decoration: none; white-space: nowrap; cursor: pointer; appearance: none; transition: background 160ms ease, box-shadow 160ms ease; }
.preview-demo-cta:hover, .preview-demo-cta:focus-visible { background: var(--preview-cta-hover-bg-color, var(--preview-cta-bg-color, #243258)); box-shadow: 0 0.85rem 1.6rem rgba(21, 27, 47, 0.18); }
.preview-frame-wrap {
	position: relative;
	width: 100%;
	margin-inline: auto;
	padding: var(--preview-frame-padding, clamp(0.45rem, 1vw, 0.8rem));
	border-radius: var(--preview-frame-radius, 16px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 247, 249, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow:
		0 1rem 2.4rem rgba(0, 0, 0, 0.24),
		0 0 0 1px rgba(255, 255, 255, 0.58) inset;
	box-sizing: border-box;
	transition: filter 180ms ease, box-shadow 180ms ease;
	transform-origin: center center;
}
.preview-frame-clip {
	width: 100%;
	aspect-ratio: var(--preview-frame-aspect-ratio, 16 / 9);
	border-radius: calc(var(--preview-frame-radius, 16px) - var(--preview-frame-padding, clamp(0.45rem, 1vw, 0.8rem)));
	overflow: hidden;
	background: #ffffff;
	display: block;
}
.preview-frame-viewport {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.preview-frame-actions { position: absolute; top: calc(var(--preview-frame-padding, clamp(0.45rem, 1vw, 0.8rem)) + 0.7rem); right: calc(var(--preview-frame-padding, clamp(0.45rem, 1vw, 0.8rem)) + 0.7rem); z-index: 2; display: flex; opacity: 0; transform: translateY(-0.25rem); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; }
.preview-frame-wrap:hover .preview-frame-actions, .preview-frame-wrap:focus-within .preview-frame-actions, .preview-frame.is-expanded .preview-frame-actions { opacity: 1; transform: translateY(0); pointer-events: auto; }
.preview-frame-toggle { width: 2.75rem; height: 2.75rem; display: inline-grid; place-items: center; padding: 0; border: 1px solid rgba(255, 255, 255, 0.62); border-radius: 7px; background: rgba(21, 27, 47, 0.86); color: #ffffff; box-shadow: 0 0.7rem 1.5rem rgba(21, 27, 47, 0.22); cursor: pointer; backdrop-filter: blur(10px); transition: background 160ms ease; }
.preview-frame-toggle:hover, .preview-frame-toggle:focus-visible { background: rgba(21, 27, 47, 0.96); }
.preview-frame-toggle svg { width: 1.05rem; height: 1.05rem; display: block; }
.preview-demo-explanation { display: grid; gap: 0.35rem; max-width: 100%; margin: 0 auto; color: var(--preview-muted-text-color, #c2c8d1); font-size: clamp(0.96rem, 1.15vw, 1.08rem); line-height: 1.55; text-align: center; }
.preview-demo-explanation p { margin: 0; }
.preview-frame.is-expanded { position: fixed; inset: 0; z-index: 2147483000; width: auto; padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left)); display: flex; align-items: center; justify-content: center; border-radius: 0; background: rgba(13, 17, 26, 0.74); border: 0; box-shadow: none; backdrop-filter: blur(12px); }
.preview-frame.is-expanded .preview-frame-shell { width: min(100%, 98rem); height: min(100%, 58rem); display: flex; flex-direction: column; gap: 0.75rem; }
.preview-frame.is-expanded .preview-demo-header, .preview-frame.is-expanded .preview-demo-explanation { display: none; }
.preview-frame.is-expanded .preview-frame-wrap { --preview-frame-padding: clamp(0.45rem, 0.8vw, 0.7rem); --preview-frame-radius: 18px; width: 100%; height: 100%; background: rgba(245, 247, 249, 0.96); display: flex; }
.preview-frame.is-expanded .preview-frame-clip { flex: 1; aspect-ratio: auto; min-height: 0; }
.preview-frame.is-animating .preview-frame-wrap { will-change: transform, opacity, filter; filter: blur(1.5px); }
body.preview-frame-scroll-locked { position: fixed; width: 100%; overflow: hidden; }
@media (max-width: 720px) {
	.preview { padding: clamp(1rem, 5vw, 1.35rem); }
	.preview-demo-header { grid-template-columns: minmax(0, 1fr) auto; }
	.preview-demo-title { font-size: clamp(1.18rem, 6vw, 1.55rem); }
	.preview-demo-cta { min-height: 2.45rem; padding-inline: 0.78rem; font-size: 0.86rem; }
	.preview-frame-wrap { --preview-frame-padding: 0.42rem; --preview-frame-radius: 13px; }
	.preview-frame-actions { top: 0.85rem; right: 0.85rem; opacity: 1; transform: none; pointer-events: auto; }
	.preview-frame.is-expanded { padding: max(0.45rem, env(safe-area-inset-top)) max(0.45rem, env(safe-area-inset-right)) max(0.45rem, env(safe-area-inset-bottom)) max(0.45rem, env(safe-area-inset-left)); }
	.preview-frame.is-expanded .preview-frame-shell { height: 100%; }
}
@media (max-width: 420px) {
	.preview-demo-header { grid-template-columns: 1fr; align-items: stretch; }
	.preview-demo-cta { justify-self: stretch; }
}
@media (prefers-reduced-motion: reduce) {
	.preview-frame, .preview-frame * { transition-duration: 1ms !important; animation-duration: 1ms !important; scroll-behavior: auto !important; }
	.preview-frame.is-animating .preview-frame-wrap { filter: none; }
}
.preview-form-popup { display: none; position: fixed; inset: 0; z-index: 2147483100; align-items: center; justify-content: center; }
.preview-form-popup.active { display: flex; }
.preview-form-overlay { position: absolute; inset: 0; background: rgba(13, 17, 26, 0.72); backdrop-filter: blur(8px); }
.preview-form-modal { position: relative; background: #ffffff; border-radius: 14px; padding: 1.85rem 1.75rem 1.65rem; max-width: 26rem; width: 92%; z-index: 1; box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.32); box-sizing: border-box; }
.preview-form-close { position: absolute; top: 0.5rem; right: 0.65rem; background: none; border: 0; font-size: 1.6rem; line-height: 1; padding: 0.25rem 0.55rem; cursor: pointer; color: #555a66; opacity: 0.55; }
.preview-form-close:hover, .preview-form-close:focus-visible { opacity: 1; outline: none; }
.preview-form-title { margin: 0 0 0.45rem; font-size: 1.35rem; font-weight: 720; color: #161b29; }
.preview-form-desc { margin: 0 0 1rem; color: #5a6171; font-size: 0.98rem; line-height: 1.5; }
.preview-form-body { display: flex; flex-direction: column; gap: 0.6rem; }
.preview-form-input { padding: 0.78rem 0.95rem; border: 1px solid rgba(20, 26, 45, 0.18); border-radius: 8px; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.preview-form-input:focus { border-color: var(--preview-cta-bg-color, #17213f); box-shadow: 0 0 0 3px rgba(23, 33, 63, 0.14); }
.preview-form-submit { margin-top: 0.35rem; padding: 0.85rem 1rem; background: var(--preview-cta-bg-color, #17213f); color: var(--preview-cta-text-color, #ffffff); border: 0; border-radius: 8px; font-family: inherit; font-size: 1rem; font-weight: 720; cursor: pointer; appearance: none; transition: background 160ms ease; }
.preview-form-submit:hover { background: var(--preview-cta-hover-bg-color, var(--preview-cta-bg-color, #243258)); }
.preview-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.preview-form-success { text-align: center; color: var(--preview-cta-bg-color, #17213f); font-weight: 700; padding: 1rem 0; margin: 0; font-size: 1.05rem; }
.preview-frame-fullscreen { min-height: 100vh; height: 100vh; padding: 0; background: #ffffff; overflow: hidden; }
.preview-frame-fullscreen .preview-frame-shell { width: 100%; height: 100%; max-width: none; display: flex; gap: 0; }
.preview-frame-fullscreen .preview-frame-wrap { width: 100%; height: 100%; padding: 0; border: 0; border-radius: 0; box-shadow: none; background: #ffffff; display: flex; }
.preview-frame-fullscreen .preview-frame-clip { flex: 1; min-height: 0; aspect-ratio: auto; border-radius: 0; }
.preview-frame-fullscreen .preview-frame-viewport { height: 100%; }
.preview-frame-fullscreen .preview-demo-header, .preview-frame-fullscreen .preview-demo-explanation, .preview-frame-fullscreen .preview-frame-actions, .preview-frame-fullscreen .preview-form-popup { display: none; }

.site-footer { box-sizing: border-box; width: 100%; padding: 2.5em 1.5em 1.25em; background: var(--ftr-bg, #0f1729); color: var(--ftr-fg, #e2e8f0); font-size: 1rem; }
.footer-inner { max-width: var(--content-xl, 1280px); margin: 0 auto; }
.site-footer a { text-decoration: none; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }

.footer-main { display: flex; flex-wrap: wrap; gap: 2.5em; justify-content: space-between; }

.footer-brand { display: flex; flex-direction: column; gap: 0.7em; max-width: 22em; }
.footer-brand-text { font-weight: 700; font-size: 1.3em; color: var(--ftr-fg, #e2e8f0); }
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { height: 36px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.footer-logo:not(:has(img)) { display: none; }
.footer-logo:has(img) + .footer-brand-text { display: none; }
.footer-tagline { margin: 0; font-size: 0.95em; line-height: 1.5; color: color-mix(in srgb, var(--ftr-fg, #e2e8f0) 60%, transparent); }

.footer-cols { display: flex; flex-wrap: wrap; gap: 2.5em 3.5em; }
.footer-col-head { margin-bottom: 0.9em; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8em; font-weight: 700; color: color-mix(in srgb, var(--ftr-fg, #e2e8f0) 55%, transparent); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65em; }
.footer-col a { font-size: 0.95em; color: color-mix(in srgb, var(--ftr-fg, #e2e8f0) 80%, transparent); }
.footer-col a:hover { color: var(--ftr-fg, #e2e8f0); }
.footer-col-plain ul { gap: 0.65em; }

.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.75em 1.5em; justify-content: space-between; align-items: center; margin-top: 2.5em; padding-top: 1.25em; border-top: 1px solid color-mix(in srgb, var(--ftr-fg, #e2e8f0) 12%, transparent); }
.footer-copyright { font-size: 0.9em; color: color-mix(in srgb, var(--ftr-fg, #e2e8f0) 60%, transparent); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5em; }
.footer-legal a { font-size: 0.9em; color: color-mix(in srgb, var(--ftr-fg, #e2e8f0) 60%, transparent); }
.footer-legal a:hover { color: var(--ftr-fg, #e2e8f0); }

@media (max-width: 768px) {
	.site-footer { padding: 2em 1.25em 1.25em; }
	.footer-main { flex-direction: column; gap: 2em; }
	.footer-cols { flex-direction: column; gap: 1.75em; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}


.navbar { box-sizing: border-box; width: 100%; padding: 0.5em 1.5em; background: var(--nav-bg, #0f1729); color: var(--nav-fg, #fff); font-size: 1rem; display: flex; justify-content: center; position: relative; z-index: 100; }
.navbar-inner { display: flex; align-items: center; gap: 1.25em; position: relative; width: 100%; max-width: var(--content-xl, 1280px); }
.navbar a { color: inherit; text-decoration: none; }
.navbar ul { list-style: none; margin: 0; padding: 0; }

.nav-brand { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; font-size: 1.1em; color: var(--nav-fg, #fff); }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.nav-logo:not(:has(img)) { display: none; }
.nav-logo:has(img) + .nav-brand-text { display: none; }

.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 1.5em; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: inline-block; padding: 0.25em 0; color: var(--nav-fg, #fff); }
.nav-links > li > a:hover { color: color-mix(in srgb, var(--nav-fg, #fff) 75%, var(--nav-bg, #0f1729)); }

.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 0.35em; background: none; border: 0; padding: 0.25em 0; margin: 0; font: inherit; color: var(--nav-fg, #fff); cursor: pointer; }
.nav-caret { font-size: 0.65em; opacity: 0.8; transition: transform 0.15s ease; }
.nav-dropdown:hover .nav-caret, .nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu { position: absolute; top: calc(100% + 0.5em); left: 0; min-width: 13em; padding: 0.4em 0; background: var(--nav-bg, #0f1729); border: 1px solid color-mix(in srgb, var(--nav-fg, #fff) 16%, transparent); border-radius: 0.5em; box-shadow: 0 12px 32px color-mix(in srgb, var(--nav-bg, #0f1729) 60%, transparent); opacity: 0; visibility: hidden; transform: translateY(0.4em); transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s; z-index: 50; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-subtext { padding: 0.35em 1.1em 0.5em; color: color-mix(in srgb, var(--nav-fg, #fff) 68%, transparent); }
.nav-dropdown-menu a { display: block; padding: 0.5em 1.1em; color: var(--nav-fg, #fff); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: color-mix(in srgb, var(--nav-fg, #fff) 12%, var(--nav-bg, #0f1729)); }

.nav-cta-container { margin-left: auto; display: flex; align-items: center; }

.nav-toggle-cb { display: none; }
.nav-toggle { display: none; }

@media (max-width: 768px) {
	.navbar { padding: 0.5em 1em; }
	.navbar-inner { flex-wrap: wrap; gap: 0; }
	.nav-brand { order: 1; }
	.nav-toggle { order: 2; margin-left: auto; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 28px; padding: 0; cursor: pointer; }
	.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--nav-fg, #fff); border-radius: 2px; }
	.nav-cta-container { order: 3; width: 100%; margin: 0.85em 0; display: none; justify-content: center; }
	.nav-links { order: 4; position: static; transform: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; display: none; }
	.nav-toggle-cb:checked ~ .nav-cta-container { display: flex; }
	.nav-toggle-cb:checked ~ .nav-links { display: flex; }
	.nav-links > li { width: 100%; border-top: 1px solid color-mix(in srgb, var(--nav-fg, #fff) 12%, transparent); }
	.nav-links > li:first-child { border-top: 0; }
	.nav-links > li > a { display: block; padding: 0.75em 0; }
	.nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 0.75em 0; }
	.nav-dropdown:hover .nav-caret, .nav-dropdown:focus-within .nav-caret { transform: none; }
	.nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; min-width: 0; padding: 0 0 0.5em; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
	.nav-dropdown-subtext { padding: 0 0 0.4em 1em; }
	.nav-dropdown-menu a { padding: 0.5em 0 0.5em 1em; }
}
