/* ============================================
   TYKUNO DESIGN SYSTEM - OPTIMIZED
   Only includes actually used utilities
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--tykuno-text);
  background: var(--tykuno-bg);
  overflow-x: hidden;
}

/* ===== CSS VARIABLES (DESIGN TOKENS) ===== */
:root {
  /* Colors */
  --tykuno-bg: #FDFCF8;
  --tykuno-surface: #FFFFFF;
  --tykuno-text: #1C1917;
  --tykuno-subtext: #57534E;
  --tykuno-gold: #C5A572;
  --tykuno-bronze: #8C7A5B;
  --tykuno-border: #E7E5E4;
  --tykuno-dark: #4A433D;
  --tykuno-dark-bg: #1C1917;
  
  /* Typography */
  --font-urbanist: 'Urbanist', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-bebas: 'Bebas Neue', cursive;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 8px 32px -4px rgba(0, 0, 0, 0.06), 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.33, 1, 0.68, 1);
  --transition-base: 300ms cubic-bezier(0.33, 1, 0.68, 1);
  --transition-slow: 500ms cubic-bezier(0.33, 1, 0.68, 1);
  --transition-spring: cubic-bezier(0.33, 1, 0.68, 1);
  
  /* Opacity (only used ones) */
  --opacity-50: 0.5;
  --opacity-80: 0.8;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-urbanist);
  font-weight: 600;
  line-height: 1.2;
  color: var(--tykuno-text);
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

p {
  line-height: 1.6;
  color: var(--tykuno-subtext);
}

/* ===== UTILITY CLASSES (ONLY USED ONES) ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.font-mono { font-family: var(--font-mono); }

/* ===== LAYOUT UTILITIES (CONSOLIDATED) ===== */
.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column-between { display: flex; flex-direction: column; justify-content: space-between; }
.flex-column-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.flex-grow-1 { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* Spacing - Only Used Ones */
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }
.gap-3xl { gap: var(--spacing-3xl); }

.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.pt-lg { padding-top: var(--spacing-lg); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }
.mb-3xl { margin-bottom: var(--spacing-3xl); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.mt-auto { margin-top: auto; }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-3xl { max-width: 48rem; }

/* Text Utilities - Only Used */
.text-xs { font-size: 0.625rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-tykuno-text { color: var(--tykuno-text); }
.text-tykuno-subtext { color: var(--tykuno-subtext); }
.text-white { color: white; }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-gray-400 { color: #9CA3AF; }
.leading-relaxed { line-height: 1.6; }

/* Background - Only Used */
.bg-gray-50 { background: #F9FAFB; }
.border { border: 1px solid var(--tykuno-border); }
.border-gray-200 { border: 1px solid #F3F4F6; }
.rounded-lg { border-radius: var(--radius-lg); }

/* Grid - Only Used */
.grid-span-2 { grid-column: span 2; }
.grid-row-span-2 { grid-row: span 2; }

/* Icon Containers - Consolidated */
.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.icon-container-2rem { width: 2rem; height: 2rem; }
.icon-container-3rem { width: 2.5rem; height: 2.5rem; }
.icon-container-xl { width: 3rem; height: 3rem; }
.icon-rounded { border-radius: 50%; }
.icon-rounded-md { border-radius: var(--radius-md); }
.icon-blue { background: #DBEAFE; color: #2563EB; }
.icon-gold { background: rgba(197, 165, 114, 0.1); color: var(--tykuno-gold); }
.icon-white { background: rgba(255, 255, 255, 0.2); color: white; backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); }
.icon-green { background: rgba(39, 201, 63, 0.1); color: #27c93f; }
.icon-purple { background: rgba(197, 165, 114, 0.1); color: var(--tykuno-gold); }

/* SVG Sizes */
.svg-sm { width: 1rem; height: 1rem; }
.svg-md { width: 1.5rem; height: 1.5rem; }
.svg-lg { width: 2rem; height: 2rem; }
.svg-icon { width: 1.75rem; height: 1.75rem; }

/* Position & Z-Index */
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* ===== LAYOUT ===== */
.layout {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--tykuno-bg);
  overflow-x: hidden;
}

/* Ambient Light Orbs */
.ambient-orb-1 {
  position: fixed;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: #E8E1D0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  contain: strict;
}

.ambient-orb-2 {
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: #D4B676;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  contain: strict;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.main-content {
  flex-grow: 1;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem;
  padding-right: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-2xl);
  border-radius: var(--radius-full);
  transition: transform var(--transition-slow) var(--transition-spring),
              box-shadow var(--transition-slow) var(--transition-spring);
  will-change: transform;
  transform: translateZ(0);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--tykuno-text);
  transition: background-color var(--transition-base);
}

.navbar-logo:hover {
  background: rgba(255, 255, 255, 0.5);
}

.navbar-logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.navbar-logo:hover .navbar-logo-img {
  transform: scale3d(1.05, 1.05, 1);
}

.navbar-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--tykuno-subtext);
  transition: all var(--transition-base);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--tykuno-text);
  font-weight: 500;
  background: rgba(0, 0, 0, 0.05);
}

.navbar-cta {
  display: none;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: block;
  }
}

.navbar-cta-button {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--tykuno-dark);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base) var(--transition-spring);
}

.navbar-cta-button:hover {
  transform: scale3d(1.05, 1.05, 1);
  box-shadow: var(--shadow-xl);
  background: #3D3732;
}

.navbar-toggle {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 50;
  transition: background-color var(--transition-base);
}

.navbar-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 1.25rem;
}

.navbar-toggle-icon span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all var(--transition-base);
}

.navbar-toggle.active .navbar-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.navbar-toggle.active .navbar-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .navbar-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.navbar-mobile-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate3d(-50%, 0, 0) scale(0.95);
  width: 90vw;
  max-width: 20rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition-slow) var(--transition-spring),
              opacity var(--transition-slow) var(--transition-spring);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.navbar-mobile-menu.active {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
  pointer-events: auto;
}

.navbar-mobile-link {
  padding: 1rem;
  border-radius: var(--radius-xl);
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--tykuno-text);
  transition: background-color var(--transition-base);
}

.navbar-mobile-link:hover {
  background: var(--tykuno-bg);
}

.navbar-mobile-cta {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--tykuno-dark);
  color: white;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}

/* ===== CARDS ===== */
.card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-slow) var(--transition-spring), 
              box-shadow var(--transition-slow) var(--transition-spring),
              border-color var(--transition-slow) var(--transition-spring);
  backface-visibility: hidden;
  contain: layout style paint;
  transform: translateZ(0);
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background: var(--tykuno-dark);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2xl);
}

.card-dark .card-title {
  color: white;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
}

.card-dark .card-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card-dark .card-text-sm {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 0;
}

.card-hover:hover {
  transform: translate3d(0, -0.5rem, 0);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.9);
}

.card-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), transparent, transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.card:hover .card-sheen {
  opacity: 1;
}

.card-noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.card-padding-xl { padding: var(--spacing-xl); }
.card-padding-2xl { padding: var(--spacing-2xl); }
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
}

.card-dark .card-header-row {
  margin-bottom: 0.875rem;
}
.card-content-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-title {
  font-size: 1.375rem;
  font-family: var(--font-urbanist);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.card-text {
  color: var(--tykuno-subtext);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.card-text-sm {
  color: var(--tykuno-subtext);
  line-height: 1.5;
  font-size: 0.875rem;
}
.card-hover-show {
  opacity: 0;
  transition: opacity 0.3s;
  background: var(--tykuno-gold);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.card:hover .card-hover-show {
  opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition-base) var(--transition-spring);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background: var(--tykuno-dark);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
  background: #3D3732;
  transform: translate3d(0, -0.25rem, 0);
}

.btn-secondary {
  background: white;
  color: var(--tykuno-text);
  border: 1px solid #E5E7EB;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  box-shadow: var(--shadow-md);
  transform: translate3d(0, -0.25rem, 0);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes spin {
  from { transform: rotate3d(0, 0, 1, 0deg); }
  to { transform: rotate3d(0, 0, 1, 360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate3d(0, 0, 1, 360deg); }
  to { transform: rotate3d(0, 0, 1, 0deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes shimmer {
  0% { transform: translate3d(-200%, 0, 0); }
  100% { transform: translate3d(200%, 0, 0); }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}

.animate-spin-slow {
  animation: spin 60s linear infinite;
  will-change: transform;
}

.animate-spin-reverse {
  animation: spin-reverse 40s linear infinite;
  will-change: transform;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-scroll {
  animation: scroll 40s linear infinite;
  will-change: transform;
}

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-xl);
}

.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-ring-1 {
  width: 800px;
  height: 800px;
  border: 1px solid rgba(197, 165, 114, 0.1);
  border-radius: 50%;
  animation: spin 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.hero-ring-2 {
  width: 600px;
  height: 600px;
  border: 1px solid rgba(197, 165, 114, 0.2);
  border-radius: 50%;
  animation: spin-reverse 40s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--font-urbanist);
  font-weight: 700;
  line-height: 0.95;
  color: var(--tykuno-text);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-title-small {
  font-size: 0.85em;
}

.hero-subtitle {
  font-size: 0.7em;
  color: var(--tykuno-subtext);
  opacity: 0.8;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  display: block;
  margin-top: 0.5rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
  min-height: 50vh;
  padding-bottom: var(--spacing-3xl);
}

.about-hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(197, 165, 114, 0.3);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--tykuno-bronze);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.about-hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-urbanist);
  font-weight: 700;
  color: var(--tykuno-text);
  line-height: 1.1;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.02em;
}

.about-hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--tykuno-subtext);
  line-height: 1.7;
  max-width: 56rem;
  margin: 0 auto;
}

.about-mission-card,
.about-methodology-card,
.about-founder-card {
  max-width: 80rem;
  margin: 0 auto;
}

.section-container.about-section-spacing {
  margin-bottom: var(--spacing-3xl) !important;
  margin-top: 0;
}

.section-container.about-section-spacing:first-of-type {
  margin-top: var(--spacing-xl);
}

.about-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--tykuno-text);
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.01em;
}

.about-section-title-dark {
  color: white;
}

.about-content-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--tykuno-subtext);
}

.about-content-text p {
  margin: 0;
  color: var(--tykuno-subtext);
}

.about-content-text-dark {
  color: rgba(255, 255, 255, 0.9);
}

.about-content-text-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.about-agent-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.about-agent-item {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.about-agent-title {
  font-size: 1.25rem;
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--tykuno-text);
  margin-bottom: var(--spacing-md);
}

.about-agent-item p {
  margin: 0;
  color: var(--tykuno-subtext);
  line-height: 1.7;
}

.about-founder-signature {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-founder-image {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(197, 165, 114, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 
              0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #e0e0e0;
  flex-shrink: 0;
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-founder-image:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 
              0 4px 12px rgba(197, 165, 114, 0.3);
}

.about-founder-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(197, 165, 114, 0.2);
  pointer-events: none;
  z-index: 1;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.2);
  position: relative;
  z-index: 0;
  transition: transform 0.3s ease;
}

.about-founder-image:hover .founder-photo {
  transform: scale(1.25);
}

.about-founder-name {
  display: flex;
  align-items: center;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--tykuno-text);
  font-style: italic;
  margin: 0;
}

.founder-link {
  color: var(--tykuno-text);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.founder-link:hover {
  color: var(--tykuno-gold);
  border-bottom-color: var(--tykuno-gold);
}

.about-bottom-line-card {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
}

.about-bottom-line-card .about-content-text {
  max-width: 48rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(197, 165, 114, 0.3);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--tykuno-bronze);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #27c93f;
  animation: pulse 2s infinite;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--tykuno-subtext);
  max-width: 36rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-auto-rows-min {
  grid-auto-rows: minmax(220px, auto);
}

@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  /* About Page Mobile Styles */
  .about-hero {
    min-height: auto;
    padding-bottom: var(--spacing-xl);
  }
  
  .about-hero-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
  
  .about-hero-text {
    font-size: clamp(0.9375rem, 3vw, 1.125rem);
    padding: 0 var(--spacing-sm);
  }
  
  .section-container {
    padding: 0 var(--spacing-sm);
  }
  
  .card-padding-2xl {
    padding: var(--spacing-lg);
  }
  
  .card-padding-xl {
    padding: var(--spacing-md);
  }
  
  .section-container.about-section-spacing {
    margin-bottom: var(--spacing-2xl) !important;
  }
  
  .section-container.about-section-spacing:first-of-type {
    margin-top: var(--spacing-lg);
  }
  
  .about-section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--spacing-lg);
  }
  
  .about-content-text {
    font-size: clamp(0.9375rem, 3vw, 1.0625rem);
    gap: var(--spacing-md);
  }
  
  .about-agent-list {
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
  }
  
  .about-agent-item {
    padding: var(--spacing-md);
  }
  
  .about-agent-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .about-founder-signature {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
  }
  
  .about-founder-image {
    width: 60px;
    height: 60px;
  }
  
  .about-mission-card,
  .about-methodology-card,
  .about-founder-card {
    max-width: 100%;
  }
  
  /* Seamless Integration Card Mobile Styles */
  .integration-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    margin: 0.75rem 0;
  }
  
  .integration-type-item {
    padding: 0.625rem;
    gap: 0.375rem;
  }
  
  .integration-type-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .integration-type-label {
    font-size: 0.75rem;
  }
  
  .integration-feature {
    padding: var(--spacing-md);
  }
  
  .integration-feature-title {
    font-size: 0.9375rem;
    gap: var(--spacing-sm);
  }
  
  .integration-check-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .integration-feature-text {
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
    margin-left: 0;
  }
}

/* ===== FLOATING CARDS ===== */
.floating-card {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-card-delayed {
  position: absolute;
  animation: float 6s ease-in-out 3s infinite;
}

@media (max-width: 1279px) {
  .floating-card,
  .floating-card-delayed {
    display: none;
  }
}

.floating-card-base {
  padding: 1rem;
  max-width: 240px;
  border-radius: 1rem;
}

.lead-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lead-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tykuno-text);
}

.lead-card-subtitle {
  font-size: 0.625rem;
  color: #6B7280;
}

.progress-bar {
  height: 0.375rem;
  width: 100%;
  background: #F3F4F6;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.progress-bar-blue {
  background: #3B82F6;
}

.progress-bar-80 {
  width: 80%;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.badge-green {
  color: #27c93f;
  background: rgba(39, 201, 63, 0.05);
}

.badge-tag {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid #F3F4F6;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: #6B7280;
  box-shadow: var(--shadow-sm);
}

/* ===== SECTIONS ===== */
.section-container {
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
  display: block;
}

.section-padding-lg {
  padding: var(--spacing-3xl) var(--spacing-md);
}

.section-header {
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 0 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-family: var(--font-urbanist);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--tykuno-text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--tykuno-subtext);
  font-size: 1.125rem;
}

/* ===== PRICING CARD ===== */
.pricing-card {
  max-width: 87.5rem;
  margin: 0 auto;
  background: white;
  border-radius: 3rem;
  padding: 2rem;
  border: 1px solid var(--tykuno-border);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  position: relative;
}

.pricing-card-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f0f0f0 1px, transparent 1px), 
              linear-gradient(to bottom, #f0f0f0 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
}

.pricing-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: center;
}

.pricing-title {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-family: var(--font-urbanist);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--tykuno-text);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pricing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 767px) {
  .pricing-feature-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-feature-item {
  padding: 1rem;
  border-radius: 1rem;
  background: #F9FAFB;
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.pricing-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-urbanist);
  color: var(--tykuno-text);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.pricing-feature-desc {
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== CODE BLOCK ===== */
.code-block {
  width: 100%;
  background: #1e1e1e;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-2xl);
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #D1D5DB;
  border: 1px solid #374151;
  position: relative;
  transition: transform 0.5s;
}

.code-block-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #374151;
  padding-bottom: 1rem;
}

.code-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.code-dot-red { background: #ff5f56; }
.code-dot-yellow { background: #ffbd2e; }
.code-dot-green { background: #27c93f; }

.code-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0.9;
}

.code-line {
  display: flex;
}

.code-prompt { color: #4ADE80; margin-right: 0.5rem; }
.code-keyword { color: #60A5FA; margin-right: 0.5rem; }
.code-comment { color: #6B7280; padding-left: 1.5rem; }
.code-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.code-highlight-text { color: white; font-weight: 700; }
.code-decision { color: #FBBF24; margin-right: 0.5rem; }
.code-cursor { animation: pulse 2s infinite; }

/* ===== INTEGRATION ===== */
.integration-subtitle {
  font-size: 0.9375rem;
  font-family: var(--font-urbanist);
  font-weight: 700;
  color: #4A433D;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.integration-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.integration-feature:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translate3d(0, -2px, 0);
}

.integration-feature-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 1rem;
  color: var(--tykuno-text);
}

.integration-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--tykuno-gold);
  flex-shrink: 0;
}

.integration-feature-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--tykuno-subtext);
  margin-left: 2rem;
}

.integration-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.integration-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: default;
}

.integration-type-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.integration-type-icon {
  width: 2rem;
  height: 2rem;
  color: var(--tykuno-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-type-icon svg {
  width: 100%;
  height: 100%;
}

.integration-type-label {
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-urbanist);
  color: var(--tykuno-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gradient-overlay-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(197, 165, 114, 0.05), transparent);
  pointer-events: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 0 var(--spacing-md) var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.cta-card {
  padding: var(--spacing-2xl) var(--spacing-xl);
  text-align: center;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4A433D;
}

.card-dark.cta-card {
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: #4A433D;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--font-urbanist);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: white;
}

.cta-description {
  color: #D1D5DB;
  max-width: 36rem;
  margin: 0 auto var(--spacing-xl);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-button-white {
  background: white;
  color: #4A433D;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}

.cta-button-white:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: var(--shadow-xl);
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--tykuno-border);
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--tykuno-subtext);
  max-width: 20rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-link {
  color: var(--tykuno-subtext);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--tykuno-text);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tykuno-dark);
  transition: all var(--transition-base) var(--transition-spring);
}

.footer-social-link:hover {
  opacity: 0.7;
  transform: scale3d(1.1, 1.1, 1);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(229, 231, 235, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9CA3AF;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 1000;
  max-width: 90vw;
  width: 100%;
  max-width: 32rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-lg);
  display: none;
  flex-direction: column;
  gap: var(--spacing-md);
  animation: fadeInUp 0.5s ease-out;
  will-change: transform, opacity;
}

.cookie-popup.active {
  display: flex;
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.cookie-popup-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--tykuno-text);
  font-family: var(--font-urbanist);
}

.cookie-popup-text {
  font-size: 0.875rem;
  color: var(--tykuno-subtext);
  line-height: 1.5;
}

.cookie-popup-link {
  color: var(--tykuno-gold);
  text-decoration: none;
}

.cookie-popup-link:hover {
  text-decoration: underline;
}

.cookie-popup-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-popup-button {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cookie-popup-accept {
  background: var(--tykuno-dark);
  color: white;
}

.cookie-popup-accept:hover {
  background: #3D3732;
  transform: translate3d(0, -2px, 0);
  box-shadow: var(--shadow-md);
}

.cookie-popup-decline {
  background: transparent;
  color: var(--tykuno-subtext);
  border: 1px solid var(--tykuno-border);
}

.cookie-popup-decline:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--tykuno-gold);
  color: var(--tykuno-text);
}

/* ===== POLICY PAGES ===== */
.policy-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: calc(var(--spacing-3xl) + 5rem) var(--spacing-xl) var(--spacing-3xl);
}

.policy-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-2xl);
}

.policy-page h2 {
  font-size: 1.5rem;
  margin: var(--spacing-2xl) 0 var(--spacing-lg);
}

.policy-page h3 {
  font-size: 1.25rem;
  margin: var(--spacing-xl) 0 var(--spacing-md);
}

.policy-page p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.policy-page ul,
.policy-page ol {
  margin: 0 0 var(--spacing-lg) var(--spacing-2xl);
  padding: 0;
}

.policy-page li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.policy-page strong {
  font-weight: 600;
}

.policy-page a {
  color: var(--tykuno-gold);
  text-decoration: none;
}

.policy-page a:hover {
  text-decoration: underline;
}

/* ===== ANIMATION STATE CLASSES ===== */
.sms-message-enter {
  animation: fadeInUp 0.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.guardrail-animation-container {
  width: 100%;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Guardrail Animation Visibility Classes */
.guardrail-warn-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.guardrail-fix-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.guardrail-footer-visible {
  opacity: 1 !important;
  transform: scale3d(1, 1, 1) !important;
}

.guardrail-status-visible {
  opacity: 1 !important;
}

.journey-row-active {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  pointer-events: auto !important;
}

.journey-row-inactive {
  opacity: 0 !important;
  transform: translate3d(0, -1rem, 0) !important;
  pointer-events: none !important;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-ring-1,
  .hero-ring-2 {
    animation: none !important;
  }
  
  .animate-float,
  .animate-spin-slow,
  .animate-spin-reverse,
  .animate-scroll {
    animation: none !important;
  }
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(197, 165, 114, 0.3);
  color: var(--tykuno-text);
}

/* ===== SCROLLBAR ===== */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== TEXT GRADIENT ===== */
.text-gradient-gold {
  background: linear-gradient(135deg, #8C7A5B 0%, #C5A572 50%, #8C7A5B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 8s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* ===== SKIP TO CONTENT (Accessibility) ===== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--tykuno-dark);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 var(--radius-md) 0;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--tykuno-gold);
  outline-offset: 2px;
}

/* ===== FOCUS STYLES (Accessibility) ===== */
*:focus-visible {
  outline: 3px solid var(--tykuno-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--tykuno-gold);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* ===== HOME PAGE ANIMATIONS ===== */
/* SMS Animation */
.sms-message {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: var(--shadow-sm);
}

.sms-inbound {
  align-self: flex-start;
  background: #2563EB;
  color: white;
  border-bottom-left-radius: 0;
}

.sms-outbound {
  align-self: flex-end;
  background: #D4B676;
  color: white;
  border-bottom-right-radius: 0;
}

#smsAnimation {
  width: 100%;
  height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
}

/* Guardrail Animation */
.guardrail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #A8A29E;
  text-transform: uppercase;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid rgba(231, 229, 228, 0.6);
  margin-bottom: 0.75rem;
}

.guardrail-status {
  color: #22C55E;
  transition: opacity 0.5s;
}

.guardrail-warn,
.guardrail-fix {
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1),
              opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform, opacity;
}

.guardrail-warn {
  background: #F8F7F4;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.guardrail-fix {
  background: #1C1917;
  box-shadow: var(--shadow-xl);
}

.guardrail-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  padding-top: 0.125rem;
  flex-shrink: 0;
}

.guardrail-warn .guardrail-label {
  color: #C5A572;
}

.guardrail-fix .guardrail-label {
  color: #22C55E;
}

.guardrail-warn p,
.guardrail-fix p {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  line-height: 1.4;
  margin: 0;
}

.guardrail-warn p {
  color: var(--tykuno-subtext);
}

.guardrail-fix p {
  color: rgba(255, 255, 255, 0.9);
}

.guardrail-footer {
  margin-top: 0.375rem;
  text-align: center;
  transition: all 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
}

.guardrail-footer span {
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--tykuno-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

/* Journey Intelligence Animation */
.journey-table {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.875rem;
  padding: 0.75rem;
  overflow: visible;
  box-shadow: var(--shadow-2xl);
  backdrop-filter: blur(12px);
  position: relative;
  margin-bottom: 0.75rem;
}

.journey-table-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 0.5625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  padding: 0 0.5rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.journey-table-header span:nth-child(3) {
  text-align: center;
}

.journey-table-header span:nth-child(4) {
  text-align: right;
}

.journey-table-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: auto;
  padding: 0.25rem 0;
}

.journey-table-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: background-color, transform;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  pointer-events: auto !important;
  visibility: visible !important;
  position: relative !important;
  display: grid !important;
}

.journey-table-row.journey-row-active {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translate3d(0, 0, 0) scale3d(1.02, 1.02, 1);
}

.journey-table-row.journey-row-inactive {
  background-color: transparent;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
  opacity: 1 !important;
  display: grid !important;
  visibility: visible !important;
  position: relative !important;
}

.journey-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 0.25rem;
  gap: 0.125rem;
}

.journey-name span:first-child {
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  word-break: break-word;
  margin-bottom: 0.125rem;
}

.journey-source {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journey-stage {
  display: flex;
  justify-content: flex-start;
}

.journey-stage span {
  font-size: 0.5625rem;
  font-weight: 900;
  padding: 0.1875rem 0.625rem;
  border-radius: 0.375rem;
  letter-spacing: -0.02em;
}

.journey-score {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  justify-content: center;
}

.journey-progress-bar {
  width: 3rem;
  height: 0.25rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  overflow: hidden;
}

.journey-progress-bar div {
  height: 100%;
  transition: width 1s ease-out;
}

.journey-score span {
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.journey-value {
  text-align: right;
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: white;
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  margin-top: 0.5rem;
}

#journeyAnimation {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 1;
  min-height: 0;
}

.journey-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.7s;
}

.journey-timeline-dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.7s;
}

.journey-ping {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.4;
}

.journey-pulse {
  position: absolute;
  inset: -4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.journey-timeline-item > div {
  display: flex;
  flex-direction: column;
}

.journey-timeline-item > div span:first-child {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.7s;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.125rem;
}

.journey-timeline-item > div span:last-child {
  line-height: 1.3;
  transition: transform 0.5s;
  transform-origin: left;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6875rem;
}

/* Revenue Timeline */
.revenue-timeline {
  width: 100%;
  padding: 2rem 0 4rem;
}

@media (min-width: 768px) {
  .revenue-timeline {
    padding: 3rem 0 6rem;
  }
}

.revenue-timeline-container {
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
}

@media (min-width: 640px) {
  .revenue-timeline-container {
    padding: 0 1rem;
  }
}

.revenue-timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.revenue-timeline-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--tykuno-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.5s;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .revenue-timeline-icon {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 768px) {
  .revenue-timeline-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}

.revenue-timeline-item:hover .revenue-timeline-icon {
  transform: scale3d(1.1, 1.1, 1);
  box-shadow: var(--shadow-md);
}

.revenue-timeline-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--tykuno-subtext);
  opacity: 0.5;
}

@media (min-width: 640px) {
  .revenue-timeline-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (min-width: 768px) {
  .revenue-timeline-icon svg {
    width: 2rem;
    height: 2rem;
  }
}

.revenue-timeline-icon.active {
  border-radius: 0.75rem;
  border-color: rgba(197, 165, 114, 0.4);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .revenue-timeline-icon.active {
    border-radius: 1rem;
  }
}

.revenue-timeline-icon-active {
  background: #FAF7F0;
  border-color: rgba(197, 165, 114, 0.5);
}

.revenue-timeline-icon.active svg {
  color: var(--tykuno-gold);
}

.revenue-timeline-item:hover .revenue-timeline-icon.active {
  box-shadow: var(--shadow-lg);
  border-color: var(--tykuno-gold);
}

.revenue-timeline-label {
  font-size: 0.5rem;
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--tykuno-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  padding: 0 0.25rem;
}

@media (min-width: 640px) {
  .revenue-timeline-label {
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .revenue-timeline-label {
    font-size: 0.875rem;
  }
}

.revenue-timeline-label.active {
  color: var(--tykuno-text);
}

.revenue-timeline-connector {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .revenue-timeline-connector {
    height: 5rem;
  }
}

.revenue-timeline-connector-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(197, 165, 114, 0.2);
  overflow: hidden;
  margin: 0 0.125rem;
}

@media (min-width: 768px) {
  .revenue-timeline-connector-line {
    margin: 0 0.5rem;
  }
}

.revenue-timeline-connector-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--tykuno-gold), transparent);
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  animation: shimmer 3s infinite linear;
  will-change: transform;
}

/* Logic Engine SVG */
.logic-engine {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.logic-engine svg {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.logic-engine-label {
  position: absolute;
  top: 80%;
  font-size: 0.5rem;
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--tykuno-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  transform: translate3d(-50%, -50%, 0);
}

@media (min-width: 640px) {
  .logic-engine-label {
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .logic-engine-label {
    font-size: 0.875rem;
  }
}

.logic-engine-label-left {
  left: 6.25%;
}

.logic-engine-label-center {
  left: 50%;
}

.logic-engine-label-right {
  left: 93.75%;
}

/* CRM Logo Scroller */
.crm-scroller {
  position: relative;
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.crm-scroller-fade-left,
.crm-scroller-fade-right {
  position: absolute;
  inset-y: 0;
  width: 4rem;
  z-index: 20;
  pointer-events: none;
}

.crm-scroller-fade-left {
  left: 0;
  background: linear-gradient(to right, #FCFCF9, transparent);
}

.crm-scroller-fade-right {
  right: 0;
  background: linear-gradient(to left, #FCFCF9, transparent);
}

.crm-scroller-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  align-items: center;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.crm-logo {
  color: rgba(197, 165, 114, 0.6);
  font-family: var(--font-bebas);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .crm-logo {
    font-size: 2.25rem;
  }
}

.crm-logo:hover {
  color: var(--tykuno-gold);
}

/* Context Thread Animation Styles */
.context-thread {
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
  transition: all 0.5s;
}

.context-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

