:root {
  --ez-green: #14c878;
  --ez-green-soft: rgba(20, 200, 120, 0.18);
  --ez-cyan: #6be7ff;
  --ez-panel: rgba(4, 17, 12, 0.78);
  --ez-panel-strong: rgba(7, 27, 20, 0.92);
  --ez-border: rgba(151, 255, 206, 0.14);
  --ez-border-strong: rgba(107, 231, 255, 0.35);
  --ez-text-muted: rgba(232, 255, 243, 0.72);
}

.lux-orb {
  display: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 200, 120, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(107, 231, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 70%, transparent 100%);
  opacity: 0.34;
}

.component {
  animation: ezSectionIn 0.7s ease both;
}

.component:nth-of-type(2) {
  animation-delay: 0.08s;
}

.component:nth-of-type(3) {
  animation-delay: 0.16s;
}

.component:nth-of-type(4) {
  animation-delay: 0.24s;
}

.ez-reveal {
  animation: ezRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ez-hero .container {
  align-items: center;
}

.ez-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--ez-border);
  border-radius: 999px;
  background: rgba(107, 231, 255, 0.06);
  color: rgba(232, 255, 243, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ez-kicker i {
  color: var(--ez-cyan);
}

.ez-hero-title,
h1 {
  background: linear-gradient(92deg, #f2fff8 0%, #9cffcf 46%, #6be7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1.02;
  text-shadow: none;
}

.ez-hero-subtitle {
  max-width: 680px;
  color: var(--ez-text-muted);
  line-height: 1.7;
}

.ez-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 8px;
}

.ez-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(151, 255, 206, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 255, 243, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.ez-hero-pills i {
  color: var(--ez-green);
}

.ez-performance-panel {
  width: min(100%, 420px);
  margin-left: auto;
  padding: 20px;
  border: 1px solid var(--ez-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(107, 231, 255, 0.08), transparent 34%),
    linear-gradient(180deg, var(--ez-panel-strong), var(--ez-panel));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.ez-performance-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(107, 231, 255, 0.14) 46%, transparent 58%);
  transform: translateX(-110%);
  animation: ezPanelSweep 5s ease-in-out infinite;
}

.ez-panel-top,
.ez-meter,
.ez-panel-grid {
  position: relative;
  z-index: 1;
}

.ez-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(232, 255, 243, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.ez-panel-top i {
  color: var(--ez-green);
  filter: drop-shadow(0 0 10px rgba(20, 200, 120, 0.35));
}

.ez-meter + .ez-meter {
  margin-top: 15px;
}

.ez-meter-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--ez-text-muted);
  font-size: 13px;
}

.ez-meter-label strong {
  color: #f2fff8;
}

.ez-meter-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.ez-meter-track span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ez-green), var(--ez-cyan));
  box-shadow: 0 0 18px rgba(20, 200, 120, 0.34);
  animation: ezFill 1.2s ease both;
}

.ez-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.ez-search-trigger-wrap {
  width: min(100%, 520px);
  overflow: hidden;
}

.ez-search-trigger {
  width: 100%;
  max-width: none;
  min-height: 48px;
  border-radius: 8px;
}

.ez-search-trigger svg,
.ez-search-modal-input svg {
  flex: 0 0 auto;
  color: var(--ez-cyan);
}

.ez-search-trigger input::placeholder,
.ez-search-modal-input input::placeholder {
  color: rgba(232, 255, 243, 0.56);
}

.ez-search-modal {
  border-radius: 8px;
  border-color: var(--ez-border) !important;
  background:
    linear-gradient(180deg, rgba(107, 231, 255, 0.055), transparent 34%),
    rgba(2, 10, 7, 0.96) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.ez-search-modal-input,
.ez-search-close {
  border-radius: 8px !important;
  border-color: var(--ez-border) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.ez-search-modal-input:focus-within {
  border-color: var(--ez-border-strong) !important;
  box-shadow: 0 0 0 3px rgba(107, 231, 255, 0.1);
}

.ez-navbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  overflow: visible;
  border-radius: 8px !important;
  border-color: rgba(151, 255, 206, 0.11) !important;
  background: rgba(3, 15, 10, 0.86) !important;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ez-navbar-brand {
  min-height: 42px;
}

.ez-navbar-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  filter: none;
}

.ez-navbar-title {
  background: none;
  color: #f2fff8 !important;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  line-height: 1;
  font-size: 1.15rem;
}

.ez-navbar-menu {
  align-items: stretch;
}

.ez-nav-link,
.ez-nav-icon,
.ez-cart-button {
  position: relative;
  min-height: 40px;
  border-radius: 8px !important;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.ez-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 255, 243, 0.68) !important;
  font-size: 0.93rem;
  padding-inline: 14px !important;
  overflow: hidden;
}

.ez-nav-link:hover,
.ez-nav-link-active {
  color: #ffffff !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(20, 200, 120, 0.07));
}

.ez-nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ez-green), var(--ez-cyan));
  opacity: 0;
  transform: translateY(4px) scaleX(0);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: none;
}

.ez-nav-link:hover::after,
.ez-nav-link-active::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.ez-nav-icon,
.ez-cart-button,
.ez-currency select {
  border-color: rgba(151, 255, 206, 0.12) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.ez-nav-icon:hover,
.ez-cart-button:hover {
  border-color: rgba(107, 231, 255, 0.30) !important;
  background:
    linear-gradient(180deg, rgba(107, 231, 255, 0.08), rgba(20, 200, 120, 0.07)) !important;
  color: #e8fff3 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.ez-cart-button {
  min-width: 44px;
  color: rgba(232, 255, 243, 0.78) !important;
}

.ez-currency select {
  border-radius: 8px !important;
}

.ez-panel-grid div {
  min-height: 78px;
  padding: 12px 10px;
  border: 1px solid rgba(151, 255, 206, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.ez-panel-grid strong,
.ez-panel-grid span {
  display: block;
}

.ez-panel-grid strong {
  color: #f2fff8;
  font-size: 17px;
}

.ez-panel-grid span {
  margin-top: 5px;
  color: rgba(232, 255, 243, 0.58);
  font-size: 12px;
}

.bg-card\/75,
.product-card,
.ez-feature-card,
nav,
.navbar,
.header {
  border-radius: 8px !important;
  border-color: var(--ez-border) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--ez-panel) !important;
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.product-card,
.ez-feature-card,
.bg-card\/75 {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover,
.ez-feature-card:hover,
.bg-card\/75:hover {
  transform: translateY(-3px);
  border-color: var(--ez-border-strong) !important;
  box-shadow:
    0 0 0 1px rgba(107, 231, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.46);
}

.ez-feature-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(20, 200, 120, 0.1);
  color: var(--ez-cyan) !important;
}

.ez-feature-card h4 {
  color: #f2fff8;
}

.ez-feature-card p {
  line-height: 1.65;
}

a[class*="inline-flex"] {
  min-height: 42px;
  border-radius: 8px !important;
  letter-spacing: 0;
}

a[class*="inline-flex"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(20, 200, 120, 0.14);
}

input,
select,
textarea {
  border-radius: 8px;
}

hr.border-accent-500 {
  border-color: var(--ez-cyan) !important;
  box-shadow: 0 0 16px rgba(107, 231, 255, 0.28);
}

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

@keyframes ezSectionIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ezFill {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}

@keyframes ezPanelSweep {
  0%, 46% {
    transform: translateX(-110%);
  }
  72%, 100% {
    transform: translateX(110%);
  }
}

@media (max-width: 767px) {
  .ez-hero .container {
    gap: 28px;
  }

  .ez-kicker {
    font-size: 11px;
  }

  .ez-performance-panel {
    margin-left: 0;
  }

  .ez-panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.ez-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ez-feedback-col {
  height: 560px;
  overflow: hidden;
  border-radius: 8px;
}

.ez-feedback-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  opacity: 1;
}

.ez-feedback-up .ez-feedback-track {
  animation: ezFeedbackUp 58s linear infinite;
}

.ez-feedback-down .ez-feedback-track {
  animation: ezFeedbackDown 58s linear infinite;
}

.ez-feedback-card {
  border: 1px solid var(--ez-border) !important;
  border-radius: 8px;
  background: var(--ez-panel);
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ez-feedback-card:hover {
  transform: translateY(-3px);
  border-color: var(--ez-border-strong) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.ez-feedback-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.ez-feedback-name {
  font-size: 13px;
  font-weight: 800;
  color: #effff6;
}

.ez-feedback-date {
  font-size: 11px;
  color: rgba(183, 215, 194, 0.78);
}

.ez-feedback-role {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(124, 255, 181, 0.35);
  background: rgba(124, 255, 181, 0.14);
  color: #7cffb5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.ez-feedback-msg {
  margin: 0;
  color: rgba(233, 255, 243, 0.84);
  font-size: 13px;
  line-height: 1.5;
}

@keyframes ezFeedbackUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes ezFeedbackDown {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1279px) {
  .ez-feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ez-feedback-col {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .ez-feedback-grid {
    grid-template-columns: 1fr;
  }
  .ez-feedback-col {
    height: 420px;
  }
}
