:root {
  --bg-dark: #050505;
  --bg-card: #111111;
  --accent: #5cc8ff;
  --accent-alt: #9055ff;
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --amazon: #ff9900;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-top-link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.logo-top-link:hover {
  opacity: 0.8;
}

.header-logo-img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Burger Active State */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--text);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(92, 200, 255, 0.3);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(92, 200, 255, 0.5);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
  background: #000000;
  /* Solid black background for maximum contrast */
}

.btn-secondary .btn-text {
  background: linear-gradient(90deg, #208dfe 0%, #a448ff 38%, #ff295c 70%, #ff6d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn-secondary:hover {
  border-color: #a448ff;
  /* Purple glow accent border on hover */
  transform: translateY(-2px);
  background: #111111;
  /* Slight lift in darkness */
}

.btn-amazon-small {
  background: var(--amazon);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 800 !important;
  text-decoration: none;
  font-size: 13px;
}

.btn-amazon-small:hover {
  filter: brightness(1.1);
  color: #000 !important;
}

/* Hero */
.hero {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 700px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* Scale up more to fully hide Veo logo */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* ← ここで暗さを調整しています！ (0.0が透明、1.0が真っ黒) */
}

.hero-content.text-center-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 60px;
  /* Offset for nav */
}

.neon-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8.5vw, 88px); /* Focused size to match caption width */
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: -0.02em; /* Adjusted tracking for elegance */
  margin-bottom: 24px;
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 60px rgba(92, 200, 255, 0.6);
}

.neon-title .highlight-neon {
  color: #fff;
  /* White base */
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(92, 200, 255, 0.8),
    /* Cyan/Neon blue glow */
    0 0 40px rgba(92, 200, 255, 0.6),
    0 0 80px rgba(92, 200, 255, 0.4);
}

/* Drop-in Floting & Flash Animation */
.drop-in {
  opacity: 0;
  animation: dropInNeonFlash 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes dropInNeonFlash {
  0% {
    opacity: 0;
    transform: translateY(-100px) scale(1.05);
    /* 少し上から縮みながら */
    filter: brightness(0);
  }

  60% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1.2);
  }

  75% {
    /* ピカーン！と光る瞬間（フラッシュ） */
    filter: brightness(2.5);
    text-shadow:
      0 0 20px #fff,
      0 0 60px #fff,
      0 0 100px #5cc8ff,
      0 0 150px #5cc8ff;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}

.mini-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.mini-desc .nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  justify-content: center;
}

/* Animations handled at bottom */

/* Hero 2 Split Section */
.hero-split {
  display: flex;
  background: #ffffff;
  color: #111111;
  min-height: 80vh;
}

.hero-split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.hero-split-content h2 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-split-content .highlight {
  color: var(--accent);
}

.hero-desc {
  margin: 32px 0 40px;
  max-width: 500px;
}

.hero-desc strong {
  color: #000000;
  font-size: 26px;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hero-desc p {
  font-size: 17px;
  color: #555;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-split-content p.model-name {
  font-size: 14px;
  color: #888;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.hero-split-image {
  flex: 1;
  background: #f4f4f4;
  /* Reverted to original light gray */
  position: relative;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: 0.3s;
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.3);
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features */
.features {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
  /* Restore center alignment for better layout balance */
}

.section-header .sub {
  text-transform: none;
  /* No forced uppercase */
  font-weight: 800;
  /* Increased slightly for better gradient visibility */
  font-size: 16px;
  /* Apple-style: deliberately small and elegant subtitle */
  letter-spacing: 0.1em;
  /* Apple-style: wide tracking for the subtitle */
  display: inline-block;
  /* Inline-block helps the gradient bound correctly around the text */
  margin-bottom: 24px;
  /* Apple gap: generous breathing room before the h2 */
  line-height: 1.4;
  background: linear-gradient(90deg, #208dfe 0%, #a448ff 38%, #ff295c 70%, #ff6d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  /* Scalable huge text */
  font-weight: 800;
  /* Elegant bold (Apple doesn't use massive 900 blockiness for JP) */
  letter-spacing: 0.02em;
  /* Beautiful airy tracking, removing previous -2px crampedness */
  line-height: 1.5;
  /* Perfect, un-cramped Apple-style line-height for JP fonts */
  color: #f5f5f7;
  /* Almost pure white */
  max-width: 800px;
  margin: 0 auto;
  /* Restore horizontal centering */
}

.emphasize-number {
  font-size: 1.35em;
  font-weight: 900;
  color: #000;
  /* Dark color to contrast against the white background */
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(92, 200, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card.highlighted {
  border: 1px solid rgba(144, 85, 255, 0.4);
  background: linear-gradient(135deg, #111 0%, #1a1525 100%);
}

.feature-card.highlighted:hover {
  border-color: var(--accent-alt);
}

.f-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 8px var(--accent),
    0 0 16px var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.feature-card.highlighted .f-tag {
  color: #fff;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 8px var(--accent-alt),
    0 0 16px var(--accent-alt);
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-card .card-image {
  margin-bottom: 24px;
}

.feature-card .card-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #e0faff 0%, #4a8891 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Standalone Feature (sRGB) */
.feature-wide {
  margin-top: 40px;
  background: linear-gradient(135deg, #111 0%, #080a15 100%);
  border: 1px solid rgba(92, 200, 255, 0.2);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  align-items: center;
  transition: 0.4s;
}

.feature-wide:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.wide-image {
  line-height: 0;
}

.wide-img {
  width: 100%;
  height: auto;
  display: block;
}

.wide-text-content {
  padding: 60px;
}

.wide-text-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.wide-gradient-title {
  background: linear-gradient(90deg, #208dfe 0%, #a448ff 38%, #ff295c 70%, #ff6d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.wide-text-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .feature-wide {
    grid-template-columns: 1fr;
  }
  .wide-text-content {
    padding: 40px;
  }
}

.feature-card small {
  display: block;
  margin-top: 15px;
  font-size: 11px;
  color: var(--text-dim);
}

/* Specs */
.specs {
  padding: 100px 24px;
  background: var(--bg-dark);
}

.specs-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table th,
.specs-table td {
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table th {
  background: rgba(255, 255, 255, 0.03);
  width: 35%;
  font-weight: 600;
  color: var(--text-dim);
  text-align: left;
  vertical-align: middle;
}

.specs-table td {
  background: transparent;
  color: var(--text);
  line-height: 1.6;
}

/* Amazon */
.amazon-exclusive {
  padding: 120px 24px;
  max-width: 1300px;
  margin: 0 auto;
  background-color: transparent;
  /* Sitting on dark body */
}

.amazon-card {
  width: 100%;
  max-width: 1000px;
  /* Slightly wider to support a larger horizontal layout */
  margin: 0 auto;
  background: linear-gradient(135deg, #fffdf8 0%, #ffffff 100%);
  padding: 40px 60px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0; /* Remove internal padding for visual flush */
  min-height: auto;
}

@media (max-width: 968px) {
  .amazon-card {
    grid-template-columns: 1fr;
    padding: 0;
    height: auto;
    text-align: left;
  }
}

.amazon-content {
  flex: 1.2;
  /* Balanced flex for wide screen */
  position: relative;
  z-index: 2;
}

.amazon-heading {
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 850;
  letter-spacing: -0.8px;
  overflow-wrap: break-word;
  /* Prevents clipping */
  color: #0d0d0d;
}

.amazon-orange {
  color: #ff9900;
}

.amazon-black {
  color: #0d0d0d;
}

.amazon-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

.amazon-price {
  color: #111;
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px; /* Reduced for closer model info */
  display: flex;
  align-items: flex-start;
  letter-spacing: -1px;
}

.amazon-model {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.amazon-price .currency {
  font-size: 20px;
  margin-top: 8px;
  margin-right: 4px;
  font-weight: 700;
}

.amazon-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amazon-visual {
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 24px;
}

/* Video Crop to hide Veo logo */
.amazon-video-crop {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hide-logo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12); /* Increased from 1.05 to ensure logo is hidden */
  transform-origin: 20% 20%; /* Shift slightly to crop bottom-right more */
}

@media (max-width: 1024px) {
  .amazon-card {
    grid-template-columns: 1fr;
  }
  .amazon-content { padding: 40px; }
  .amazon-visual { padding: 24px; }
}

.tag {
  color: #00A8E1;
  /* Amazon signature Sky Blue */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.store-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.prime {
  color: #00A8E1;
  font-weight: 900;
  font-size: 20px;
  /* Proportional shrink */
  letter-spacing: -0.5px;
}

.prime span {
  font-size: 0.8em;
  margin-left: 2px;
}

.delivery {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.btn-amazon-gold {
  background: linear-gradient(180deg, #f7dfa1 0%, #f0c14b 100%);
  border: 1px solid #a88734;
  border-radius: 12px;
  padding: 14px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #111;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(240, 193, 75, 0.3);
  margin: 0 auto;
  text-decoration: none; /* For <a> tag usage */
}

.btn-main-text {
  font-weight: 850;
  font-size: 16px;
  line-height: 1.2;
}

.btn-sub-text {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-amazon-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 193, 75, 0.5);
  filter: brightness(1.05);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s forwards;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.2s 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Image Swap Interaction */
.img-swap-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-swap-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.0s ease-in-out; /* Slower and softer transition for a premium feel */
}

.img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.img-swap-container:hover .img-primary {
  opacity: 0;
}

.img-swap-container:hover .img-secondary {
  opacity: 1;
}

/* Mobile Click Trigger */
.img-swap-container.active .img-primary {
  opacity: 0;
}

.img-swap-container.active .img-secondary {
  opacity: 1;
}

.tap-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0.8;
  display: none; /* Only show on SP */
}

@media (max-width: 768px) {
  .tap-hint { display: block; }
}
/* Shop Trust Badges - Triangular Layout */
.shop-trust-badges.triangular {
  margin: 24px 0;
  display: grid;
  grid-template-areas: 
    "top top"
    "left right";
  gap: 16px 20px;
  background: rgba(0, 0, 0, 0.03);
  padding: 16px;
  border-radius: 20px;
}

.trust-item.top-center { 
  grid-area: top; 
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
}
.trust-item.bottom-left { grid-area: left; }
.trust-item.bottom-right { grid-area: right; }

.trust-item {
  display: flex;
  align-items: flex-start; /* Ensure top-alignment for multi-line text */
  gap: 10px;
}

.trust-mini-logo {
  height: 22px;
  width: auto;
  opacity: 0.9;
  margin-top: -2px;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: #111111;
  opacity: 0.6;
  margin-top: 2px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  display: block; /* Force new line */
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-text span {
  display: block; /* Force new line */
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  white-space: normal; /* Allow wrapping only if needed, but flex-col handles it */
}

@media (max-width: 480px) {
  .shop-trust-badges.triangular {
    grid-template-areas: 
      "top"
      "left"
      "right";
    grid-template-columns: 1fr;
  }
  .trust-item.top-center { justify-content: flex-start; }
}

.faq-section {
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 24px 32px;
  border-radius: 12px;
  transition: 0.3s;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(92, 200, 255, 0.3);
}

.faq-question {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-list {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer {
  padding: 80px 24px 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-dark);
  /* Keeps it aligned with general page flow */
}

.footer-brands {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.footer-nc-logo {
  height: 64px;
  object-fit: contain;
}

.footer-cast-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s;
  margin: 10px 0;
}

.footer-cast-link:hover {
  transform: scale(1.03);
}

.footer-sub-text {
  font-size: 11px;
  color: #888;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-cast-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-cast-logo-text .gradient-text {
  background: linear-gradient(90deg, #4efdfc 0%, #208dfe 50%, #5d91ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-uniq-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  color: #888;
  transition: opacity 0.3s;
}

.footer-uniq-link:hover {
  opacity: 0.7;
}

.footer-seller-text {
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-uniq-logo {
  height: 24px;
  object-fit: contain;
}

footer p {
  color: #555;
  font-size: 13px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 40px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amazon-card {
    gap: 40px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 20px;
    color: #fff;
  }

  .neon-title {
    font-size: 64px;
    letter-spacing: -1px;
  }

  .mini-desc {
    font-size: 14px;
    padding: 0 20px;
  }

  .hero-split {
    flex-direction: column;
  }

  .hero-split-content {
    padding: 60px 24px;
    text-align: center;
    align-items: center;
  }

  .hero-split-content h2 {
    font-size: 48px;
  }

  .hero-desc {
    margin: 24px 0;
  }

  .hero-split-image {
    min-height: 400px;
    /* Stronger height for visibility */
    display: block !important;
    background: #f4f4f4;
  }

  .carousel-container {
    height: 100%;
    min-height: 400px;
  }

  .carousel-slide img {
    display: block;
    width: 90%;
  }

  .feature-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 0 20px;
    margin: 0 -20px;
    /* Bleed to edges */
    padding: 0 20px 40px;
    /* Restore padding inside bleed */
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 85%;
    /* Show 85% of card + peek of next */
    scroll-snap-align: center;
    padding: 32px 24px;
  }

  .amazon-card {
    padding: 40px 20px;
    text-align: center;
  }

  .amazon-heading {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  /* Slightly smaller for mobile */
  .amazon-price {
    justify-content: center;
    font-size: 44px;
  }

  .store-info {
    justify-content: center;
  }

  .specs-table th {
    width: 45%;
    padding: 12px 16px;
    font-size: 12px;
  }

  .specs-table td {
    padding: 12px 16px;
    font-size: 12px;
  }

  .faq-section {
    padding: 80px 20px;
  }

  .faq-question {
    font-size: 14px;
  }

  .footer-nc-logo {
    height: 52px;
  }

  .footer-cast-logo-text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .header-logo-img {
    height: 28px;
  }

  .neon-title {
    font-size: 44px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 12px;
  }

  .amazon-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .amazon-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .btn-amazon-gold {
    padding: 16px 32px;
    width: 100%;
    font-size: 14px;
  }
  
  .footer-nc-logo {
    height: 40px;
  }

  .footer-cast-logo-text {
    font-size: 18px;
  }
}

/* Port Carousel Navigation */
.port-carousel-container {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.port-photos {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(92, 200, 255, 0.3) transparent;
  scroll-behavior: smooth;
}

.port-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.port-nav span {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.port-nav:hover {
  background: rgba(92, 200, 255, 0.2);
  border-color: rgba(92, 200, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.port-nav.prev { left: -60px; }
.port-nav.next { right: -60px; }

@media (max-width: 1100px) {
  .port-nav.prev { left: 10px; }
  .port-nav.next { right: 10px; }
  .port-nav {
    background: rgba(0, 0, 0, 0.4); /* Darker for better visibility on images */
  }
}

.port-photos::-webkit-scrollbar {
  height: 6px;
}

.port-photos::-webkit-scrollbar-thumb {
  background: rgba(92, 200, 255, 0.3);
  border-radius: 10px;
}

.port-img-wrapper {
  flex: 0 0 calc(50% - 10px); /* 2 images visible on PC */
  min-width: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: zoom-in;
  transition: transform 0.3s, border-color 0.3s;
  scroll-snap-align: start;
}

.port-img-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 200, 255, 0.3);
}

.port-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(92, 200, 255, 0.2);
  animation: zoomLightbox 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes zoomLightbox {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 60px;
  font-weight: 200;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #5cc8ff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .port-photos {
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .port-photos::-webkit-scrollbar { display: none; }
  
  .port-img-wrapper { 
    flex: 0 0 85%; 
    min-width: 250px;
    scroll-snap-align: center;
  }
}

/* H2 Person BG */
.h2-bg-person {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 50%;
  /* Adjusted for color visibility */
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  /* Fully opaque */
}

.h2-bg-person img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 968px) {
  .hero-split-content {
    padding-bottom: 0px;
  }

  /* Remove bottom padding to let person sit on line */
  .h2-bg-person {
    position: relative;
    right: 0;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    opacity: 1;
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .h2-bg-person img {
    margin-bottom: -5px;
    /* Tiny adjustment to ensure it hits the line */
  }
}

.hero-split-content h2,
.hero-desc,
.model-name {
  position: relative;
  z-index: 5;
  /* Ensure text stays above person image */
}