@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@500;700;800&display=swap');

:root {
  /* Color Palette - Deep Obsidian & Liquid Amber/Gold */
  --bg-dark: #050508;
  --bg-card: #0d0d12;
  --bg-card-hover: #12121a;
  --bg-glass: rgba(5, 5, 8, 0.75);
  
  --border-light: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(212, 175, 55, 0.3);
  
  --text-pure: #ffffff;
  --text-main: #e2e2e9;
  --text-muted: #8e8e9f;
  --text-dark: #4b4b59;
  
  --gold-primary: #d4af37;
  --gold-secondary: #f4d068;
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d068 50%, #fef3c7 100%);
  --dark-gradient: linear-gradient(180deg, #050508 0%, #0d0d12 100%);
  
  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1b1b24;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Selection */
::selection {
  background: var(--gold-glow);
  color: var(--text-pure);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-pure);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse-glow 2s infinite alternate;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-pure);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Menu Toggle Button for Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-pure);
  transition: var(--transition-smooth);
}

/* Background Generative Ambient Lights */
.ambient-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.glow-orb-1 {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
  filter: blur(80px);
  animation: float-slow 25s infinite alternate;
}

.glow-orb-2 {
  position: absolute;
  top: 40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0) 70%);
  filter: blur(80px);
  animation: float-slow 30s infinite alternate-reverse;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
}

.hero h1 .text-glow {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-main);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #050508;
  border: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-pure);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Sections General Styling */
section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  max-width: 600px;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

/* Intro/Write-up Section */
.intro-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.intro-text p strong {
  color: var(--text-pure);
  font-weight: 600;
}

.intro-media {
  position: relative;
  aspect-ratio: 16/10;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Generative Technology Visual Grid Placeholder */
.tech-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(5,5,8,0) 60%),
              radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.05) 0%, rgba(5,5,8,0) 50%);
  opacity: 0.7;
}

.tech-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
}

.tech-core-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 40s linear infinite;
}

.tech-core-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--gold-glow);
  animation: pulse-glow 3s infinite alternate;
}

.tech-core-inner svg {
  width: 32px;
  height: 32px;
  fill: #050508;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
}

.capability-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.04);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-icon {
  margin-bottom: 2.5rem;
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  z-index: 10;
}

.capability-card:hover .capability-icon {
  background: var(--gold-gradient);
  color: #050508;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.capability-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  z-index: 10;
}

.capability-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  z-index: 10;
  font-weight: 300;
}

/* Call to Action Section */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(5,5,8,0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Owners Profile Page Styles */
.owners-hero {
  padding-top: 160px;
  padding-bottom: 4rem;
}

.owners-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.owner-profile {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 4rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.owner-profile:hover {
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.03);
}

.owner-meta {
  margin-bottom: 2rem;
}

.owner-name {
  font-size: 2.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.owner-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.owner-bio {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.owner-bio p {
  margin-bottom: 1.25rem;
}

.owner-bio p:last-child {
  margin-bottom: 0;
}

.owner-focus {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.owner-focus h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-main);
}

/* Philosophy Section */
.philosophy-section {
  background-color: rgba(13, 13, 18, 0.5);
  border-top: 1px solid var(--border-light);
}

.phil-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.phil-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.3;
  color: var(--text-pure);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.phil-quote span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phil-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

/* Simple Premium Contact Form */
.contact-section {
  padding-bottom: 8rem;
}

.contact-layout {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 450px;
}

.contact-details {
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

.contact-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1rem;
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background-color: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer Styling */
footer {
  background-color: #030305;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0;
  color: var(--text-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

/* Animation Classes (Intersection Observer) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Animations Keyframes */
@keyframes float-slow {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
  100% { box-shadow: 0 0 45px rgba(212, 175, 55, 0.35); }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .capabilities-grid {
    grid-template-cols: repeat(2, 1fr);
  }
  
  .intro-grid,
  .owners-grid,
  .contact-layout {
    grid-template-cols: 1fr;
    gap: 3rem;
  }
  
  .intro-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .capabilities-grid {
    grid-template-cols: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .owner-profile {
    padding: 3rem 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}
