* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00ff88;
  --secondary: #7c3aed;
  --dark: #0a0a0f;
  --dark-light: #1a1a2e;
  --text: #e0e0e0;
  --accent: #ff006e;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
  z-index: -1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 255, 136, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eco-section {
  background: var(--dark-light);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.eco-card {
  background: rgba(0, 255, 136, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.eco-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.eco-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.eco-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.print-tech {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.tech-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.tech-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--dark-light);
  padding: 2rem;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.tech-item:hover {
  border-color: var(--secondary);
}

.tech-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.tech-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.2),
    rgba(0, 255, 136, 0.2)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
}

.cs-legacy {
  background: var(--dark-light);
}

.legacy-timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) > * {
  direction: ltr;
}

.timeline-content {
  padding: 2rem;
  background: rgba(255, 0, 110, 0.05);
  border-radius: 20px;
  border-left: 4px solid var(--accent);
}

.timeline-content h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.timeline-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 110, 0.2),
    rgba(124, 58, 237, 0.2)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
}

.lookbook {
  background: var(--dark);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3/4;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
  transition: transform 0.3s;
}

.lookbook-item:hover {
  transform: scale(1.05);
}

.sizing {
  background: var(--dark-light);
}

.sizing-tool {
  max-width: 800px;
  margin: 3rem auto;
  background: rgba(124, 58, 237, 0.1);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--secondary);
}

.size-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.size-option {
  padding: 1rem;
  background: var(--dark);
  border: 2px solid var(--secondary);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
}

.size-option:hover,
.size-option.active {
  background: var(--secondary);
  transform: scale(1.1);
}

.size-chart {
  margin-top: 2rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

th {
  background: var(--secondary);
  color: white;
  font-weight: bold;
}

.contact {
  background: var(--dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  background: var(--dark-light);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--dark);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  background: var(--dark-light);
  padding: 2rem;
  border-radius: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 10px;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary);
}

footer {
  background: var(--dark-light);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(even) {
    direction: ltr;
  }
}
