@charset "UTF-8";
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  line-height: 1.5;
}

model-viewer {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  background-color: transparent;
  margin: 0 auto;
  margin-bottom: 60px;
}

.Hotspot {
  background: url(../images/hotspot.svg) center no-repeat;
  background-size: contain;
  border: 0;
  cursor: pointer;
  width: 45px;
  height: 39px;
  transition: all 0.3s ease-in-out;
}

.Hotspot:not([data-visible]) {
  opacity: 0;
  width: 45px;
  height: 38px;
  pointer-events: none;
}

.Hotspot:focus {
  border: 2px solid #0071e3;
  height: 32px;
  outline: none;
  width: 32px;
}

.HotspotAnnotation {
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #1d1d1f;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 400;
  left: calc(100% + 20px);
  max-width: 280px;
  overflow-wrap: break-word;
  padding: 16px 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  text-align: left;
}

.HotspotAnnotation p {
  color: #1d1d1f;
  line-height: 1.5;
  font-weight: 400;
  font-size: 13px;
}

.HotspotAnnotation h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

/* Progress Bar */
model-viewer::part(default-progress-bar) {
  height: 30px;
  background-color: #0071e3;
}

model-viewer::part(default-progress-mask) {
  display: none;
}

.sequence-container {
  width: 100vw;
  position: relative;
  background: #d6d6d6;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.sequence-container canvas {
  width: 100vw;
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  object-fit: contain;
  background: #d1d0d0;
}

#xray {
  position: relative;
  aspect-ratio: 16/10;
  background-image: url(../images/earbuddy.jpg);
  background-size: cover;
  border-radius: 15px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 48px;
  }
}

.grid-con div p {
  font-size: 18px;
  color: #a1a1a6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .grid-con div p {
    font-size: 20px;
    margin-bottom: 60px;
  }
}

#divisor {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 16/10;
  background-image: url(../images/xxray.jpg);
  background-size: cover;
  width: 50%;
  height: 100%;
  border-radius: 15px;
}
#divisor::after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: #fff;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 20px);
  height: 20px;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 0;
  background: transparent;
  border: none;
}

input[type=range]::-moz-range-track {
  height: 0;
  background: transparent;
  border: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.logo svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.nav-links a:hover {
  opacity: 1;
}

.buy-button {
  display: none;
  background-color: #0071e3;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .buy-button {
    display: block;
  }
}
.buy-button:hover {
  background-color: #0077ed;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}
.mobile-menu a:hover {
  color: #0071e3;
}
.mobile-menu .buy-button-mobile {
  background: #0071e3;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.mobile-menu .buy-button-mobile:hover {
  background: #0077ed;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.hero-content {
  text-align: center;
  padding: 40px 20px;
}
.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 64px;
  }
}
@media (min-width: 1200px) {
  .hero-content h2 {
    font-size: 72px;
  }
}
.hero-content p {
  font-size: 24px;
  font-weight: 400;
  color: #a1a1a6;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .hero-content p {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .hero-content p {
    font-size: 32px;
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: #0071e3;
  color: #fff;
}
.btn-primary:hover {
  background-color: #0077ed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #0071e3;
  border: 1px solid #0071e3;
}
.btn-secondary:hover {
  background-color: rgba(0, 113, 227, 0.1);
  transform: translateY(-2px);
}

.model-container {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
}

.features-heading {
  padding: 80px 20px 40px;
  text-align: center;
  background: #000;
}
@media (min-width: 768px) {
  .features-heading {
    padding: 100px 40px 60px;
  }
}
.features-heading h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .features-heading h2 {
    font-size: 56px;
  }
}
@media (min-width: 1200px) {
  .features-heading h2 {
    font-size: 64px;
  }
}
.features-heading p {
  font-size: 18px;
  color: #a1a1a6;
}
@media (min-width: 768px) {
  .features-heading p {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .features-heading p {
    font-size: 24px;
  }
}

.feature-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
@media (min-width: 768px) {
  .feature-section {
    flex-direction: row;
    padding: 80px 40px;
    gap: 60px;
  }
}
@media (min-width: 1200px) {
  .feature-section {
    padding: 80px 60px;
  }
}
@media (min-width: 768px) {
  .feature-section:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.feature-text {
  flex: 1;
}
.feature-text h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .feature-text h3 {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .feature-text h3 {
    font-size: 56px;
  }
}
.feature-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #a1a1a6;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .feature-text p {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  .feature-text p {
    font-size: 21px;
  }
}
.feature-text .btn-secondary {
  color: #2997ff;
  text-decoration: none;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  background: transparent;
  border: none;
  padding: 0;
}
.feature-text .btn-secondary:hover {
  color: #147ce5;
  gap: 10px;
}
.feature-text .btn-secondary::after {
  content: "→";
  font-size: 18px;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tech-specs {
  padding: 80px 20px;
  background-color: #000;
}
@media (min-width: 768px) {
  .tech-specs {
    padding: 100px 40px;
  }
}

.tech-specs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tech-specs-header {
  text-align: center;
  margin-bottom: 60px;
}
.tech-specs-header h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .tech-specs-header h3 {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .tech-specs-header h3 {
    font-size: 56px;
  }
}
.tech-specs-header p {
  font-size: 18px;
  color: #a1a1a6;
}
@media (min-width: 768px) {
  .tech-specs-header p {
    font-size: 20px;
  }
}

.spec-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}
.spec-item i {
  font-size: 48px;
  color: #0071e3;
  margin-bottom: 20px;
  display: block;
}
.spec-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
@media (min-width: 768px) {
  .spec-item h4 {
    font-size: 24px;
  }
}
.spec-item p {
  font-size: 15px;
  color: #a1a1a6;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .spec-item p {
    font-size: 16px;
  }
}

footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
}
@media (min-width: 768px) {
  footer {
    padding: 80px 40px 40px;
  }
}

.footer-column {
  margin-bottom: 30px;
}
.footer-column h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f5f5f7;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #a1a1a6;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #a1a1a6;
  margin-bottom: 16px;
}
.footer-bottom .footer-links-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-bottom .footer-links-legal a {
  color: #a1a1a6;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}
.footer-bottom .footer-links-legal a:hover {
  color: #fff;
}/*# sourceMappingURL=main.css.map */