/* Brand Colors */
:root {
  --accent-orange: #ce7b09;
  --brand-green: #56856f;
  --brand-teal: #224f5d;
  --deep-teal: #1b3944;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(34, 79, 93, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Crimson Pro", serif;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(86, 133, 111, 0.5),
      transparent 60%
    ),
    radial-gradient(circle at 80% 10%, rgba(206, 123, 9, 0.35), transparent 55%),
    linear-gradient(140deg, #112831, var(--brand-teal) 55%, #396b68 100%);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.background-decoration {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(17, 40, 49, 0.7) 0%,
    rgba(34, 79, 93, 0.4) 45%,
    rgba(86, 133, 111, 0.3) 100%
  );
  z-index: 1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.circle-1 {
  width: 520px;
  height: 520px;
  background: var(--accent-orange);
  top: -160px;
  right: -120px;
  animation-delay: 0s;
}

.circle-2 {
  width: 420px;
  height: 420px;
  background: var(--brand-green);
  bottom: -180px;
  left: -100px;
  animation-delay: 2s;
}

.circle-3 {
  width: 320px;
  height: 320px;
  background: var(--accent-orange);
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 520px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.9s ease-out both;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: clamp(52px, 5vw, 110px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(17, 40, 49, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.brand-tag {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.9rem;
  opacity: 0.75;
  font-weight: 600;
  white-space: nowrap;
}

.main-heading {
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: none;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}

.tagline {
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--accent-orange);
  margin-bottom: 0;
  text-shadow: 0 6px 24px rgba(206, 123, 9, 0.3);
}

.commitments {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px var(--glass-shadow);
}

.commitments-title {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  color: var(--white);
  opacity: 0.9;
}

.commitments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commitments-list li {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 500;
  line-height: 1.8;
  padding-left: 1.8rem;
  position: relative;
  color: var(--white);
  opacity: 0.85;
}

.commitments-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.2em;
}


.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  opacity: 0.75;
  transition: transform 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  color: var(--accent-orange);
  border-color: rgba(206, 123, 9, 0.8);
  opacity: 1;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.product-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(206, 123, 9, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35), 0 15px 40px rgba(206, 123, 9, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

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

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .commitments {
    max-width: 600px;
  }

  .hero-visual {
    order: -1;
  }

  .product-showcase {
    padding: 1rem;
  }
}

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

  .commitments {
    padding: 1.5rem 2rem;
  }

  .commitments-list li {
    font-size: 0.95rem;
  }

  .social-links {
    justify-content: center;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .product-showcase {
    padding: 0.5rem;
  }
}

@media (max-width: 520px) {
  .brand-tag {
    letter-spacing: 0.2em;
    font-size: 0.8rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .commitments {
    padding: 1.2rem 1.5rem;
  }

  .commitments-title {
    font-size: 1rem;
  }

  .commitments-list li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
  }

  .product-image {
    border-radius: 12px;
  }
}
