html {
  scroll-behavior: smooth;
}

:root {
  --eveoo-product-color-red: #ca4844;
  --eveoo-product-color-dark: #0a0f1e;
  --eveoo-product-color-card: #141a29;
  --eveoo-product-color-gray: #f8f9fa;
  --eveoo-product-color-border: #ebebeb;
  --eveoo-product-color-text-main: #1f2937;
  --eveoo-product-color-text-light: #6b7280;
  --eveoo-product-text-xs: 0.75rem;
  --eveoo-product-text-sm: 0.875rem;
  --eveoo-product-text-rem: 1rem;
  --eveoo-product-text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --eveoo-product-text-md: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --eveoo-product-text-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --eveoo-product-text-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --eveoo-product-text-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --eveoo-product-text-3xl: clamp(3rem, 2.6rem + 2vw, 4rem);
  --eveoo-product-space-xs: 0.5rem;
  --eveoo-product-space-sm: 1rem;
  --eveoo-product-space-md: 1.5rem;
  --eveoo-product-space-lg: 2.5rem;
  --eveoo-product-space-xl: 4rem;
  --eveoo-product-space-section: clamp(4rem, 4vw + 3rem, 8rem);
  --eveoo-product-radius-sm: 4px;
  --eveoo-product-radius-md: 0.75rem;
  --eveoo-product-radius-lg: 1rem;
  --eveoo-product-radius-full: 9999px;
  --eveoo-product-shadow-none: none;
  --eveoo-product-shadow-base: 0 4px 30px rgba(0, 0, 0, 0.03);
  --eveoo-product-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);
  --eveoo-product-shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --eveoo-product-transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.eveoo-product-bg-white {
  background-color: #fff;
}
.eveoo-product-bg-gray {
  background-color: var(--eveoo-product-color-gray);
}
.eveoo-product-text-red {
  color: var(--eveoo-product-color-red);
}
.eveoo-product-font-bold {
  font-weight: 700;
}
.eveoo-product-text-center {
  text-align: center;
}
.eveoo-product-m-none {
  margin: 0;
}
.eveoo-product-mx-auto {
  margin: 0 auto;
}
.eveoo-product-mb-xs {
  margin-bottom: var(--eveoo-product-space-xs);
}
.eveoo-product-mb-sm {
  margin-bottom: var(--eveoo-product-space-sm);
}
.eveoo-product-mb-lg {
  margin-bottom: var(--eveoo-product-space-lg);
}
.eveoo-product-mb-xl {
  margin-bottom: var(--eveoo-product-space-xl);
}
.eveoo-product-pt-lg {
  padding-top: var(--eveoo-product-space-lg);
}
.eveoo-product-pb-xl {
  padding-bottom: calc(var(--eveoo-product-space-section) * 1.5);
}

.eveoo-product-wrapper {
  line-height: 1.6;
  color: var(--eveoo-product-color-text-main);
  background: #fff;
  font-size: var(--eveoo-product-text-base);
}
.eveoo-product-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--eveoo-product-space-lg);
  box-sizing: border-box;
}

.eveoo-product-hero {
  background-color: var(--eveoo-product-color-dark);
  color: #fff;
  padding: var(--eveoo-product-space-section) 0;
  overflow: hidden;
}
.eveoo-product-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.eveoo-product-hero-content {
  width: 100%;
  max-width: 600px;
  z-index: 10;
  min-width: 0;
}
.eveoo-product-hero-tag {
  display: flex;
  align-items: center;
  color: var(--eveoo-product-color-red);
  font-size: var(--eveoo-product-text-base);
  letter-spacing: 0.1em;
  margin-bottom: var(--eveoo-product-space-sm);
}
.eveoo-product-hero h1 {
  font-size: var(--eveoo-product-text-3xl);
  font-weight: 700;
  margin: 0 0 var(--eveoo-product-space-md) 0;
  color: #fff;
  line-height: 1.1;
}
.eveoo-product-hero-subtitle {
  display: flex;
  align-items: center;
  margin-bottom: var(--eveoo-product-space-lg);
}
.eveoo-product-hero-subtitle::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background-color: var(--eveoo-product-color-red);
  margin-right: var(--eveoo-product-space-sm);
}
.eveoo-product-hero-subtitle p {
  font-size: var(--eveoo-product-text-lg);
  color: #d1d5db;
  margin: 0;
}

.eveoo-product-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--eveoo-product-space-sm);
  margin-bottom: var(--eveoo-product-space-lg);
}
.eveoo-product-stat-card {
  background-color: var(--eveoo-product-color-card);
  border: 1px solid #1f2937;
  border-radius: var(--eveoo-product-radius-md);
  padding: var(--eveoo-product-space-md);
  transition: var(--eveoo-product-transition-normal);
}

.eveoo-product-stat-title {
  color: #9ca3af;
  font-size: var(--eveoo-product-text-base);
  margin: 0 0 var(--eveoo-product-space-xs) 0;
}
.eveoo-product-stat-value {
  font-size: var(--eveoo-product-text-lg);
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: baseline;
}
.eveoo-product-stat-value span {
  font-size: var(--eveoo-product-text-md);
  font-weight: normal;
  margin-left: 4px;
}
.eveoo-product-stat-desc {
  color: #fff;
  font-size: var(--eveoo-product-text-base);
  margin: var(--eveoo-product-space-xs) 0 0 0;
}

.eveoo-product-btn-primary {
  background-color: var(--eveoo-product-color-red);
  color: #fff;
  padding: var(--eveoo-product-space-sm) var(--eveoo-product-space-lg);
  border: none;
  border-radius: var(--eveoo-product-radius-sm);
  font-size: var(--eveoo-product-text-base);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: var(--eveoo-product-transition-normal);
  text-decoration: none;
}

.eveoo-product-btn-primary svg {
  margin-left: 8px;
  transition: var(--eveoo-product-transition-normal);
}

.eveoo-product-hero-fallback {
  text-align: center;
  color: #9ca3af;
}
.eveoo-product-hero-fallback-icon {
  margin: 0 auto 1rem auto;
  display: block;
}
.eveoo-product-hero-fallback-text {
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.eveoo-product-hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: transparent;
  border-radius: var(--eveoo-product-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--eveoo-product-shadow-heavy);
  min-width: 0;
  overflow: hidden;
}
.eveoo-product-featured-img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.eveoo-product-section {
  padding: var(--eveoo-product-space-section) 0;
}

.eveoo-product-sec-label {
  color: var(--eveoo-product-color-text-light);
  font-size: var(--eveoo-product-text-base);
  font-weight: 400;
  _letter-spacing: 0.2em;
  margin: 0 0 var(--eveoo-product-space-xs) 0;
}
.eveoo-product-sec-label-gray {
  color: #9ca3af;
}

.eveoo-product-sec-title {
  font-size: var(--eveoo-product-text-2xl);
  font-weight: 700;
  margin: 0 0 var(--eveoo-product-space-md) 0;
  color: var(--eveoo-product-color-text-main);
}
.eveoo-product-sec-desc {
  color: var(--eveoo-product-color-text-light);
  max-width: 42rem;
  margin: 0 auto var(--eveoo-product-space-xl) auto;
  font-size: var(--eveoo-product-text-base);
}

.eveoo-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--eveoo-product-space-md);
}
.eveoo-product-feat-card {
  background: #fff;
  padding: var(--eveoo-product-space-lg);
  border-radius: var(--eveoo-product-radius-lg);
  box-shadow: var(--eveoo-product-shadow-base);
  transition: var(--eveoo-product-transition-normal);
}

.eveoo-product-feat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--eveoo-product-color-gray);
  border-radius: var(--eveoo-product-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--eveoo-product-space-md);
  transition: var(--eveoo-product-transition-normal);
}

.eveoo-product-feat-card h3 {
  font-size: var(--eveoo-product-text-md);
  font-weight: 700;
  margin: 0 0 var(--eveoo-product-space-sm) 0;
}
.eveoo-product-feat-card p {
  font-size: var(--eveoo-product-text-base);
  color: var(--eveoo-product-color-text-light);
  margin: 0;
  line-height: 1.6;
}

.eveoo-product-b3-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--eveoo-product-space-md);
}
.eveoo-product-b3-card {
  width: calc(25% - (var(--eveoo-product-space-md) * 3 / 4));
  background-color: var(--eveoo-product-color-gray);
  border-radius: var(--eveoo-product-radius-sm);
  padding: var(--eveoo-product-space-lg);
  position: relative;
  overflow: hidden;
  transition: var(--eveoo-product-transition-normal);
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  min-height: 180px;
  z-index: 1;
}
.eveoo-product-b3-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--eveoo-product-color-red);
  transition: var(--eveoo-product-transition-normal);
  z-index: 2;
}

.eveoo-product-b3-num {
  position: absolute;
  right: 10px;
  bottom: -15px;
  font-size: 6rem;
  font-weight: 900;
  color: #f4f4f4;
  line-height: 1;
  z-index: 0;
  transition: var(--eveoo-product-transition-normal);
  user-select: none;
  pointer-events: none;
}

.eveoo-product-b3-text {
  position: relative;
  z-index: 1;
  font-size: var(--eveoo-product-text-base);
  font-weight: 700;
  color: var(--eveoo-product-color-text-main);
  margin: 0;
  line-height: 1.6;
}
.eveoo-product-b3-text-sub {
  font-size: 0.875em;
  font-weight: 500;
}

.eveoo-product-icon-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--eveoo-product-color-border);
  border-top: 1px solid var(--eveoo-product-color-border);
}
.eveoo-product-icon-cell {
  border-right: 1px solid var(--eveoo-product-color-border);
  border-bottom: 1px solid var(--eveoo-product-color-border);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--eveoo-product-space-lg);
  transition: var(--eveoo-product-transition-normal);
}

.eveoo-product-icon-cell svg {
  width: 2rem;
  height: 2rem;
  color: #4b5563;
  margin-bottom: var(--eveoo-product-space-sm);
  transition: var(--eveoo-product-transition-normal);
}

.eveoo-product-icon-cell span {
  font-size: var(--eveoo-product-text-base);
  font-weight: 500;
  color: var(--eveoo-product-color-text-main);
  text-align: center;
}
.eveoo-product-icon-text {
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--eveoo-product-space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--eveoo-product-text-md);
}

.eveoo-product-specs-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--eveoo-product-color-border);
  border-radius: var(--eveoo-product-radius-sm);
  overflow: hidden;
}

.eveoo-product-specs-row {
  display: flex;
  border-bottom: 1px solid var(--eveoo-product-color-border);
  transition: var(--eveoo-product-transition-normal);
}
.eveoo-product-specs-row:last-child {
  border-bottom: none;
}

.eveoo-product-specs-label {
  flex: 0 0 33.33%;
  padding: var(--eveoo-product-space-md) var(--eveoo-product-space-lg);
  color: var(--eveoo-product-color-text-light);
  font-weight: 500;
  font-size: var(--eveoo-product-text-rem);
}

.eveoo-product-specs-value {
  flex: 1;
  padding: var(--eveoo-product-space-md) var(--eveoo-product-space-lg);
  color: var(--eveoo-product-color-text-main);
  font-weight: 700;
  font-size: var(--eveoo-product-text-rem);
}
.eveoo-product-specs-value-mono {
  _font-family: monospace, monospace;
  font-size: var(--eveoo-product-text-rem);
}

.eveoo-product-wrapper .eveoo-product-icon-wall.eveoo-product-bj4p-scoped-wall {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.eveoo-product-m-noness {
  margin: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .eveoo-product-wrapper .eveoo-product-icon-wall.eveoo-product-bj4p-scoped-wall {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .eveoo-product-stat-card:hover {
    border-color: var(--eveoo-product-color-red);
  }

  .eveoo-product-btn-primary:hover {
    background-color: #b71c1c;
    color: #fff;
    text-decoration: none;
  }

  .eveoo-product-btn-primary:hover svg {
    transform: translateX(4px);
  }

  .eveoo-product-feat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--eveoo-product-shadow-hover);
  }

  .eveoo-product-feat-card:hover .eveoo-product-feat-icon {
    background: #fef2f2;
    color: var(--eveoo-product-color-red);
  }

  .eveoo-product-b3-card:hover {
    background-color: #fff;
    border-color: var(--eveoo-product-color-border);
    box-shadow: var(--eveoo-product-shadow-hover);
    transform: translateY(-8px);
  }

  .eveoo-product-b3-card:hover::before {
    width: 100%;
  }

  .eveoo-product-b3-card:hover .eveoo-product-b3-num {
    color: rgba(211, 47, 47, 0.04);
    transform: scale(1.1) translate(-10px, -5px);
  }

  .eveoo-product-icon-cell:hover {
    background-color: var(--eveoo-product-color-gray);
  }

  .eveoo-product-icon-cell:hover svg {
    color: var(--eveoo-product-color-red);
  }

  .eveoo-product-specs-row:hover {
    background-color: var(--eveoo-product-color-gray);
  }
}

@media (max-width: 1024px) {
  .eveoo-product-hero-inner {
    flex-direction: column;
  }
  .eveoo-product-hero-content {
    margin-bottom: var(--eveoo-product-space-xl);
    max-width: 100%;
  }
  .eveoo-product-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eveoo-product-b3-card {
    width: calc(50% - (var(--eveoo-product-space-md) / 2));
  }
  .eveoo-product-icon-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .eveoo-product-container {
    padding: 0 1.5rem;
  }
  .eveoo-product-stats-grid {
    grid-template-columns: 1fr;
  }
  .eveoo-product-feature-grid {
    grid-template-columns: 1fr;
  }
  .eveoo-product-feat-card {
    padding: var(--eveoo-product-space-md);
  }

  .eveoo-product-b3-card {
    width: 100%;
    padding: var(--eveoo-product-space-md);
    min-height: 140px;
  }

  .eveoo-product-icon-wall {
    grid-template-columns: repeat(2, 1fr);
  }
  .eveoo-product-icon-cell {
    padding: var(--eveoo-product-space-md);
  }

  .eveoo-product-specs-row {
    flex-direction: column;
    padding: 16px var(--eveoo-product-space-md);
  }
  .eveoo-product-specs-label {
    padding: 0;
    margin-bottom: 6px;
    font-size: var(--eveoo-product-text-sm);
    color: #9ca3af;
    line-height: 1.4;
  }
  .eveoo-product-specs-value {
    padding: 0;
    line-height: 1.6;
    word-break: break-word;
  }
}
