:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

img {
  display: block;
}

.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: #7dd756;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.mobile-link {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.mobile-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.realclr{
    background: #7dd756;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
  content: "";
}

.hamburger::before {
  transform: translateY(-0.38rem);
}

.hamburger::after {
  transform: translateY(0.38rem);
}

.nav-toggle.is-open .hamburger {
  background: transparent;
}

.nav-toggle.is-open .hamburger::before {
  transform: rotate(45deg);
}

.nav-toggle.is-open .hamburger::after {
  transform: rotate(-45deg);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7dd756;
}

.section-pad {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-title {
  margin-top: 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: #7dd756;
  color: #07100c;
  box-shadow: 0 22px 70px rgba(52, 211, 153, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #ffffff;
}

.btn-secondary:hover {
  border-color: rgba(110, 231, 183, 0.7);
  color: #7dd756;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(26px);
}

.metric-card,
.product-card,
.value-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.metric-card {
  padding: 1.3rem;
}

.metric-card span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #7dd756;
}

.metric-card p {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.product-card,
.value-card {
  padding: 1.5rem;
}

.product-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 231, 183, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.product-card span,
.value-card span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #7dd756;
}

.product-card h3,
.value-card h3 {
  margin-top: 1.3rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.product-card p,
.value-card p {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.category-pill {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-pill:hover {
  border-color: rgba(110, 231, 183, 0.58);
  color: #7dd756;
  transform: translateY(-2px);
}

.product-detail {
  scroll-margin-top: 5.5rem;
}

.product-bg-section {
  position: relative;
  overflow: hidden;
  min-height: 36rem;
  display: flex;
  align-items: center;
  padding-block: clamp(3.25rem, 6vw, 5.25rem);
}

.product-bg-section + .product-bg-section {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-bg-image,
.product-bg-overlay {
  position: absolute;
  inset: 0;
}

.product-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.product-bg-overlay {
  background: linear-gradient(90deg, rgba(7, 16, 12, 0.96), rgba(7, 16, 12, 0.82) 52%, rgba(7, 16, 12, 0.94));
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-pill-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(18px);
}

.product-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.74);
}

.process-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.process-row span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.28);
  font-size: 0.75rem;
  font-weight: 900;
  color: #7dd756;
}

.process-row p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.light-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.2rem;
}

.light-stat strong,
.light-stat span {
  display: block;
}

.light-stat strong {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.light-stat span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-card span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #7dd756;
}

.contact-card h2 {
  margin-top: 1.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-card address,
.contact-card p,
.contact-card a {
  margin-top: 1rem;
  font-style: normal;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
}

.contact-card a {
  margin-top: 0;
  transition: color 180ms ease;
}

.contact-card a:hover {
  color: #7dd756;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(20px);
}

.contact-form label span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(7, 16, 12, 0.58);
  padding: 0.95rem 1rem;
  color: #ffffff;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(110, 231, 183, 0.72);
  background: rgba(7, 16, 12, 0.82);
}

.contact-form textarea {
  resize: vertical;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.social-links p {
  flex-basis: 100%;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.social-links a {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(110, 231, 183, 0.58);
  color: #7dd756;
  transform: translateY(-2px);
}

.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer-title {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-link {
  transition: color 180ms ease;
}

.footer-link:hover {
  color: #7dd756;
}

.reveal {
  will-change: transform, opacity;
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding-inline: 1rem;
    text-align: center;
  }
}
