:root {
  color-scheme: light;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --brand-mark-letter-spacing: 0.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #ffffff;
  color: #0c0c0c;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  justify-content: center;
  padding: 1.25rem clamp(1rem, 4vw, 4rem) 3.25rem;
}

.page-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.hero-card {
  position: relative;
  padding: clamp(0rem, 1.5vw, 1rem) clamp(2rem, 4vw, 4rem);
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 4.5rem);
  box-sizing: border-box;
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
  position: relative;
  z-index: 2;
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.menu-toggle {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: #050505;
  display: block;
}

.model-nav {
  display: inline-flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-link {
  text-decoration: none;
  color: #050505;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.model-link:hover {
  background: rgba(0, 0, 0, 0.08);
}

.model-link.active {
  background-color: #050505;
  color: #fff;
  font-weight: 600;
}

.brand-mark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Anton', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: var(--brand-mark-letter-spacing);
  text-transform: uppercase;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.pill-button {
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.pill-button.accent {
  background-color: #f7a500;
  color: #050505;
  border: none;
  padding-inline: 1.85rem;
  box-shadow: 0 10px 20px rgba(214, 140, 0, 0.35);
}

.pill-button.accent:hover {
  background-color: #ffb423;
}

.pill-button.solid {
  background-color: #101010;
  color: #fff;
  padding-inline: 2.5rem;
}

.pill-button.solid:hover {
  background-color: #343434;
}

.sign-link {
  text-decoration: none;
  color: #0c0c0c;
  font-weight: 600;
  font-size: 0.95rem;
}

.sign-link:hover {
  opacity: 0.6;
}

.hero-media {
  position: relative;
  margin: 2.5rem auto clamp(3rem, 6vw, 5rem);
  width: min(1000px, 100%);
  aspect-ratio: 2.05 / 1;
  border-radius: 260px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-showcase-section {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
  align-items: center;
}

.product-showcase-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
  background: radial-gradient(circle at 50% 50%, #fafafa 0%, #f5f5f5 100%);
}

.product-showcase-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.fullscreen-image-section {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  display: block;
}

.fullscreen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-section {
  width: 100%;
  background-color: #000000;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  min-height: 40vh;
}

.text-content-left {
  text-align: left;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

.section-text-line {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  text-transform: none;
}

.section-star-icon {
  position: absolute;
  bottom: clamp(2rem, 5vw, 4rem);
  right: clamp(1.5rem, 6vw, 5rem);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.text-slideshow-section {
  width: 100%;
  background-color: #000000;
  padding: clamp(4rem, 10vw, 8rem) 0;
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 6rem);
  box-sizing: border-box;
  margin: 0;
  margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.75rem));
  margin-bottom: 0;
}

.text-content-right {
  text-align: right;
  align-self: flex-end;
  max-width: 1000px;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  box-sizing: border-box;
}

.marketing-text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.horizontal-scroll-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  cursor: pointer;
  position: relative;
  scroll-behavior: smooth;
  box-sizing: border-box;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.horizontal-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.horizontal-scroll-container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.horizontal-scroll-container.scrolled-right::after {
  opacity: 0;
}

.horizontal-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.image-slideshow {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: 0;
  margin: 0;
  width: max-content;
}

.slide-item {
  flex-shrink: 0;
  width: clamp(300px, 40vw, 500px);
  height: clamp(200px, 30vw, 350px);
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.utilities-section {
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.75rem));
  margin-bottom: 0;
}

.utilities-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0c0c0c;
  margin: 0;
  text-align: center;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.utilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
  max-width: 1200px;
}

.utility-card {
  background: #fafafa;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.utility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.utility-icon {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.utility-icon-image {
  width: clamp(3rem, 6vw, 4.5rem);
  height: clamp(3rem, 6vw, 4.5rem);
  object-fit: contain;
  display: block;
}

.utility-name {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #0c0c0c;
  margin: 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.utility-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.7);
  margin: 0;
  line-height: 1.6;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.safety-section {
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.75rem));
}

.safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.safety-text {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.safety-headline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #0c0c0c;
  margin: 0;
  line-height: 1.4;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.safety-subheadline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.8);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.safety-image-placeholder {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.safety-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specifications-section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  padding-top: clamp(2rem, 6vw, 4rem);
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: calc(-1 * clamp(2rem, 4vw, 3rem));
}

.specifications-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0c0c0c;
  margin: 0;
  text-align: center;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

.customer-stories-section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  padding-top: clamp(2rem, 6vw, 4rem);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: calc(-1 * clamp(2rem, 4vw, 3rem));
}

.stories-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0c0c0c;
  margin: 0;
  text-align: center;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
}

.story-card {
  background: #fafafa;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #e0e0e0;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-name {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #0c0c0c;
  margin: 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.story-help {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(12, 12, 12, 0.8);
  margin: 0;
  line-height: 1.6;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.story-feedback {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.7);
  margin: 0;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(12, 12, 12, 0.1);
}

@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.subscription-section {
  padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  padding-top: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: calc(-1 * clamp(2rem, 4vw, 3rem));
}

.subscription-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.subscription-headline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.subscription-message {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.subscription-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 500px;
}

.plan-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.subscription-plan .plan-price {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  line-height: 1;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.subscription-plan .plan-period {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-left: 0.5rem;
}

.subscription-button {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: clamp(0.85rem, 2vw, 1.1rem) clamp(2.5rem, 5vw, 3.5rem);
}

.page-footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  margin-top: auto;
  width: 100%;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand-name {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.footer-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.footer-link {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.footer-legal {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-link-small {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.footer-link-small:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.spec-category {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.spec-category-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #0c0c0c;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  border-bottom: 1px solid #f5f5f5;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.7);
  flex: 1;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.spec-value {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: #0c0c0c;
  text-align: right;
  margin-left: 1.5rem;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.65);
  color: #111;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero-footer {
  margin-top: 1rem;
}

.launch-info {
  display: flex;
  gap: 4rem;
  font-size: 0.95rem;
}

.launch-info p {
  margin: 0;
  font-weight: 500;
}

.launch-info .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.85rem;
}

.launch-info .price {
  font-size: 1rem;
}

.hero-side {
  position: absolute;
  font-size: clamp(12rem, 22vw, 18rem);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.12);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-side-left {
  left: 0;
}

.hero-side-right {
  right: 0;
}

body.spec-page {
  margin: 0;
  min-height: 100vh;
  background-color: #f5ebe0;
  padding: clamp(1rem, 3vw, 2rem) 0;
  padding-bottom: 0;
  color: #0c0c0c;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.spec-shell {
  width: 100%;
  margin: 0;
  min-height: calc(100vh - clamp(2rem, 6vw, 4rem));
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding-top: clamp(3rem, 5vw, 4rem);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.spec-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 6vw, 5rem);
  background: #ffffff;
  z-index: 1000;
  box-sizing: border-box;
}

.spec-topbar-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.spec-topbar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.01rem;
}

.spec-pill {
  font-family: 'Anton', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: var(--brand-mark-letter-spacing);
  text-transform: uppercase;
}

.spec-topbar-details p {
  margin: 0;
  line-height: 1.3;
}

.spec-coming {
  font-size: 0.85rem;
  font-weight: 600;
}

.spec-price {
  opacity: 0.75;
  font-size: 0.95rem;
}

.hero-section-container {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 1440px;
  margin: 0 auto;
  margin-top: clamp(4rem, 8vw, 6rem);
  min-height: calc(100vh - 200px);
}

.spec-media-frame {
  flex: 0 0 auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  aspect-ratio: 9 / 16;
  width: min(30vw, 350px);
  height: min(60vh, 600px);
  box-shadow: none;
  overflow: hidden;
} 

.spec-media-frame img {
  width: 100%;
  height: 100%;
  border-radius: clamp(1rem, 3vw, 2.5rem);
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: none;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-title-line {
  margin: 0;
  font-family: 'Anton', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--brand-mark-letter-spacing);
  line-height: 1.1;
  color: #0c0c0c;
}

.hero-coming {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.5rem;
}

.hero-coming-text {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0c0c0c;
  line-height: 1.3;
}

.spec-media-plain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(80vw, 1200px);
  margin: 0 auto;
}

.spec-media-plain img {
  width: min(95%, 900px);
  aspect-ratio: 5 / 3;
  max-height: min(60vh, 520px);
  object-fit: cover;
  display: block;
}

.spec-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 7vw, 5rem);
  align-items: flex-start;
}

.product-section {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
  min-height: 80vh;
}

.product-section-light {
  background-color: #fafafa;
  margin: 0 calc(-1 * clamp(1.5rem, 6vw, 5rem));
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: #0c0c0c;
}

.product-coming {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  margin: 0;
  color: #0c0c0c;
}

.product-price {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 400;
  margin: 0;
  color: rgba(12, 12, 12, 0.6);
}

.product-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  position: relative;
}

.product-3d-viewer {
  width: 100%;
  max-width: 800px;
  height: 500px;
  display: block;
  cursor: grab;
  border-radius: 12px;
  overflow: hidden;
}

.product-3d-viewer:active {
  cursor: grabbing;
}

.product-size-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  min-height: 500px;
}

.product-size-wrapper img {
  width: auto;
  max-width: 1200px;
  max-height: 800px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.product-size-wrapper img[src$=".svg"] {
  width: 100%;
  max-width: 1400px;
  max-height: 900px;
  height: auto;
}

.product-image-container img {
  width: 100%;
  max-width: 800px;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.image-zoom-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #0c0c0c;
  background: #ffffff;
  color: #0c0c0c;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.zoom-btn:hover {
  background: #0c0c0c;
  color: #ffffff;
}

.zoom-btn:active {
  transform: scale(0.95);
}

.zoom-slider {
  width: 200px;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0c0c0c;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zoom-slider::-webkit-slider-thumb:hover {
  background: #333;
  transform: scale(1.1);
}

.zoom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0c0c0c;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.zoom-slider::-moz-range-thumb:hover {
  background: #333;
  transform: scale(1.1);
}

.zoom-reset-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  border: 2px solid #0c0c0c;
  background: transparent;
  color: #0c0c0c;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.zoom-reset-btn:hover {
  background: #0c0c0c;
  color: #ffffff;
}

.zoom-reset-btn:active {
  transform: scale(0.95);
}

.product-gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.product-gif {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 50%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.product-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-pill {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(12, 12, 12, 0.2);
  background: transparent;
  color: #0c0c0c;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.action-pill:hover {
  border-color: rgba(12, 12, 12, 0.4);
  background: rgba(12, 12, 12, 0.05);
}

.action-pill.active {
  background: #ffffff;
  border-color: rgba(12, 12, 12, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-stat {
  text-align: center;
}

.spec-stat-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.3rem;
  opacity: 0.7;
}

.spec-stat-value {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
}

.spec-stat-value span {
  font-size: 1rem;
  font-weight: 500;
}

.spec-stat .caption.headline {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1100px) {
  .hero-side {
    font-size: 12rem;
  }

  .hero-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }

  body.spec-page {
    padding: clamp(0.75rem, 4vw, 2rem);
  }

  .spec-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-topbar-left {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  body {
    padding: 2rem 1rem;
  }

  body.spec-page {
    padding: 1.5rem 1rem;
  }

  .model-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-header,
  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    text-align: left;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-media {
    border-radius: 240px / 120px;
    clip-path: inset(0 round 240px / 120px);
  }

  .hero-side {
    display: none;
  }

  .launch-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .spec-shell {
    gap: 1.25rem;
  }

  .spec-topbar {
    gap: 0.75rem;
  }

  .spec-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .spec-stat-value {
    font-size: 1.6rem;
  }

  .hero-section-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .spec-media-frame {
    width: 100%;
    max-width: 100%;
  }

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

  .hero-title {
    align-items: center;
  }

  .hero-coming {
    align-items: center;
  }
}

/* Order Page Styles */
body.order-page {
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.order-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.order-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-product-name {
  font-family: 'Anton', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  margin: 0;
  color: #0c0c0c;
}

.order-product-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  margin: 0;
  color: rgba(12, 12, 12, 0.7);
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.order-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-nav-link {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0c0c0c;
  background: transparent;
  border: 1px solid rgba(12, 12, 12, 0.2);
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.order-nav-link:hover {
  background: rgba(12, 12, 12, 0.05);
  border-color: rgba(12, 12, 12, 0.3);
}

.order-nav-link.active {
  background: #0c0c0c;
  color: #ffffff;
  border-color: #0c0c0c;
}

.order-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: flex-start;
}

.order-left-column {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
}

.order-right-column {
  display: flex;
  flex-direction: column;
}

.color-selection {
  display: flex;
  justify-content: flex-start;
}

.color-swatches {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.color-swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(12, 12, 12, 0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.color-swatch:hover {
  border-color: rgba(12, 12, 12, 0.4);
  transform: scale(1.1);
}

.color-swatch.active {
  border-color: #0c0c0c;
  border-width: 3px;
}

.color-swatch[data-color="white"] {
  background-color: #ffffff;
  border: 2px solid rgba(12, 12, 12, 0.3);
}

.color-swatch[data-color="white"] .color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0c0c0c;
  display: block;
}

.color-swatch[data-color="white"].active {
  border-color: #0c0c0c;
  border-width: 3px;
}

.color-swatch[data-color="grey"] {
  background-color: #8b8b8b;
}

.color-swatch[data-color="grey"] .color-dot {
  display: none;
}

.color-swatch[data-color="blue"] {
  background-color: #4a90e2;
}

.color-swatch[data-color="blue"] .color-dot {
  display: none;
}

.subscription-plan-card {
  background: #e8e8e8;
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  margin: 0;
  color: #0c0c0c;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.plan-price-section {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.plan-price {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #0c0c0c;
  margin: 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.plan-period {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.7);
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.plan-type {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.6);
  margin: 0;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-features li {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
  color: rgba(12, 12, 12, 0.8);
  padding-left: 1.5rem;
  position: relative;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.plan-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0c0c0c;
  font-weight: 600;
}

.shipping-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shipping-title {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  margin: 0;
  color: #0c0c0c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}

.shipping-select {
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 8px;
  border: 1px solid rgba(12, 12, 12, 0.2);
  background: #ffffff;
  color: #0c0c0c;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.2s ease;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230c0c0c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.shipping-select:hover {
  border-color: rgba(12, 12, 12, 0.3);
}

.shipping-select:focus {
  border-color: rgba(12, 12, 12, 0.4);
  box-shadow: 0 0 0 3px rgba(12, 12, 12, 0.1);
}

.order-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.25rem);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 8px;
  border: 1px solid rgba(12, 12, 12, 0.2);
  background: #ffffff;
  color: #0c0c0c;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(12, 12, 12, 0.5);
}

.form-input:focus {
  border-color: rgba(12, 12, 12, 0.4);
  box-shadow: 0 0 0 3px rgba(12, 12, 12, 0.1);
}

.proceed-payment-button {
  width: 100%;
  padding: clamp(1rem, 2.5vw, 1.25rem) 2rem;
  border-radius: 999px;
  border: none;
  background-color: #2a2a2a;
  color: #ffffff;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  margin-top: 0.5rem;
}

.proceed-payment-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.proceed-payment-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .order-container {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
  
  .order-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

