@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #1a1a1a;
  --light-gray: #f5f5f5;
  --dark-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--dark-bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* BLOBS BACKGROUND */

.blobs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.blob {
  position: absolute;
  opacity: 1;
  mix-blend-mode: multiply;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 30% 30%, #464646, #979797);
  border-radius: 43% 57% 38% 62% / 58% 37% 63% 42%;
  top: -200px;
  left: -200px;
  filter: blur(8px);
  animation: blob-move-1 15s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 30% 30%, #464646, #979797);
  border-radius: 71% 29% 66% 34% / 41% 44% 56% 59%;
  top: 30%;
  right: -200px;
  filter: blur(10px);
  opacity: 0.9;
  animation: blob-move-2 18s ease-in-out infinite;
}

.blob-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle at 30% 30%, #464646, #979797);
  border-radius: 37% 63% 58% 42% / 47% 56% 44% 53%;
  bottom: -150px;
  left: 5%;
  filter: blur(9px);
  opacity: 0.85;
  animation: blob-move-3 20s ease-in-out infinite;
}

.blob-4 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, #464646, #979797);
  border-radius: 63% 37% 54% 46% / 38% 58% 42% 62%;
  bottom: 15%;
  right: 5%;
  filter: blur(12px);
  opacity: 0.8;
  animation: blob-move-4 22s ease-in-out infinite;
}

@keyframes blob-move-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 40px) scale(1.05);
  }
}

@keyframes blob-move-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 40px) scale(1.05);
  }
}

@keyframes blob-move-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -40px) scale(1.05);
  }
}

@keyframes blob-move-4 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, -40px) scale(1.05);
  }
}

/* ANIMATION */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 28px;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  color: var(--black);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--black);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--black);
}

.gradient-text {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #000000;
  margin-bottom: 40px;
  font-weight: 500;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--black);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* PRODUCTS HERO */

.products-hero {
  padding-top: 160px;
}

/* SECTIONS */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 10;
}

.about {
  animation-delay: 0.1s;
}

.contact {
  animation-delay: 0.2s;
}

.products-section {
  animation-delay: 0.15s;
}

.section-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.section p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* TEAM SECTION */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.team-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.team-card:nth-child(1) {
  animation-delay: 0.15s;
}

.team-card:nth-child(2) {
  animation-delay: 0.25s;
}

.team-card:nth-child(3) {
  animation-delay: 0.35s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-photo {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}

.team-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  /*transition: transform 0.3s ease;*/
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--black);
}

.team-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  margin: 0 0 12px;
}

.team-bio {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 16px;
}

.team-link {
  display: inline-block;
  font-size: 13px;
  color: var(--black);
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.team-link:hover {
  opacity: 0.7;
}

/* ABOUT SECTION */

.about .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  text-align: left;
}

.feature {
  padding: 24px;
  border: 2px solid var(--white);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.feature:nth-child(1) {
  animation-delay: 0.1s;
}

.feature:nth-child(2) {
  animation-delay: 0.2s;
}

.feature:nth-child(3) {
  animation-delay: 0.3s;
}

.feature:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  transform: translateY(-4px);
}

.feature h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--black);
}

.feature p {
  font-size: 14px;
  margin: 0;
  color: #555555;
}

/* CONTACT SECTION */

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 32px;
}

/* PRODUCTS GRID */

.products-section {
  padding: 80px 40px;
  position: relative;
  z-index: 10;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  min-height: 100%;
}

.product-card > :nth-last-child(2),
.product-card > :last-child {
  margin-top: auto;
}

.product-card:nth-child(1) {
  animation-delay: 0.2s;
}

.product-card:nth-child(2) {
  animation-delay: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(40px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.product-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--black);
}

.product-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.product-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  font-size: 14px;
  padding: 8px 0;
  color: var(--black);
}

.product-meta {
  margin: 12px 0;
}

.product-meta p {
  font-size: 13px;
  color: #777777;
  margin: 0;
}

/* PRODUCT BUTTONS */

.product-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0
}

.product-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--black);
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.product-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: left 0.3s ease;
  z-index: -1;
}

.product-btn:hover::before {
  left: 0;
}

.product-btn:hover {
  color: var(--black);
  transform: translateY(-2px);
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 40px;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #777777;
  font-size: 13px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 16px 20px;
  }

  .nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    margin: 40px auto 0;
  }

  .team-card {
    padding: 20px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-bio {
    font-size: 12px;
  }

  .about .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    padding: 24px;
  }

  .product-card h2 {
    font-size: 20px;
  }

  .product-header {
    flex-direction: column;
  }

  .blob {
    filter: blur(12px) !important;
  }

  .blob-1,
  .blob-2,
  .blob-3,
  .blob-4 {
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-direction: column;
    gap: 8px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero {
    padding: 80px 16px 40px;
    min-height: 80vh;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section {
    padding: 40px 16px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section p {
    font-size: 14px;
  }

  .team-grid {
    gap: 16px;
    padding: 0 16px;
    margin: 32px auto 0;
  }

  .team-card {
    padding: 16px;
  }

  .team-name {
    font-size: 14px;
  }

  .team-role {
    font-size: 10px;
  }

  .team-bio {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .team-link {
    font-size: 12px;
  }

  .about .features {
    gap: 16px;
  }

  .feature {
    padding: 16px;
  }

  .feature h3 {
    font-size: 14px;
  }

  .feature p {
    font-size: 12px;
  }

  .product-card {
    padding: 20px;
    gap: 16px;
  }

  .product-card h2 {
    font-size: 18px;
  }

  .product-desc {
    font-size: 13px;
  }

  .product-features li {
    font-size: 12px;
  }

  .cta-btn,
  .product-btn {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    text-align: center;
  }

  .product-header {
    gap: 8px;
  }

  .blob-1 {
    width: 300px;
    height: 300px;
  }

  .blob-2 {
    width: 250px;
    height: 250px;
  }

  .blob-3 {
    width: 280px;
    height: 280px;
  }

  .blob-4 {
    width: 240px;
    height: 240px;
  }

  .footer {
    padding: 24px 16px;
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 24px;
  }

  .section h2 {
    font-size: 20px;
  }

  .product-card h2 {
    font-size: 16px;
  }

  .product-desc {
    font-size: 12px;
  }

  .blob {
    filter: blur(15px) !important;
    opacity: 0.3 !important;
  }
}
