/* Font Face Definitions - Outfit Family */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Thin.woff2') format('woff2'),
       url('../fonts/Outfit-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-ExtraLight.woff2') format('woff2'),
       url('../fonts/Outfit-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Light.woff2') format('woff2'),
       url('../fonts/Outfit-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
       url('../fonts/Outfit-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Medium.woff2') format('woff2'),
       url('../fonts/Outfit-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-SemiBold.woff2') format('woff2'),
       url('../fonts/Outfit-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
       url('../fonts/Outfit-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-ExtraBold.woff2') format('woff2'),
       url('../fonts/Outfit-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Black.woff2') format('woff2'),
       url('../fonts/Outfit-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Utility Classes */
.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: -1;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-text {
  max-width: 500px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  line-height: 1.1;
  color: #fff;
}

.hero-subtitle {
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 24px;
  opacity: 0.9;
  color: #fff;
}

.product-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 12px 20px;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin: 0;
  line-height: 1.2;
  color: #fff;
}

.product-price {
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin: 0;
  color: #fff;
}

/* Buy Button → Apply tertiary style */
.buy-button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  border: 2px solid #132A39;
  background: transparent;
  color: #132A39;
  transition: all 0.3s ease;
}
.buy-button::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(45,191,173,0.25) 0%, rgba(19,42,57,0) 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}
.buy-button:hover::after { transform: scale(4); }
.buy-button:hover {
  border-color: #2DBFAD;
  background: #B5E1EC;
}

/* Feature Overview Section */
#feature-overview {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

/* Slider Grid */
#feature-overview .slides {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1160px;
  column-gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 200px;
  scroll-behavior: smooth;
}

/* Individual Slide */
#feature-overview .slide {
  position: relative;
  scroll-snap-align: center;
  width: 100%;
  height: 625px;
  background: #ddd;
  border-radius: 24px;
  display: block;
  align-items: center;
  justify-content: center;
  user-select: none;
  opacity: 1 !important;
}

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

/* Headline */
#feature-overview .headline {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  color: #132a39;
  font-size: 1.5rem;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 2;
}
#feature-overview .slide.active .headline {
  transform: translateX(0);
  opacity: 1;
}

/* Dot Nav */
#feature-overview .dot-nav {
  position: sticky;
  bottom: 16px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(29,29,31,0.6);
  border-radius: 20px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
#feature-overview.in-view .dot-nav {
  opacity: 1;
  pointer-events: auto;
}

/* Dots */
#feature-overview .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(29,29,31,0.6);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#feature-overview .dot:hover {
  background-color: rgba(0,0,0,0.54);
}
#feature-overview .dot.active {
  background-color: #29292a;
}

/* Closer Look Section */
.closer-look-section {
  padding: 40px 0;
}
.closer-look-title {
  font-size: 2rem;
  font-weight: 600;
  padding-left: calc((100vw - 1160px) / 2);
  margin-bottom: 16px;
}
.closer-look-wrapper {
  position: relative;
  overflow: visible;
}
.closer-look-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1160px;
  gap: 20px;
  padding: 0 calc((100vw - 1160px) / 2);
  box-sizing: content-box;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.slide {
  width: 1160px;
  height: 680px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  height: 100%;
}
.two-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Closer Look Controls → Apply secondary icon-only style */
.closer-look-controls {
  bottom: 10px;
  margin-top: 24px;
  right: 20px;
  display: flex;
  gap: 10px;
  justify-content: right;
  z-index: 10;
}
.closer-look-controls button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #132A39;
  color: #132A39;
  transition: all 0.3s ease;
}
.closer-look-controls button:hover {
  background: #B5E1EC;
  border-color: #2DBFAD;
  color: #132A39;
}
.closer-look-controls svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

/* Circles Section */
.circles-section {
  display: flex;
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: hidden;
  background: #132a39;
  background-image: 
    radial-gradient(ellipse at 20% 20%, rgba(130, 202, 222, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(181, 225, 236, 0.1) 0%, transparent 70%);
    padding-bottom: 80px; /* Added padding to ensure space for content */
}

.circles-section::before,
.circles-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  animation: float 15s infinite ease-in-out alternate;
}

.circles-section::before {
  width: 300px;
  height: 300px;
  background: rgba(130, 202, 222, 0.3);
  top: 20%;
  left: 10%;
  animation-delay: -5s;
}

.circles-section::after {
  width: 400px;
  height: 400px;
  background: rgba(181, 225, 236, 0.2);
  bottom: 15%;
  right: 10%;
}

.circles-section .blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  background: rgba(39, 79, 99, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: float 20s infinite ease-in-out alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -60%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
  }
}

.content-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
  padding: 80px 20px 40px; /* Adjusted padding for better mobile spacing */
}

.text-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
}

.headline {
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(181, 225, 236, 0.3);
}

.subhead {
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}

.image-container {
  width: 100%;
  max-width: 1000px;
  padding: 0px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: auto;
  max-height: 1200px;
  object-fit: contain;
  border-radius: 0px;
  position: relative;
  z-index: 10;
  opacity: 1;
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to top,
    rgba(39, 79, 99, 0.4) 0%,
    rgba(39, 79, 99, 0.1) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.circle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -100px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  z-index: 1;
  pointer-events: none; /* Allows interaction with content above */
}

.circle {
  position: absolute;
  border-radius: 50%;
  transform: scale(0) translateY(100px);
  transition: 
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease-out;
  will-change: transform, opacity;
  box-sizing: border-box;
  z-index: 2;
}

.circle-1 {
  width: clamp(1200px, 80vw, 2000px);
  height: clamp(1200px, 80vw, 2000px);
  min-width: 1700px;
  min-height: 1700px;
  max-width: 1700px;
  max-height: 1700px;
  background: #0e2a3a;
  box-shadow: 
    inset 0 0 120px rgba(18, 85, 85, 0.8),
    inset 0 0 60px rgba(130, 202, 222, 0.4),
    0 0 80px rgba(130, 202, 222, 0.2);
  opacity: 0;
}

.circle-2 {
  width: clamp(1100px, 75vw, 1900px);
  height: clamp(1100px, 75vw, 1900px);
  min-width: 1500px;
  min-height: 1500px;
  max-width: 1500px;
  max-height: 1500px;
  background: #1a3a4d;
  box-shadow: 
    inset 0 0 90px rgba(39, 79, 99, 0.7),
    inset 0 0 40px rgba(181, 225, 236, 0.3),
    0 0 60px rgba(181, 225, 236, 0.15);
  opacity: 0;
}

.circle-3 {
  width: clamp(1000px, 70vw, 1800px);
  height: clamp(1000px, 70vw, 1800px);
  min-width: 1300px;
  min-height: 1300px;
  max-width: 1300px;
  max-height: 1300px;
  background: #244255;
  box-shadow: 
    inset 0 0 60px rgba(39, 79, 99, 0.6),
    inset 0 0 30px rgba(130, 202, 222, 0.2),
    0 0 40px rgba(130, 202, 222, 0.1);
  opacity: 0;
}

.circle-4 {
  width: clamp(900px, 65vw, 1700px);
  height: clamp(900px, 65vw, 1700px);
  min-width: 1100px;
  min-height: 1100px;
  max-width: 1100px;
  max-height: 1100px;
  background: #2e4a5d;
  box-shadow: 
    inset 0 0 40px rgba(18, 85, 85, 0.5),
    inset 0 0 20px rgba(181, 225, 236, 0.1),
    0 0 20px rgba(181, 225, 236, 0.05);
  opacity: 0;
}

.circles-section.in-view .circle-1 {
  transform: scale(1) translateY(0);
  opacity: 0.9;
}

.circles-section.in-view .circle-2 {
  transform: scale(1) translateY(-20px);
  opacity: 0.8;
}

.circles-section.in-view .circle-3 {
  transform: scale(1) translateY(-40px);
  opacity: 0.7;
}

.circles-section.in-view .circle-4 {
  transform: scale(1) translateY(-60px);
  opacity: 0.6;
}

.performance-content {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
  z-index: 20;
}

.performance-headline {
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(181, 225, 236, 0.3);
}

.performance-description {
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  opacity: 0.7;
}

/* Defer non-critical animations */
.circle, .blob {
  opacity: 0;
  transition: none;
}

/* Load animations only when needed */
.circles-section.in-view .circle,
.circles-section.in-view .blob,
.features-section.in-view .feature-slide {
  opacity: 1;
  transition: all 0.8s ease;
}

/* —————————————————————————— */
/*  Feature Tiles (Centered, No Scroll) */
/* —————————————————————————— */

.feature-tiles {
  padding: 5.125rem 0; /* 0 padding on sides, only top/bottom */
  background: #fff;
  font-family: Outfit, Helvetica, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.88);
  max-width: 1312px; /* (654px * 2) + 4px gap */
  margin: 0 auto;
  box-sizing: border-box;
}

.feature-tiles .tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 654px);
  gap: 4px;
  margin: 0 4px; /* 4px margin on both sides */
}

/* Tile Structure */
.feature-tiles .tile-card {
  height: 678px;
  background: #e5f6f9;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem; /* Increased base padding */
  box-sizing: border-box;
  position: relative;
}

/* Text Content - Top Aligned with adjustable spacing */
.feature-tiles .tile-text {
  width: 100%;
  padding: 1rem 0; /* Adjustable vertical padding */
  margin: 0 0 2rem 0; /* Adjustable margin bottom */
}

.feature-tiles .tile-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0; /* Adjustable margin bottom */
  color: #132a39;
  padding: 0 1rem; /* Adjustable horizontal padding */
}

.feature-tiles .tile-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #132a39;
  margin: 0 0 1.5rem 0; /* Adjustable margin bottom */
  padding: 0 1.5rem; /* Adjustable horizontal padding */
}

/* Visual Container - Bottom Center */
.feature-tiles .tile-visual {
  width: 100%;
  position: absolute;
  bottom: 2rem; /* Adjustable distance from bottom */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 360px; /* Fixed height as requested */
  padding: 0 2rem; /* Adjustable horizontal padding */
  box-sizing: border-box;
}

/* Image Styles - Adjustable size */
.feature-tiles .tile-visual img {
  height: 360px; /* Fixed height as requested */
  width: auto; /* Width will adjust proportionally */
  max-width: 100%; /* Ensures image doesn't overflow container */
  object-fit: contain;
  display: block;
}

/* Staggered Effect */
.feature-tiles .tiles-grid > .tile-card:nth-child(2n) {
  transform: translateY(4.875rem);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .circles-section {
    padding-bottom: 100px;
  }
  .content-container {
    padding: 60px 20px 50px;
  }
  .image-container {
    max-width: 80%;
    margin-bottom: 32px;
  }
  .performance-content {
    max-width: 90%;
    margin: 32px auto 0;
    padding: 0 16px;
  }
  .closer-look-section .slide {
    flex: 0 0 calc(50% - 6px);
  }
  
  /* Slightly reduce circle sizes for tablets */
  .circle-1 {
    min-width: 1400px;
    min-height: 1400px;
    max-width: 1400px;
    max-height: 1400px;
  }
  
  .circle-2 {
    min-width: 1200px;
    min-height: 1200px;
    max-width: 1200px;
    max-height: 1200px;
  }
  
  .circle-3 {
    min-width: 1000px;
    min-height: 1000px;
    max-width: 1000px;
    max-height: 1000px;
  }
  
  .circle-4 {
    min-width: 800px;
    min-height: 800px;
    max-width: 800px;
    max-height: 800px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 90vh;
    min-height: 500px;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    bottom: 40px;
    padding: 0 24px;
  }
  .hero-text {
    max-width: 100%;
  }
  .product-container {
    width: 100%;
    border-radius: 50px;
  }
  .product-card {
    gap: 24px;
  }
  
  #feature-overview .slides {
    grid-auto-columns: 356px;
    padding: 0 40px 0 20px;
  }
  #feature-overview .slide {
    height: 480px;
  }
  
  .closer-look-title {
    padding-left: 20px;
  }
  .closer-look-container {
    grid-auto-columns: 356px;
    padding: 0 calc((100vw - 356px) / 2);
  }
  .slide {
    height: 480px;
    width: auto;
  }
  .two-items {
    grid-template-columns: 1fr;
  }
  .two-items img {
    width: 356px;
    height: 240px;
    margin: 0 auto;
  }
  
  .circles-section {
    padding-bottom: 80px;
    min-height: 100vh;
  }
  
  .content-container {
    padding: 50px 16px 40px;
    justify-content: center;
  }
  
  .text-content {
    margin-bottom: 40px;
  }
  
  .image-container {
    max-width: 90%;
    margin-bottom: 32px;
  }
  
  .performance-content {
    max-width: 100%;
    margin: 32px auto 0;
    padding: 0 16px;
  }
  
  .circle-container {
    top: -60px;
    height: 80vh;
  }
  
  /* Mobile circle sizes - maintain visual impact */
  .circle-1 {
    min-width: 1000px;
    min-height: 1000px;
    max-width: 1000px;
    max-height: 1000px;
    box-shadow: 
      inset 0 0 80px rgba(18, 85, 85, 0.8),
      inset 0 0 40px rgba(130, 202, 222, 0.4),
      0 0 60px rgba(130, 202, 222, 0.2);
  }
  
  .circle-2 {
    min-width: 850px;
    min-height: 850px;
    max-width: 850px;
    max-height: 850px;
    box-shadow: 
      inset 0 0 60px rgba(39, 79, 99, 0.7),
      inset 0 0 30px rgba(181, 225, 236, 0.3),
      0 0 40px rgba(181, 225, 236, 0.15);
  }
  
  .circle-3 {
    min-width: 700px;
    min-height: 700px;
    max-width: 700px;
    max-height: 700px;
    box-shadow: 
      inset 0 0 40px rgba(39, 79, 99, 0.6),
      inset 0 0 20px rgba(130, 202, 222, 0.2),
      0 0 30px rgba(130, 202, 222, 0.1);
  }
  
  .circle-4 {
    min-width: 550px;
    min-height: 550px;
    max-width: 550px;
    max-height: 550px;
    box-shadow: 
      inset 0 0 30px rgba(18, 85, 85, 0.5),
      inset 0 0 15px rgba(181, 225, 236, 0.1),
      0 0 20px rgba(181, 225, 236, 0.05);
  }
  
  .feature-tiles .tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;              /* 4px between rows */
    justify-content: center;
    margin: 0 auto;
    padding: 0 16px; /* give it some horizontal breathing room */
  }

  /* 1. Remove the desktop stagger */
  .feature-tiles .tiles-grid > .tile-card:nth-child(2n) {
    transform: none !important;
  }

  .feature-tiles .tile-card {
    width: 100%;
    max-width: 418px; /* if you still want to cap its max size */
    height: 524px;         /* fixed height */
    display: flex;
    flex-direction: column;
    padding: 1rem;         /* tighten up */
    box-sizing: border-box;
    position: relative;    /* needed for flex + margin-auto push */
    overflow: hidden;
  }

  .feature-tiles .tile-text {
    margin: 0 0 1rem 0;
    padding: 0.5rem 1rem;
  }

  /* 2. Make the visual static and push it down */
  .feature-tiles .tile-visual {
    position: static;
    margin-top: auto;      /* pushes to bottom of the flex column */
    height: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 1rem;
  }

  .feature-tiles .tile-visual img {
    max-height: 200px;     /* keeps image from blowing out the card */
    width: auto;
    object-fit: contain;
  }

  
}

@media (max-width: 480px) {
  .hero-section {
    height: 85vh;
    min-height: 400px;
  }
  .hero-content {
    bottom: 30px;
    padding: 0 16px;
    gap: 32px;
  }
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .product-container {
    padding: 10px 16px;
    border-radius: 40px;
  }
  .buy-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .feature-slide {
    width: calc(100vw - 20px);
    height: calc(100vh - 80px);
    margin: 10px 0;
    border-radius: 16px;
  }

  .feature-image {
    border-radius: 16px;
  }

  .feature-content {
    max-width: 80%;
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
  }

  .dotnav {
    padding: 4px 12px;
    border-radius: 16px;
  }

  .dotnav-link {
    width: 6px;
    height: 6px;
  }

  .dotnav-link.active {
    width: 12px;
    height: 6px;
  }
  
  .closer-look-section .slide-img,
  .closer-look-section .two-images .slide-img {
    height: 200px;
  }
  
  .content-container {
    padding: 40px 12px 32px;
  }
  .headline {
    font-size: 1rem;
  }
  .subhead {
    font-size: 1.5rem;
  }
  .circles-section {
    padding-bottom: 60px;
    min-height: 90vh;
  }
  
  .content-container {
    padding: 40px 12px 32px;
  }
  
  .text-content {
    margin-bottom: 32px;
  }
  
  .headline {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .subhead {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  
  .circle-container {
    top: -40px;
    height: 120vh;
  }
  
  /* Smallest mobile circle sizes */
  .circle-1 {
    min-width: 700px;
    min-height: 700px;
    max-width: 700px;
    max-height: 700px;
    box-shadow: 
      inset 0 0 60px rgba(18, 85, 85, 0.8),
      inset 0 0 30px rgba(130, 202, 222, 0.4),
      0 0 40px rgba(130, 202, 222, 0.2);
  }
  
  .circle-2 {
    min-width: 580px;
    min-height: 580px;
    max-width: 580px;
    max-height: 580px;
    box-shadow: 
      inset 0 0 40px rgba(39, 79, 99, 0.7),
      inset 0 0 20px rgba(181, 225, 236, 0.3),
      0 0 30px rgba(181, 225, 236, 0.15);
  }
  
  .circle-3 {
    min-width: 460px;
    min-height: 460px;
    max-width: 460px;
    max-height: 460px;
    box-shadow: 
      inset 0 0 30px rgba(39, 79, 99, 0.6),
      inset 0 0 15px rgba(130, 202, 222, 0.2),
      0 0 20px rgba(130, 202, 222, 0.1);
  }
  
  .circle-4 {
    min-width: 340px;
    min-height: 340px;
    max-width: 340px;
    max-height: 340px;
    box-shadow: 
      inset 0 0 20px rgba(18, 85, 85, 0.5),
      inset 0 0 10px rgba(181, 225, 236, 0.1),
      0 0 15px rgba(181, 225, 236, 0.05);
  }
  
  .performance-content {
    margin: 24px auto 0;
    padding: 0 16px;
  }
  
  .performance-headline {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  
  .performance-description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Animation states remain the same */
.circles-section.in-view .circle-1 {
  transform: scale(1) translateY(0);
  opacity: 0.9;
}

.circles-section.in-view .circle-2 {
  transform: scale(1) translateY(-20px);
  opacity: 0.8;
}

.circles-section.in-view .circle-3 {
  transform: scale(1) translateY(-40px);
  opacity: 0.7;
}

.circles-section.in-view .circle-4 {
  transform: scale(1) translateY(-60px);
  opacity: 0.6;
}