/* ============ Custom properties ============ */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-lime: #c7ea89;
  --color-teal: #6fd2d9;
  --color-blue: #527fef;
  --color-gray-900: #1f2937;
  --color-gray-600: #4b5563;
  --color-gray-400: #9ca3af;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;

  --gradient-accent: linear-gradient(90deg, var(--color-lime) 0%, var(--color-teal) 50%, var(--color-blue) 100%);

  --font-body: "Geist", "Geist Placeholder", sans-serif;

  --container-max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-pill: 99px;

  --tap-min: 44px;
}

/* ============ Reset & base ============ */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6, p, figure, ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

input {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ Fonts ============ */
@font-face {
  font-family: "Geist";
  src: url("/site/assets/fonts/geist-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Geist";
  src: url("/site/assets/fonts/geist-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Geist";
  src: url("/site/assets/fonts/geist-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Geist";
  src: url("/site/assets/fonts/geist-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

/* ============ Type scale (fluid, mobile-first via clamp) ============ */
.eyebrow {
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  background-image: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(2rem, 1.4rem + 3vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.subtext {
  font-size: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
  font-weight: 400;
  color: var(--color-gray-600);
  line-height: 1.4;
  margin-top: 1rem;
  max-width: 42ch;
}

/* ============ Layout helpers ============ */
.section-head {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}

section {
  padding-block: clamp(3rem, 5vw + 1rem, 7rem);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.35);
  color: var(--color-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
}

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-100);
}

.nav-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  overflow: visible;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--tap-min);
  height: var(--tap-min);
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1rem var(--gutter) 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.nav-panel.is-open {
  max-height: 28rem;
  opacity: 1;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: var(--tap-min);
  font-size: 1.0625rem;
  font-weight: 500;
}

.nav-cta {
  align-self: flex-start;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 72px);
  padding-block: clamp(2rem, 4vw, 4rem);
  background-color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/site/newimages/backgroundtall.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.18) 34%,
    rgba(0, 0, 0, 0.55) 46%,
    rgba(0, 0, 0, 0.88) 56%,
    black 62%,
    black 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.18) 34%,
    rgba(0, 0, 0, 0.55) 46%,
    rgba(0, 0, 0, 0.88) 56%,
    black 62%,
    black 100%
  );
}

.hero-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%);
}

.hero-marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.hero-marquee-track span {
  font-size: clamp(4.5rem, 4rem + 8vw, 12.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--color-gray-200) 20%, var(--color-white) 85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (max-width: 639px) {
  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero::before {
    background-position: 58% bottom;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 18%,
      rgba(0, 0, 0, 0.18) 30%,
      rgba(0, 0, 0, 0.55) 44%,
      rgba(0, 0, 0, 0.88) 54%,
      black 60%,
      black 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 18%,
      rgba(0, 0, 0, 0.18) 30%,
      rgba(0, 0, 0, 0.55) 44%,
      rgba(0, 0, 0, 0.88) 54%,
      black 60%,
      black 100%
    );
  }
}

.hero-product {
  position: relative;
  width: 100%;
  max-width: 480px;
  overflow: visible;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2.75rem -4rem -2.25rem;
  background: radial-gradient(
    58% 70% at 50% 42%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 38%,
    rgba(255, 255, 255, 0.55) 58%,
    rgba(255, 255, 255, 0.18) 76%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(18px);
  pointer-events: none;
}

.hero-product-img {
  width: 100%;
  /* drop-shadow follows PNG alpha, so the glow wraps the mirror silhouette */
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 1))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.75))
    drop-shadow(0 0 55px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 90px rgba(255, 255, 255, 0.22));
}

.hero-callout {
  display: none;
}

.hero-subtext {
  position: relative;
  z-index: 1;
  font-size: clamp(1.375rem, 1.15rem + 1.1vw, 1.875rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  max-width: 28ch;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding-top: 1rem;
}

.hero-features li {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  font-weight: 500;
  background-image: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-shipping {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.hero-shipping strong {
  color: var(--color-black);
  font-weight: 600;
}

.hero-shipping .dot {
  display: none;
}

/* ============ Introduction ============ */
.intro {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1024 / 149;
  padding-block: 0;
  background: var(--color-black);
}

.intro-banner {
  display: block;
  flex: none;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.intro-banner-mirror {
  transform: scaleX(-1);
}

/* ============ Features grid ============ */
.features .section-head {
  text-align: center;
}

.features .subtext {
  margin-inline: auto;
}

/* Shared gap/radius/edges. Mobile/tablet: lifestyle, detail pair, then app pair.
   Desktop: lifestyle full width on top; apps + stacked detail cards on one row below. */
.feature-grid {
  --feature-gap: 1rem;
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--feature-gap);
}

.feature-showcase,
.feature-apps,
.feature-showcase-details {
  display: grid;
  gap: var(--feature-gap);
}

.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--feature-gap);
}

.feature-showcase-details {
  grid-template-columns: 1fr 1fr;
}

.feature-apps {
  grid-template-columns: 1fr 1fr;
}

.feature-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  background: var(--color-gray-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card-lifestyle {
  aspect-ratio: 16 / 9;
}

.feature-card-detail {
  aspect-ratio: 4 / 3;
}

.feature-card-internals {
  aspect-ratio: 1436 / 1095;
}

.feature-card-led {
  aspect-ratio: 2132 / 1562;
}

.feature-card-led .feature-card-img {
  object-fit: contain;
  object-position: top center;
}

.feature-card-internals .feature-card-img {
  object-fit: contain;
  object-position: center top;
}

.feature-card-app {
  aspect-ratio: 9 / 16;
  background: #1c1a22;
}

.feature-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-card-app .feature-card-img {
  object-position: top center;
}

.feature-card-lifestyle .feature-card-img {
  object-fit: cover;
  object-position: center top;
}

.feature-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(0.85rem, 2.5vw, 1.35rem);
  background: none;
  pointer-events: none;
}

.feature-card-overlay h3 {
  display: inline-block;
  color: var(--color-white);
  font-size: clamp(0.9375rem, 0.9rem + 0.35vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 22ch;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

/* ============ Color section ============ */
.color-picker {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.color-product {
  width: 100%;
  max-width: 400px;
}

.color-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.color-label {
  font-size: 1.125rem;
  font-weight: 500;
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
}

.swatch {
  width: var(--tap-min);
  height: var(--tap-min);
  border-radius: 50%;
  background: var(--swatch-color);
  border: 1px solid var(--color-gray-200);
  position: relative;
  transition: transform 0.15s ease;
}

.swatch:hover {
  transform: scale(1.08);
}

.swatch[aria-pressed="true"] {
  box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-black);
}

/* ============ Specs table ============ */
.specs-table {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.9375rem;
}

.specs-row-head {
  font-weight: 600;
  border-bottom: 1px solid var(--color-gray-200);
}

.specs-row span:first-child,
.specs-row span:last-child {
  color: var(--color-gray-600);
}

/* ============ Awards ============ */
.awards {
  background: var(--color-gray-50);
}

.awards-grid {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.award-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.award-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-accent);
  flex-shrink: 0;
}

.award-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
}

.award-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

/* ============ Testimonials ============ */
.testimonial-carousel {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-viewport {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.testimonial-card {
  width: min(80vw, 320px);
  flex-shrink: 0;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote {
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.user-handle {
  font-size: 0.8125rem;
  color: var(--color-gray-400);
}

.carousel-arrow {
  width: var(--tap-min);
  height: var(--tap-min);
  min-width: var(--tap-min);
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-arrow img {
  width: 16px;
  height: 16px;
}

/* ============ Pricing ============ */
.pricing .section-head {
  text-align: center;
}

.pricing .subtext {
  margin-inline: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
}

.price-card {
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
              linear-gradient(180deg, var(--color-blue) 0%, var(--color-teal) 50%, var(--color-lime) 100%) border-box;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card-sub {
  background: linear-gradient(#f4fcf7, #f4fcf7) padding-box,
              linear-gradient(180deg, var(--color-lime) 0%, var(--color-teal) 55%, var(--color-blue) 100%) border-box;
}

.price-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-500, #6b7280);
  margin-bottom: 0.75rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
}

.price-row-free {
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.price-new {
  font-size: clamp(2.75rem, 2.2rem + 2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-free {
  background: linear-gradient(90deg, #166534, #0f766e 45%, #0369a1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.price-old {
  font-size: clamp(1.5rem, 1.3rem + 0.6vw, 2.5rem);
  font-weight: 600;
  color: var(--color-gray-400);
  text-decoration: line-through;
}

.price-desc {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.price-card-sub .price-desc {
  border-bottom: none;
  padding-bottom: 0;
  color: #0f766e;
}

.price-then {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-500, #6b7280);
  margin-top: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.price-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
  text-align: left;
  flex: 1;
}

.price-benefits li {
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
}

.price-cta {
  width: 100%;
  margin-top: auto;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.pricing-marquee {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.pricing-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration, 28s) linear infinite;
  will-change: transform;
}

.pricing-marquee-set {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}

.pricing-marquee-set img {
  width: clamp(140px, 22vw, 220px);
  flex-shrink: 0;
  display: block;
}

/* ============ FAQ ============ */
.faq .section-head {
  text-align: center;
}

.accordion {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: var(--tap-min);
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.accordion-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.accordion-trigger[aria-expanded="true"] + .accordion-answer {
  grid-template-rows: 1fr;
}

.accordion-trigger[aria-expanded="true"] + .accordion-answer p {
  padding-bottom: 1.25rem;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-gray-400);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

/* ============ Newsletter ============ */
.newsletter {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.newsletter .section-head {
  text-align: center;
}

.newsletter .subtext {
  color: var(--color-gray-200);
  margin: 1rem auto 0;
}

.newsletter-form {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  min-height: var(--tap-min);
  padding: 0 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--color-gray-400);
}

.newsletter-confirm {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--color-lime);
}

/* ============ Footer ============ */
.site-footer {
  background: linear-gradient(180deg, #DCE8C8 0%, #EEF3E5 50%, #F8F7F2 100%);
  padding: clamp(2.5rem, 4vw, 4rem) 0 1.5rem;
}

.footer-top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: var(--tap-min);
  height: var(--tap-min);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-col-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--color-gray-600);
}

.footer-credit a {
  text-decoration: underline;
}

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cascade for card grids: each item waits a little longer than the previous one */
.feature-grid .feature-showcase > .reveal { transition-delay: 0s; }
.feature-showcase-details .reveal:nth-child(1) { transition-delay: 0.08s; }
.feature-showcase-details .reveal:nth-child(2) { transition-delay: 0.16s; }
.feature-apps .reveal:nth-child(1) { transition-delay: 0.24s; }
.feature-apps .reveal:nth-child(2) { transition-delay: 0.32s; }

.awards-grid .reveal:nth-child(1) { transition-delay: 0s; }
.awards-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.awards-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.awards-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.awards-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.awards-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.testimonial-track .reveal:nth-child(1) { transition-delay: 0s; }
.testimonial-track .reveal:nth-child(2) { transition-delay: 0.08s; }
.testimonial-track .reveal:nth-child(3) { transition-delay: 0.16s; }
.testimonial-track .reveal:nth-child(4) { transition-delay: 0.24s; }
.testimonial-track .reveal:nth-child(5) { transition-delay: 0.32s; }
.testimonial-track .reveal:nth-child(6) { transition-delay: 0.4s; }

.accordion .reveal:nth-child(1) { transition-delay: 0s; }
.accordion .reveal:nth-child(2) { transition-delay: 0.06s; }
.accordion .reveal:nth-child(3) { transition-delay: 0.12s; }
.accordion .reveal:nth-child(4) { transition-delay: 0.18s; }
.accordion .reveal:nth-child(5) { transition-delay: 0.24s; }
.accordion .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ============ Page load entrance (above-the-fold, runs immediately) ============ */
@keyframes header-drop-in {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-product-rise {
  from { opacity: 0; transform: translateY(48px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-item-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  animation: header-drop-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-product {
  animation: hero-product-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-content-col > * {
  opacity: 0;
  animation: hero-item-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content-col > *:nth-child(1) { animation-delay: 0.25s; }
.hero-content-col > *:nth-child(2) { animation-delay: 0.35s; }
.hero-content-col > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content-col > *:nth-child(4) { animation-delay: 0.55s; }

/* =====================================================================
   Breakpoint: >= 640px (large phone / small tablet)
   ===================================================================== */
@media (min-width: 640px) {
  .feature-grid {
    --feature-gap: 1.25rem;
  }

  .feature-card-lifestyle {
    aspect-ratio: 16 / 9;
  }

  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    gap: 1.25rem;
  }
}

/* =====================================================================
   Breakpoint: >= 768px (tablet)
   ===================================================================== */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    max-height: none;
    opacity: 1;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2rem;
    width: auto;
    border-bottom: none;
  }

  .nav-links {
    flex-direction: row;
    gap: 1.75rem;
  }

  .nav-links a {
    min-height: auto;
  }

  .section-head {
    text-align: left;
  }

  .hero-inner {
    text-align: left;
    align-items: flex-start;
  }

  .hero-product {
    align-self: center;
    max-width: 460px;
  }

  .hero-content-col {
    align-items: flex-start;
    text-align: left;
  }

  .hero-copy {
    align-items: flex-start;
  }

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

  .hero-features {
    justify-content: flex-start;
  }

  .hero-shipping {
    justify-content: flex-start;
  }

  .hero-shipping .dot {
    display: inline;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    max-width: 300px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
    max-width: 480px;
  }
}

/* =====================================================================
   Breakpoint: >= 1024px (desktop)
   ===================================================================== */
@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row-reverse;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }

  .hero-product {
    flex-shrink: 0;
    width: 45%;
    max-width: 520px;
    align-self: auto;
  }

  .hero-content-col {
    flex: 1;
  }

  .hero-callout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    max-width: 190px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: visible;
  }

  .hero-callout-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #4b5563;
  }

  .hero-callout-icon svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .hero-callout-copy {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
  }

  .hero-callout-title {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #17171a;
    letter-spacing: -0.01em;
  }

  .hero-callout-text {
    font-size: 0.75rem;
    font-weight: 550;
    line-height: 1.25;
    color: #4b5563;
  }

  .hero-callout-title {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .hero-callout-1 {
    top: 16%;
    left: -2%;
  }

  .hero-callout-1 .hero-callout-title {
    background-image: linear-gradient(90deg, #075985, #0369a1);
  }

  .hero-callout-1 .hero-callout-icon {
    color: #0369a1;
  }

  .hero-callout-2 {
    top: 42%;
    right: -3%;
  }

  .hero-callout-2 .hero-callout-title {
    background-image: linear-gradient(90deg, #92400e, #c2410c);
  }

  .hero-callout-2 .hero-callout-icon {
    color: #b45309;
  }

  .hero-callout-3 {
    bottom: 8%;
    left: -6%;
  }

  .hero-callout-3 .hero-callout-title {
    background-image: linear-gradient(90deg, #166534, #0f766e);
  }

  .hero-callout-3 .hero-callout-icon {
    color: #047857;
  }

  .feature-grid {
    --feature-gap: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.3fr);
    grid-template-rows: auto auto;
    align-items: stretch;
    min-height: 0;
  }

  .feature-showcase,
  .feature-apps {
    display: contents;
  }

  .feature-showcase-details {
    grid-column: 3;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--feature-gap);
    min-height: 0;
    height: 100%;
    align-self: stretch;
  }

  .feature-card-lifestyle {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    height: auto;
    min-height: 0;
  }

  .feature-card-app-home {
    grid-column: 1;
    grid-row: 2;
  }

  .feature-card-app-trends {
    grid-column: 2;
    grid-row: 2;
  }

  .feature-card-app {
    aspect-ratio: 1290 / 2796;
    height: auto;
    min-height: 0;
    align-self: start;
  }

  .feature-card-app .feature-card-img {
    object-fit: contain;
    object-position: top center;
  }

  .feature-card-detail {
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
  }

  .feature-card-led,
  .feature-card-internals {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .feature-card-led .feature-card-img {
    object-fit: cover;
    object-position: top center;
  }

  .feature-card-internals .feature-card-img {
    object-fit: cover;
    object-position: top center;
  }

  .color-picker {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }

  .color-info {
    align-items: flex-start;
  }

  .specs-row {
    grid-template-columns: 1fr 2fr;
  }

  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    width: 340px;
  }
}

/* ============ Checkout modal ============ */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.checkout-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.checkout-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--color-gray-600);
  background: var(--color-gray-50);
  transition: background 0.15s ease, color 0.15s ease;
}

.checkout-modal-close:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-900);
}

.checkout-modal-close svg {
  width: 1rem;
  height: 1rem;
}

.checkout-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  margin-bottom: 0.35rem;
}

.checkout-title {
  font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.checkout-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.45;
}

.checkout-summary {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
}

.checkout-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-product {
  font-size: 0.9375rem;
  font-weight: 600;
}

.checkout-product-note {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--color-gray-600);
}

.checkout-price {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.checkout-summary-total {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-gray-200);
  font-size: 0.9375rem;
  font-weight: 600;
}

.checkout-wallets {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.checkout-wallet {
  height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0 0.75rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  overflow: hidden;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.checkout-wallet:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-400);
}

.checkout-wallet:active {
  transform: scale(0.98);
}

.checkout-wallet-apple {
  background: #000;
  border-color: #000;
}

.checkout-wallet-apple:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.checkout-wallet-klarna {
  background: #ffa8cd;
  border-color: #ffa8cd;
}

.checkout-wallet-klarna:hover {
  background: #ff9ac4;
  border-color: #ff9ac4;
}

.checkout-wallet-logo {
  display: block;
  width: auto;
  max-width: 5.5rem;
  height: 1.25rem;
  object-fit: contain;
}

.checkout-wallet-apple .checkout-wallet-logo {
  height: 1.15rem;
}

.checkout-wallet-google .checkout-wallet-logo {
  height: 1.35rem;
}

.checkout-wallet-klarna .checkout-wallet-logo {
  height: 1.35rem;
  max-width: 5.75rem;
}

.checkout-wallet-paypal .checkout-wallet-logo {
  height: 1.4rem;
  max-width: 6.5rem;
}

.checkout-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.15rem;
  color: var(--color-gray-400);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checkout-or::before,
.checkout-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-gray-200);
}

.checkout-form {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkout-card-input {
  position: relative;
}

.checkout-card-input input {
  padding-right: 6.5rem;
}

.checkout-card-brands {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  pointer-events: none;
}

.checkout-card-brand {
  width: 1.85rem;
  height: 1.2rem;
  display: block;
  object-fit: contain;
  border-radius: 2px;
  background: var(--color-white);
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.checkout-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-gray-900);
}

.checkout-field input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  background: var(--color-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-field input:focus {
  outline: none;
  border-color: var(--color-gray-400);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.checkout-error {
  font-size: 0.875rem;
  color: #b42318;
}

.checkout-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.checkout-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.checkout-footnote {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  line-height: 1.45;
  text-align: center;
}

.checkout-success {
  text-align: center;
  padding-top: 0.5rem;
}

.checkout-success-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ecfdf3;
  color: #047857;
}

.checkout-success-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

body.checkout-open {
  overflow: hidden;
}
