@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;600;700;900&family=Inter:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --color-bg: #070707;
  --color-bg-alt: #0e0e0e;
  --color-card: #141414;
  --color-text-primary: #ffffff;
  --color-text-secondary: #999999;
  --color-text-muted: #4e4e4e;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.2);
  --color-accent: #ffffff;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  
  --container-width: 1400px;
}

/* --- RESET & GENERAL --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor for custom cursor experience */
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Typography Selection */
::selection {
  background-color: rgba(255, 255, 255, 0.95);
  color: #000000;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
}

/* --- CUSTOM INTERACTIVE CURSOR --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Cursor states on hover */
body.hover-interactive .custom-cursor {
  width: 4px;
  height: 4px;
  background-color: #000;
}

body.hover-interactive .custom-cursor-follower {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 1);
  mix-blend-mode: difference;
}

body.hover-drag .custom-cursor-follower::after {
  content: 'DRAG';
  font-family: var(--font-mono);
  font-size: 9px;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- CANVAS BACKGROUND --- */
#canvas-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: auto;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition-normal);
}

header.scrolled {
  background-color: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text-primary);
}

.logo-icon {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: rotateLogo 8s linear infinite;
}

@keyframes rotateLogo {
  100% { transform: rotate(360deg); }
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Sound Bar Equalizer (Lusion-style) */
.sound-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  padding: 4px;
  cursor: pointer;
}

.sound-bar {
  width: 2px;
  height: 100%;
  background-color: var(--color-text-primary);
  transform-origin: bottom;
  animation: soundWave 1.2s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.sound-toggle.playing .sound-bar {
  animation-play-state: running;
}

.sound-bar:nth-child(2) { animation-delay: 0.15s; }
.sound-bar:nth-child(3) { animation-delay: 0.3s; }
.sound-bar:nth-child(4) { animation-delay: 0.05s; }
.sound-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes soundWave {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

/* Action Button */
.btn-talk {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
}

.btn-talk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d1d1d1;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.btn-talk span {
  position: relative;
  z-index: 2;
}

.btn-talk svg {
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-talk:hover::before {
  transform: translateX(0);
}

.btn-talk:hover svg {
  transform: translateX(4px);
}

/* Menu Toggle Button */
.menu-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-text-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.sound-toggle, .btn-talk, .menu-toggle {
  pointer-events: auto;
}

/* Navigation Overlay Menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0a0a0a;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.85, 0, 0.15, 1);
}

.nav-overlay.open {
  transform: translateY(0);
}

.nav-overlay-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: var(--container-width);
  padding: 0 4rem;
}

@media (max-width: 992px) {
  .nav-overlay-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link-item {
  text-decoration: none;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-link-item {
    font-size: 2.5rem;
  }
}

.nav-link-item span {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-item svg {
  width: 32px;
  height: 32px;
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.nav-link-item:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.nav-link-item:hover span {
  transform: translateX(10px);
}

.nav-links:hover .nav-link-item:not(:hover) {
  opacity: 0.3;
}

.nav-overlay-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--color-border);
  padding-left: 4rem;
}

@media (max-width: 992px) {
  .nav-overlay-info {
    border-left: none;
    padding-left: 0;
    gap: 2rem;
  }
}

.nav-info-section h5 {
  margin-bottom: 1rem;
}

.nav-info-section p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.nav-socials {
  display: flex;
  gap: 1.5rem;
}

.nav-socials a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.nav-socials a:hover {
  color: var(--color-text-primary);
}

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

#hero-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-line {
  width: 40px;
  height: 1px;
  background-color: var(--color-text-secondary);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5.5rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1100px;
  margin-bottom: 2.5rem;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title span {
  display: block;
}

.hero-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text-primary);
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 450px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  align-self: center;
}

.scroll-line-container {
  width: 1px;
  height: 60px;
  background-color: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-line {
  width: 100%;
  height: 30px;
  background-color: var(--color-accent);
  position: absolute;
  top: -30px;
  animation: scrollDown 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollDown {
  0% { top: -30px; }
  100% { top: 60px; }
}

/* --- REEL SECTION --- */
.reel-section {
  padding: 8rem 0;
  background-color: var(--color-bg-alt);
  position: relative;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label .line {
  width: 20px;
  height: 1px;
  background-color: var(--color-text-secondary);
}

.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

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

.reel-info h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.reel-info p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-text-primary);
  padding-bottom: 0.4rem;
  transition: border-color 0.3s;
}

.btn-secondary:hover {
  border-color: transparent;
}

.btn-secondary svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Cinematic Video Placeholder */
.reel-video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px);
}

.reel-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #252525 0%, #0c0c0c 100%);
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.reel-video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reel-video-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reel-video-lines span {
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.reel-video-lines span:nth-child(1) { width: 40px; }
.reel-video-lines span:nth-child(2) { width: 25px; }

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: var(--transition-normal);
  z-index: 10;
}

.play-button svg {
  fill: #fff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-video-container:hover .play-button {
  background-color: #ffffff;
  color: #000000;
  transform: scale(1.1);
}

.reel-video-container:hover .play-button svg {
  fill: #000;
  transform: scale(0.95);
}

/* --- SERVICES SECTION --- */
.services-section {
  padding: 8rem 0;
  position: relative;
}

.services-header {
  margin-bottom: 5rem;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.services-header p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 3.5rem;
  border-radius: 12px;
  transition: var(--transition-normal), border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--color-border-hover);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  display: block;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-footer {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-tags {
  display: flex;
  gap: 1rem;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.service-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.service-card:hover .service-arrow {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: rotate(-45deg);
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
  padding: 8rem 0;
  background-color: var(--color-bg-alt);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.portfolio-header h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.portfolio-header p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.portfolio-item {
  text-decoration: none;
  color: var(--color-text-primary);
  display: block;
}

.portfolio-img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  position: relative;
  margin-bottom: 1.5rem;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(100%) contrast(1.1);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1);
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.portfolio-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.portfolio-info p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.portfolio-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.portfolio-footer {
  margin-top: 5rem;
  text-align: center;
}

/* --- FOUNDER & VISION SECTION --- */
.founder-section {
  padding: 10rem 0;
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: center;
}

@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.founder-quote {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .founder-quote {
    font-size: 2rem;
  }
}

.founder-quote .highlight {
  font-weight: 700;
  display: block;
}

.founder-info h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.founder-info .title {
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  display: block;
}

.founder-info p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.founder-signature {
  margin-top: 3rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: inline-block;
}

/* --- FOOTER & CONTACT --- */
footer {
  background-color: #030303;
  padding: 8rem 0 3rem 0;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-section p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Premium Form Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: #fff;
  padding: 0.8rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #ffffff;
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  pointer-events: none;
  transition: transform 0.3s, color 0.3s;
  transform-origin: left top;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-20px) scale(0.85);
  color: #ffffff;
}

.btn-submit {
  align-self: flex-start;
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition-normal);
}

.btn-submit:hover {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

.btn-submit svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  color: #2ed573;
  display: block;
}

.form-status.error {
  color: #ff4757;
  display: block;
}

.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newsletter-box {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 4rem;
}

.newsletter-box h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.newsletter-box p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-right: none;
  padding: 0.8rem 1.2rem;
  color: #fff;
  border-radius: 4px 0 0 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-border-hover);
}

.newsletter-btn {
  background-color: #ffffff;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background-color: #e5e5e5;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .footer-meta {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

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

.copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --- HERO GLOWS AMBIENT ANIMATION --- */
.hero-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  top: -10%;
  left: 10%;
  animation: floatGlow1 22s infinite alternate ease-in-out;
}

.glow-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(150, 150, 150, 0.05) 0%, transparent 70%);
  bottom: -20%;
  right: 10%;
  animation: floatGlow2 28s infinite alternate ease-in-out;
}

.glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.04) 0%, transparent 70%);
  top: 35%;
  left: 45%;
  animation: floatGlow3 20s infinite alternate ease-in-out;
}

@keyframes floatGlow1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(120px, 70px) scale(1.15);
  }
  100% {
    transform: translate(-40px, 130px) scale(0.9);
  }
}

@keyframes floatGlow2 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  50% {
    transform: translate(-150px, -80px) scale(0.95);
  }
  100% {
    transform: translate(90px, -140px) scale(1.1);
  }
}

@keyframes floatGlow3 {
  0% {
    transform: translate(0, 0) scale(0.9);
  }
  50% {
    transform: translate(70px, -90px) scale(1.05);
  }
  100% {
    transform: translate(-60px, 40px) scale(1);
  }
}
