@charset "UTF-8";
/*
Theme Name: Fuschia 2.0
Description: A minimalistic WordPress theme with clean design and essential functionality.
Version: 1.0
Author: Your Name
Text Domain: fuschia
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --color-primary: #1a1a1a;
  --color-secondary: #666;
  --color-light: #f8f9fa;
  --color-border: #e5e7eb;
  --color-accent: #2563eb;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

/* Dark theme variables */
:root {
  --bg-primary: #0c030c;
  --bg-secondary: #1a0d1a;
  --bg-tertiary: #2a1a2a;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --border-dark: #333;
  --accent-primary: #ba0e7e;
  --accent-secondary: #ba0e7e;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Apply dark theme */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 6px;
  border: 2px solid var(--bg-secondary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-secondary), #a855f7);
  border: 2px solid var(--bg-tertiary);
  transform: scale(1.05);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}
h2 span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 700;
}
h2 span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 1px;
  opacity: 0.6;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-secondary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.wp-block-image.rounded img {
  border-radius: 12px;
  margin-bottom: 15px;
}

.wp-block-columns.stylised {
  margin-bottom: 40px;
}
.wp-block-columns.stylised .wp-block-column {
  padding: 20px;
}
.wp-block-columns.animate-ready .wp-block-column {
  opacity: 0;
  transform: translateY(50px);
  transition: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 40px;
}
.hero-content h1 {
  font-size: 4vw;
}
.hero-content h2 {
  font-size: 2vw;
}
.hero-content .lead {
  font-size: 18px;
}

.fullheight {
  min-height: 100vh;
  padding: 60px 0px;
}
.fullheight.flex {
  display: flex;
  flex-direction: column;
}
.fullheight.aligncenter {
  justify-content: center;
  align-items: center;
}

.flex {
  display: flex;
  flex-direction: column;
}
.flex.flex-center {
  justify-content: center;
  align-items: center;
}

header {
  padding: var(--spacing-md) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.card {
  --start: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 10px;
  padding: 10px 40px;
  border-radius: 14px;
  transition: border-color 0.3s ease-in-out;
}

.card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--gradient);
  background-attachment: fixed;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(255, 255, 255, 0.1215686275) 0deg, white, rgba(255, 255, 255, 0) 100deg);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(255, 255, 255, 0.1215686275) 0deg, white, rgba(255, 255, 255, 0) 100deg);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  opacity: 0.4;
  transition: 0.5s ease;
}

.glow {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(14px);
}

.glow::before {
  position: absolute;
  content: "";
  width: 98%;
  height: 98%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  border: 15px solid transparent;
  background: var(--gradient);
  background-attachment: fixed;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(255, 255, 255, 0.1215686275) 0deg, white, rgba(255, 255, 255, 0) 100deg);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(255, 255, 255, 0.1215686275) 0deg, white, rgba(255, 255, 255, 0) 100deg);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  opacity: 0.6;
  transition: 1s ease;
}

.card:hover > .glow::before {
  opacity: 1;
}

.card:hover::before {
  opacity: 0.8;
}

.border-beam-pill {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(38, 38, 38, 0.5) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 4px 20px;
  color: #a1a1a1 !important;
  display: inline-block;
}

.site__wrapper {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  padding: 10px 20px;
}
.site__wrapper.scrolled {
  background: rgba(5, 2, 5, 0.25);
  backdrop-filter: blur(20px) saturate(1.2) brightness(0.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.2) brightness(0.8);
  border-radius: 8px;
}

.animate-ready[data-animate=fade-up] {
  opacity: 0;
  transform: translateY(60px);
}
.animate-ready[data-animate=slide-left] {
  opacity: 0;
  transform: translateX(100px);
}
.animate-ready[data-animate=slide-right] {
  opacity: 0;
  transform: translateX(-100px);
}
.animate-ready[data-animate=scale-in] {
  opacity: 0;
  transform: scale(0.8);
}
.animate-ready[data-animate=fade-in] {
  opacity: 0;
}
.animate-ready[data-animate=fade-down] {
  opacity: 0;
  transform: translateY(-40px);
}
.animate-ready[data-animate=stagger-up] > * {
  opacity: 0;
  transform: translateY(40px);
}
.animate-ready[data-animate=hero-content] h1, .animate-ready[data-animate=hero-content] h2, .animate-ready[data-animate=hero-content] .lead {
  opacity: 0;
}
.animate-ready[data-animate=hero-content] h1 {
  transform: translateY(80px);
}
.animate-ready[data-animate=hero-content] h2 {
  transform: translateY(60px);
}
.animate-ready[data-animate=hero-content] .lead {
  transform: translateY(40px);
}

.site-header [data-animate=fade-down] {
  opacity: 0;
  transform: translateY(-40px);
}

[data-animate] {
  will-change: transform, opacity;
}

.feature-cta, .getstarted {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-cta:hover, .getstarted:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-video {
  opacity: 0;
}

.scroll-indicator {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll-indicator:hover {
  transform: translateY(-5px);
}
.scroll-indicator:hover .scroll-arrow span {
  background: var(--accent-primary);
}
.scroll-indicator:hover .scroll-text {
  color: var(--accent-primary);
}

.scroll-arrow {
  position: relative;
  width: 24px;
  height: 24px;
}
.scroll-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 1px;
  transform-origin: bottom center;
  transition: all 0.3s ease;
}
.scroll-arrow span:nth-child(1) {
  transform: translateX(-50%) rotate(-45deg);
  animation: scrollArrow1 2s ease-in-out infinite;
}
.scroll-arrow span:nth-child(2) {
  transform: translateX(-50%) rotate(45deg);
  animation: scrollArrow2 2s ease-in-out infinite;
}
.scroll-arrow span:nth-child(3) {
  top: 6px;
  transform: translateX(-50%);
  animation: scrollArrow3 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

@keyframes scrollArrow1 {
  0%, 20% {
    opacity: 0;
    transform: translateX(-50%) rotate(-45deg) translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) rotate(-45deg) translateY(0);
  }
  80%, 100% {
    opacity: 0;
    transform: translateX(-50%) rotate(-45deg) translateY(5px);
  }
}
@keyframes scrollArrow2 {
  0%, 20% {
    opacity: 0;
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  80%, 100% {
    opacity: 0;
    transform: translateX(-50%) rotate(45deg) translateY(5px);
  }
}
@keyframes scrollArrow3 {
  0%, 20% {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  80%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 30px;
    right: 30px;
    scale: 0.9;
  }
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar-center {
  pointer-events: none;
  z-index: 10;
}
.navbar-center .section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.navbar-center .section-title:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

.site-title {
  font-size: 1.625rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  transition: color 0.2s ease;
}

.site-title:hover {
  color: var(--accent-primary);
}

.custom-logo-link img {
  max-width: 180px;
  height: auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  color: var(--text-primary);
  font-size: 1.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background: var(--glass-bg);
  color: var(--accent-primary);
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.primary-navigation {
  position: relative;
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .primary-navigation ul {
    display: flex !important;
  }
}
.primary-navigation ul {
  list-style: none;
  display: flex;
  gap: var(--spacing-xl);
  margin: 0;
  padding: 0;
  align-items: center;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 8px;
  display: block;
}

.primary-navigation a:hover,
.primary-navigation a:focus {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.2s ease;
  border-radius: 1px;
}

.primary-navigation a:hover::after {
  width: 24px;
}

.primary-navigation .current-menu-item a,
.primary-navigation .current_page_item a {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.primary-navigation .current-menu-item a::after,
.primary-navigation .current_page_item a::after {
  width: 24px;
}

/* Hero Video Section */
.hero-video-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 0, 8, 0.6) 0%, rgba(26, 13, 26, 0.5) 50%, rgba(42, 26, 42, 0.5) 100%), linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(8, 0, 8, 0.8) 90%, var(--bg-primary) 100%);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(2px) saturate(1.2);
  z-index: 10;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
  z-index: 15;
}

/* Footer Video Section */
.footer-video-section {
  position: relative;
  width: 100vw;
  height: 300px;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(2px) saturate(1.2);
  z-index: -1;
}

.footer-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
  z-index: 15;
}

main {
  padding: var(--spacing-xl) 0;
  min-height: 60vh;
  margin-top: 0;
}

.post {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border);
}

.post:last-child {
  border-bottom: none;
}

.post-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.post-title a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: var(--color-accent);
}

.post-meta {
  color: var(--color-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: var(--spacing-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.post-content {
  line-height: 1.7;
  font-size: 1rem;
}

.post-content p {
  margin-bottom: var(--spacing-sm);
}

.post-content ul,
.post-content ol {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
}

.post-content li {
  margin-bottom: 0.25rem;
}

.post-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
  font-style: italic;
  color: var(--color-secondary);
}

.post-content code {
  background: var(--color-light);
  padding: 0.125rem 0.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
}

.post-content pre {
  background: var(--color-light);
  padding: var(--spacing-sm);
  border-radius: 8px;
  overflow-x: auto;
  margin: var(--spacing-lg) 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.pagination {
  text-align: center;
  margin: var(--spacing-xl) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  margin: 0;
  text-decoration: none;
  border: 1px solid var(--color-border);
  color: var(--color-secondary);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  min-width: 40px;
  height: 40px;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.pagination .current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pagination .dots {
  border: none;
  background: none;
  color: var(--color-secondary);
}

footer {
  padding: var(--spacing-xl) 0 0 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: var(--spacing-xl);
}
footer .container {
  position: relative;
  z-index: 100;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) 0;
}
footer .footer-logo .custom-logo-link img {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
footer .footer-logo .custom-logo-link:hover img {
  opacity: 1;
}
footer .footer-logo .site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-logo .site-title:hover {
  color: var(--accent-primary);
}
footer .footer-navigation {
  display: flex;
  gap: var(--spacing-xl);
}
footer .footer-navigation a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 8px;
  transition: all 0.3s ease;
}
footer .footer-navigation a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
  transform: translateY(-2px);
}
footer .footer-copyright p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.widget-area {
  margin-top: 2rem;
}

.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  :root {
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
  }
  .container {
    padding: 0 var(--spacing-md);
  }
  header {
    padding: var(--spacing-sm) 0;
  }
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .primary-navigation {
    position: static;
  }
  .primary-navigation ul {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 0, 8, 0.98);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    margin: 0;
    padding: 80px var(--spacing-lg) var(--spacing-lg);
    flex-direction: column;
    gap: var(--spacing-lg);
    box-shadow: none;
    display: none;
    z-index: 999;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: center;
  }
  .primary-navigation.is-open ul {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .primary-navigation li {
    width: auto;
    text-align: center;
  }
  .primary-navigation a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
    min-width: 140px;
  }
  .primary-navigation a:hover,
  .primary-navigation a:focus {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
  }
  .primary-navigation a::after {
    display: none;
  }
  .site-title {
    font-size: 1.375rem;
    z-index: 1001;
    position: relative;
  }
  .navbar-center {
    display: none;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.375rem;
  }
  .post-title {
    font-size: 1.5rem;
  }
  .post-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
  main {
    padding: var(--spacing-lg) 0;
  }
  .hero-video-section {
    height: 70vh;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .hero-video {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer-video-section {
    height: 40vh;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .footer-video {
    -o-object-fit: cover;
       object-fit: cover;
  }
  footer .footer-content {
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
  }
  footer .footer-navigation {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  footer .footer-navigation a {
    font-size: 0.85rem;
  }
  footer .footer-logo .custom-logo-link img {
    max-width: 100px;
  }
  footer .footer-logo .site-title {
    font-size: 1.25rem;
  }
}
.sticky-heading {
  position: sticky;
  top: 100px;
}

.features-section {
  position: relative;
}

.feature-tab {
  height: auto;
  position: sticky;
  top: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  transition: all 0.3s ease;
  border-radius: 24px;
  box-shadow: 0px -13px 34px -11px rgba(0, 0, 0, 0.41);
  -webkit-box-shadow: 0px -13px 34px -11px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0px -13px 34px -11px rgba(0, 0, 0, 0.41);
}

/* Individual tab z-index stacking with gradient frosted glass effect */
.feature-tab:nth-child(1) {
  /* background: linear-gradient(180deg, rgba(17, 0, 17, 0.4) 0%, transparent 100%); */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10;
}

.feature-tab:nth-child(2) {
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.4) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 20;
}

.feature-tab:nth-child(3) {
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.4) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 30;
}

.feature-tab:nth-child(4) {
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.4) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 40;
}

.feature-tab:nth-child(5) {
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.4) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 50;
}

.features-video-wrapper {
  position: relative;
}

.features-video {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.feature-tab-content {
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
}

.feature-tab h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-tab-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-secondary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.feature-tab p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.feature-tab ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
  background: var(--glass-bg);
  border-radius: 16px;
  padding: var(--spacing-md);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.feature-tab li {
  display: flex;
  align-items: center;
  padding: var(--spacing-xs) 0;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.2s ease;
}

.feature-tab li:hover {
  transform: translateX(5px);
}

.feature-tab li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border-radius: 50%;
  margin-right: var(--spacing-sm);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.feature-tab li:hover::before {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(99, 102, 241, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.feature-cta:hover {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, #a855f7 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.4), 0 6px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
}

.feature-cta:hover::before {
  left: 100%;
}

.feature-cta:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .feature-tab {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    min-height: auto;
    position: relative;
  }
  .features-video-wrapper {
    order: 2;
  }
  .feature-tab-content {
    order: 1;
    padding: var(--spacing-lg);
    border-radius: 20px;
  }
  .feature-tab h3 {
    font-size: 1.5rem;
  }
  .feature-tab ul {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: var(--spacing-sm);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .feature-tab li::before {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  .feature-cta {
    border-radius: 16px;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
  }
  .features-video {
    border-radius: 16px;
  }
}
:root {
  --gradient: conic-gradient(
    from 90deg at 50% 50%,
    rgb(251, 55, 60),
    rgba(252, 114, 28, 1),
    rgba(255, 220, 0, 1),
    rgba(27, 206, 255, 1),
    rgba(42, 107, 255, 1),
    rgba(217, 41, 255, 1),
    rgba(255, 10, 92, 1)
  );
  --gradient-red: conic-gradient(
    from 90deg at 50% 50%,
    rgb(220, 38, 38),
    rgba(239, 68, 68, 1),
    rgba(248, 113, 113, 1),
    rgba(252, 165, 165, 1),
    rgba(254, 202, 202, 1),
    rgba(239, 68, 68, 1),
    rgba(220, 38, 38, 1)
  );
  --gradient-green: conic-gradient(
    from 90deg at 50% 50%,
    rgb(34, 197, 94),
    rgba(16, 185, 129, 1),
    rgba(52, 211, 153, 1),
    rgba(110, 231, 183, 1),
    rgba(167, 243, 208, 1),
    rgba(16, 185, 129, 1),
    rgba(34, 197, 94, 1)
  );
  --gradient-cursor-blue: conic-gradient(
    from 90deg at 50% 50%,
    rgb(59, 130, 246),
    rgba(99, 102, 241, 1),
    rgba(139, 92, 246, 1),
    rgba(168, 85, 247, 1),
    rgba(217, 70, 239, 1),
    rgba(236, 72, 153, 1),
    rgba(59, 130, 246, 1)
  );
  --gradient-cursor-green: conic-gradient(
    from 90deg at 50% 50%,
    rgb(34, 197, 94),
    rgba(59, 130, 246, 1),
    rgba(16, 185, 129, 1),
    rgba(5, 150, 105, 1),
    rgba(6, 182, 212, 1),
    rgba(14, 165, 233, 1),
    rgba(34, 197, 94, 1)
  );
  --gradient-cursor-purple: conic-gradient(
    from 90deg at 50% 50%,
    rgb(139, 92, 246),
    rgba(168, 85, 247, 1),
    rgba(217, 70, 239, 1),
    rgba(236, 72, 153, 1),
    rgba(244, 114, 182, 1),
    rgba(251, 113, 133, 1),
    rgba(139, 92, 246, 1)
  );
}

@media (max-width: 768px) {
  .gradient-cursor-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 250px;
    padding: 15px 30px;
    margin: 5px;
  }
  .gradient-cursor-card-sm {
    max-width: 250px;
    min-height: 200px;
    padding: 10px 20px;
  }
  .gradient-cursor-card-lg {
    max-width: 350px;
    min-height: 300px;
    padding: 20px 40px;
  }
  .gradient-cursor-card-xl {
    max-width: 400px;
    min-height: 350px;
    padding: 25px 50px;
  }
  .gradient-cursor-card-horizontal {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 200px;
    flex-direction: column;
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gradient-cursor-card::before,
  .gradient-cursor-glow::before {
    transition: none;
  }
}
.gradient-cursor-card * {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

@media (prefers-contrast: high) {
  .gradient-cursor-card {
    border: 2px solid currentColor;
    background: Canvas;
    color: CanvasText;
  }
  .gradient-cursor-card::before,
  .gradient-cursor-card .gradient-cursor-glow::before {
    display: none;
  }
}
.block-editor-block-list__layout .gradient-cursor-card {
  position: relative;
}
.block-editor-block-list__layout [data-gradient-cursor]::after {
  content: "🎨";
  position: absolute;
  top: -8px;
  right: -8px;
  background: #7c3aed;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  z-index: 1000;
  pointer-events: none;
}

[data-gradient-cursor]::after {
  display: none;
}

/* Red versions of card and glow classes */
.card-red {
  --start: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 10px;
  padding: 10px 40px;
  border-radius: 14px;
  transition: border-color 0.3s ease-in-out;
}
.card-red::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--gradient-red);
  background-attachment: fixed;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(220, 38, 38, 0.1215686275) 0deg, rgb(239, 68, 68), rgba(220, 38, 38, 0) 100deg);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(220, 38, 38, 0.1215686275) 0deg, rgb(239, 68, 68), rgba(220, 38, 38, 0) 100deg);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  opacity: 0.4;
  transition: 0.5s ease;
}
.card-red:hover::before {
  opacity: 0.8;
}
.card-red:hover > .glow-red::before {
  opacity: 1;
}

.glow-red {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(14px);
}
.glow-red::before {
  position: absolute;
  content: "";
  width: 98%;
  height: 98%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  border: 15px solid transparent;
  background: var(--gradient-red);
  background-attachment: fixed;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(220, 38, 38, 0.1215686275) 0deg, rgb(239, 68, 68), rgba(220, 38, 38, 0) 100deg);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(220, 38, 38, 0.1215686275) 0deg, rgb(239, 68, 68), rgba(220, 38, 38, 0) 100deg);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  opacity: 0.6;
  transition: 1s ease;
}

/* Green versions of card and glow classes */
.card-green {
  --start: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 10px;
  padding: 10px 40px;
  border-radius: 14px;
  transition: border-color 0.3s ease-in-out;
}
.card-green::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--gradient-green);
  background-attachment: fixed;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(34, 197, 94, 0.1215686275) 0deg, rgb(16, 185, 129), rgba(34, 197, 94, 0) 100deg);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(34, 197, 94, 0.1215686275) 0deg, rgb(16, 185, 129), rgba(34, 197, 94, 0) 100deg);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  opacity: 0.4;
  transition: 0.5s ease;
}
.card-green:hover::before {
  opacity: 0.8;
}
.card-green:hover > .glow-green::before {
  opacity: 1;
}

.glow-green {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(14px);
}
.glow-green::before {
  position: absolute;
  content: "";
  width: 98%;
  height: 98%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  border: 15px solid transparent;
  background: var(--gradient-green);
  background-attachment: fixed;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(34, 197, 94, 0.1215686275) 0deg, rgb(16, 185, 129), rgba(34, 197, 94, 0) 100deg);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), conic-gradient(from calc((var(--start) - 22) * 1deg), rgba(34, 197, 94, 0.1215686275) 0deg, rgb(16, 185, 129), rgba(34, 197, 94, 0) 100deg);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  opacity: 0.6;
  transition: 1s ease;
}

.pricing-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}
.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.pricing-table-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  height: 100%;
  transition: transform 0.2s ease;
}
.pricing-card.popular .card {
  border: 1px solid var(--accent-primary);
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: 16px;
  background: var(--accent-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 10;
}

.pricing-card-header {
  margin-bottom: var(--spacing-lg);
}
.pricing-card-header .plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}
.pricing-card-header .plan-icon {
  font-size: 2rem;
}
.pricing-card-header .plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.pricing-card-header .plan-price .price-amount {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.pricing-card-header .plan-price .price-period {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-card-features {
  flex: 1;
  margin-bottom: var(--spacing-lg);
}
.pricing-card-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card-features .features-list .feature-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.pricing-card-features .features-list .feature-item .feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--accent-primary);
  color: white;
  border-radius: 2px;
  margin-right: 12px;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}
.pricing-card-features .features-list .feature-item .feature-text {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-card-footer {
  width: 100%;
}
.pricing-card-footer .pricing-cta {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  z-index: 5;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-card-footer .pricing-cta:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}
.pricing-card-footer .pricing-cta.popular {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}
.pricing-card-footer .pricing-cta.popular:hover {
  background: rgba(186, 14, 126, 0.8);
}

.pricing-footer {
  text-align: center;
}
.pricing-footer .pricing-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .pricing-header h2 {
    font-size: 2rem;
  }
  .pricing-table-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-sm);
  }
  .pricing-card:hover {
    transform: translateY(-2px);
  }
  .pricing-card .card {
    padding: var(--spacing-md);
  }
  .pricing-card-header {
    margin-bottom: var(--spacing-md);
  }
  .pricing-card-header .plan-name {
    font-size: 1.125rem;
  }
  .pricing-card-header .plan-price .price-amount {
    font-size: 2rem;
  }
  .popular-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    top: -6px;
    right: 12px;
  }
  .pricing-card-features {
    margin-bottom: var(--spacing-md);
  }
  .pricing-card-features .feature-item {
    padding: 4px 0;
  }
}
.features-showcase-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.features-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}
.features-header h2 span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 16px;
  min-height: 500px;
}
.featured-card .feature-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.featured-card .feature-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.featured-card .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-card .feature-icon {
  margin-bottom: 1rem;
}
.featured-card .feature-icon .dashicons {
  font-size: 2.5rem;
  color: var(--accent-primary);
  width: auto;
  height: auto;
}
.featured-card .feature-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.featured-card .feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.supporting-features {
  display: grid;
  gap: 1rem;
}

.support-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.support-card:hover {
  transform: translateY(-2px);
}
.support-card .support-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.support-card .support-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.support-card .support-icon .dashicons {
  font-size: 1.5rem;
  color: var(--accent-primary);
  width: auto;
  height: auto;
}
.support-card .support-text {
  flex: 1;
  min-width: 0;
}
.support-card .support-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.support-card .support-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .features-showcase-section {
    padding: 2rem 0;
  }
  .features-header {
    margin-bottom: 2rem;
  }
  .features-header h2 {
    font-size: 2rem;
  }
  .features-header .features-subtitle {
    font-size: 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .featured-card {
    min-height: auto;
    padding: 1.5rem;
  }
  .featured-card .feature-image img {
    height: 200px;
  }
  .featured-card .feature-title {
    font-size: 1.5rem;
  }
  .support-card {
    padding: 1rem;
  }
  .support-card .support-content {
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .features-grid {
    padding: 0 1rem;
  }
  .featured-card {
    padding: 1rem;
  }
  .featured-card .feature-image img {
    height: 180px;
  }
  .support-card .support-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .support-card .support-icon {
    margin-top: 0;
  }
}
.leadership-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leadership-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.leadership-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadership-header h2 {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--text-primary);
  margin: 0;
  max-width: 650px;
  margin-left: auto;
  letter-spacing: -0.02em;
}
.leadership-header h2 span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadership-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 1rem auto 4rem auto;
  text-align: center;
  max-width: 500px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  align-self: center;
  width: 100%;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.team-member-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.member-image {
  margin-bottom: var(--spacing-md);
  align-self: center;
}
.member-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.member-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-placeholder .member-initials {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.member-info {
  text-align: center;
}
.member-info .member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}
.member-info .member-position {
  font-size: 0.9rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.member-info .member-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
}

.member-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.member-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.2s ease;
}
.member-social .social-link:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(186, 14, 126, 0.1);
}
.member-social .social-link svg {
  width: 14px;
  height: 14px;
}

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

@media (max-width: 768px) {
  .leadership-section {
    min-height: auto;
    padding: 2rem 0;
  }
  .leadership-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .leadership-header {
    text-align: left;
    order: -1;
  }
  .leadership-header h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-left: 0;
  }
  .leadership-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .team-member-card {
    padding: var(--spacing-md);
  }
  .team-member-card:hover {
    transform: translateY(-2px);
  }
  .member-image {
    margin-bottom: var(--spacing-sm);
  }
  .member-image img {
    width: 70px;
    height: 70px;
  }
  .member-placeholder {
    width: 70px;
    height: 70px;
  }
  .member-placeholder .member-initials {
    font-size: 1.25rem;
  }
  .member-info .member-name {
    font-size: 1.125rem;
  }
  .member-info .member-bio {
    font-size: 0.85rem;
  }
}
.contact-cta-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.contact-cta-section:hover .contact-bg-image {
  transform: translate(-50%, -50%) scale(1.05);
}
.contact-cta-section:hover .image-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.contact-image-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.contact-image-bg.animate-ready[data-animate=fade-in] {
  opacity: 0;
}
.contact-image-bg.animate-ready[data-animate=fade-in].animated {
  opacity: 1;
}

.contact-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  transition: background 0.3s ease;
}

.image-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
  z-index: 3;
}

.image-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
  z-index: 3;
}

.contact-headline {
  text-align: left;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.contact-headline h1 {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--text-primary);
  margin: 0;
  max-width: 650px;
  letter-spacing: -0.02em;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-column h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.contact-column p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.underlined-link {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--accent-primary);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}
.underlined-link:hover {
  color: var(--accent-primary);
  text-decoration-color: var(--accent-primary);
}

.contact-info-list .contact-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-list .contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-list .contact-label {
  font-weight: 500;
  color: var(--text-secondary);
}
.contact-info-list .contact-value {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info-list .contact-value:hover {
  color: var(--accent-primary);
}

.gradient-shape {
  position: absolute;
  border-radius: 3rem;
  z-index: 1;
  opacity: 0.9;
}
.gradient-shape.gradient-shape-1 {
  top: 8%;
  right: 5%;
  width: 400px;
  height: 140px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 105, 180, 0.8) 25%, rgba(255, 20, 147, 0.7) 50%, rgba(220, 20, 60, 0.6) 75%, rgba(186, 14, 126, 0.5) 100%);
  transform: rotate(-12deg);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.2);
}
.gradient-shape.gradient-shape-2 {
  bottom: 15%;
  right: 3%;
  width: 380px;
  height: 160px;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(186, 14, 126, 0.9) 30%, rgba(138, 43, 226, 0.7) 60%, rgba(75, 0, 130, 0.6) 100%);
  transform: rotate(18deg);
  box-shadow: 0 25px 50px rgba(186, 14, 126, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 3rem 0;
    min-height: auto;
  }
  .contact-headline {
    margin-bottom: 3rem;
    padding-left: 1rem;
  }
  .contact-headline h1 {
    font-size: 3rem;
    line-height: 0.95;
    max-width: 100%;
  }
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 var(--spacing-md);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-column h2 {
    font-size: 1.25rem;
  }
  .contact-column p {
    font-size: 0.9rem;
  }
  .gradient-shape.gradient-shape-1 {
    width: 250px;
    height: 90px;
    top: 5%;
    right: 2%;
  }
  .gradient-shape.gradient-shape-2 {
    width: 230px;
    height: 100px;
    bottom: 10%;
    right: 1%;
  }
  .contact-info-list .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
@media (max-width: 480px) {
  .contact-headline {
    padding-left: 0.5rem;
  }
  .contact-headline h1 {
    font-size: 2.2rem;
    line-height: 1;
  }
  .gradient-shape {
    display: none;
  }
}
.feature-comparison-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}
.comparison-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}
.comparison-header h2 span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
  min-width: 800px;
  width: 100%;
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 1fr repeat(var(--service-count, 3), 1fr);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison-header-row .feature-label-header {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison-header-row .service-header {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  background: transparent;
}
.comparison-header-row .service-header:last-child {
  border-right: none;
}
.comparison-header-row .service-header.highlighted {
  background: rgba(186, 14, 126, 0.05);
  border-color: rgba(186, 14, 126, 0.2);
}
.comparison-header-row .service-header.highlighted .service-name {
  color: var(--accent-primary);
}
.comparison-header-row .service-header .service-logo {
  max-width: 60px;
  height: auto;
  margin-bottom: 0.5rem;
}
.comparison-header-row .service-header .service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.comparison-header-row .service-header .recommended-badge {
  display: inline-block;
  background: var(--accent-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr repeat(var(--service-count, 3), 1fr);
  transition: all 0.2s ease;
}
.feature-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.feature-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-row .feature-label {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  background: transparent;
}
.feature-row .feature-label .feature-name {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.feature-row .feature-value {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  background: transparent;
}
.feature-row .feature-value:last-child {
  border-right: none;
}
.feature-row .feature-value.highlighted {
  background: rgba(186, 14, 126, 0.05);
}
.feature-row .feature-value .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
}
.feature-row .feature-value .cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #6b7280;
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
}
.feature-row .feature-value .text-value {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.comparison-cta-row {
  display: grid;
  grid-template-columns: 1fr repeat(var(--service-count, 3), 1fr);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison-cta-row .cta-label {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}
.comparison-cta-row .service-cta {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}
.comparison-cta-row .service-cta:last-child {
  border-right: none;
}
.comparison-cta-row .service-cta.highlighted {
  background: rgba(186, 14, 126, 0.05);
}
.comparison-cta-row .service-cta .comparison-cta-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-width: 120px;
}
.comparison-cta-row .service-cta .comparison-cta-btn.primary {
  background: white;
  color: var(--accent-primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.comparison-cta-row .service-cta .comparison-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
  color: var(--accent-primary);
}
.comparison-cta-row .service-cta .comparison-cta-btn.secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.comparison-cta-row .service-cta .comparison-cta-btn.secondary:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(186, 14, 126, 0.3);
}

@media (max-width: 768px) {
  .feature-comparison-section {
    padding: 2rem 0;
  }
  .comparison-header {
    margin-bottom: 2rem;
  }
  .comparison-header h2 {
    font-size: 2rem;
  }
  .comparison-table-wrapper {
    margin: 0 1rem;
    border-radius: 6px;
  }
  .comparison-table {
    min-width: 600px;
  }
  .comparison-header-row,
  .feature-row,
  .comparison-cta-row {
    grid-template-columns: 1.5fr repeat(var(--service-count, 3), 1fr);
  }
  .feature-label-header,
  .feature-label {
    padding: 1rem;
  }
  .feature-label-header .feature-name,
  .feature-label .feature-name {
    font-size: 0.8rem;
  }
  .service-header {
    padding: 1rem;
  }
  .service-header .service-name {
    font-size: 1rem;
  }
  .service-header .service-logo {
    max-width: 50px;
  }
  .feature-value {
    padding: 0.75rem;
  }
  .feature-value .text-value {
    font-size: 0.75rem;
  }
  .feature-value .check-icon,
  .feature-value .cross-icon {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }
  .service-cta {
    padding: 1rem;
  }
  .service-cta .comparison-cta-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .comparison-table {
    min-width: 500px;
  }
  .comparison-header-row,
  .feature-row,
  .comparison-cta-row {
    grid-template-columns: 1fr repeat(var(--service-count, 3), 0.8fr);
  }
}/*# sourceMappingURL=style.css.map */