@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  color-scheme: light;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --bg: #f8f9f6;
  --surface: #ffffff;
  --surface-alt: #f1f3ef;
  --surface-dark: #0a1510;
  --text: #1a1d19;
  --text-muted: #6b7068;
  --text-light: #8a8f87;
  --accent: #0c6a2a;
  --accent-dark: #085220;
  --accent-light: #2e7d32;
  --accent-glow: rgba(12, 106, 42, 0.14);
  --accent-glow-strong: rgba(12, 106, 42, 0.28);
  --accent-gold: #c89242;
  --accent-gold-soft: #fdf4e8;
  --accent-gold-border: rgba(200, 146, 66, 0.3);
  --border-color: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(255, 255, 255, 0.6);
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.11), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.14), 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ==========================================================================
   Apple-Style Floating Glass Topbar Navigation
   ========================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(251, 251, 249, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.topbar.is-scrolled {
  background: rgba(251, 251, 249, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.topbar-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 32px 0 0;
  height: 80px;
  position: relative;
  transition: var(--transition);
}

.topbar.is-scrolled .topbar-inner {
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 1101;
  height: 100%;
  flex: 1;
  overflow: hidden;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-wordmark strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-wordmark small {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  padding: 6px 0;
  transition: var(--transition);
}

.brand-logo.brand-logo-full {
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  padding: 4px 0;
}

.brand-logo-video {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  transition: var(--transition);
}

.nav-toggle-input {
  display: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1101;
  transition: var(--transition);
}

.nav-toggle-btn:hover {
  background: rgba(12, 106, 42, 0.08);
}

.nav-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-wrap: nowrap;
  height: 100%;
}

.nav-links a:not(.btn-cta-nav) {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

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

.nav-links a.is-active {
  color: var(--accent);
  font-weight: 700;
}

.nav-links a.is-active::after {
  width: calc(100% - 40px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: calc(100% - 40px);
}

.btn-cta-nav {
  background: transparent;
  color: var(--accent) !important;
  border: 1.5px solid rgba(12, 106, 42, 0.38);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-left: 12px;
  height: auto !important;
}

.btn-cta-nav.is-active {
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 600;
  border-color: var(--accent);
  box-shadow: 0 4px 18px var(--accent-glow-strong);
}

.btn-cta-nav.is-active::after {
  display: none;
}

.btn-cta-nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-cta-nav:hover {
  color: #ffffff !important;
  border-color: var(--accent);
  transform: none;
  box-shadow: 0 4px 18px var(--accent-glow-strong);
}

.btn-cta-nav:hover::after {
  transform: translateX(0);
}

/* ==========================================================================
   Hero Section (Apple-style Large Showcase)
   ========================================================================== */
body {
  position: relative;
}

.hero-apple {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.hero-apple::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(12, 106, 42, 0.1), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.hero-copy {
  max-width: 600px;
}

.badge-apple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-gold-soft);
  border: 1px solid rgba(200, 146, 66, 0.25);
  border-radius: var(--radius-pill);
  color: #8c5819;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-apple::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-apple h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a1d19 30%, #0c6a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(12, 106, 42, 0.22);
}

.btn.primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(12, 106, 42, 0.32);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.spec-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.spec-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.hero-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.hero-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 12px);
}

.hero-showcase {
  padding: 0;
  min-height: 540px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241, 245, 239, 0.95));
}

.hero-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 12px);
  animation: heroKenBurns 16s ease-in-out infinite alternate;
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 19, 0) 45%, rgba(13, 26, 19, 0.55) 100%);
  border-radius: calc(var(--radius-lg) - 12px);
}

.hero-showcase-label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  color: #ffffff;
}

.hero-showcase-label .eyebrow {
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.hero-showcase-label h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 106, 42, 0.18), transparent 65%);
  filter: blur(18px);
  opacity: 0.85;
  animation: glowShift 8s ease-in-out infinite alternate;
}

.hero-pulse-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(12, 106, 42, 0.15);
  box-shadow: 0 0 0 8px rgba(12, 106, 42, 0.04);
  animation: pulseRing 2.8s ease-out infinite;
  z-index: 0;
}

.tagline-banner {
  max-width: 900px;
  margin: -28px auto 0;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 36px;
  background: linear-gradient(135deg, var(--surface-dark) 0%, #16301f 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 20px 50px rgba(12, 106, 42, 0.22);
}

.tagline-banner-icon {
  font-size: 1.3rem;
}

.tagline-banner p {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

@keyframes glowShift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.88; }
  50% { transform: translate(16px, -14px) scale(1.05); opacity: 0.72; }
}

@keyframes pulseRing {
  0% { transform: scale(0.88); opacity: 0.6; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   Full-Bleed Launch Banner Hero
   ========================================================================== */
.hero-fullbleed {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1488 / 715;
  overflow: hidden;
  background: #0d1a13;
}

.hero-fb-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-fb-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero-fb-slide.is-active {
  opacity: 1;
}

.hero-fb-dots {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-fb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.hero-fb-dot:hover {
  border-color: #fff;
}

.hero-fb-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .hero-fb-dots { bottom: 16px; right: 16px; }
}

.hero-fb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.10) 32%,
    rgba(0, 0, 0, 0.46) 60%,
    rgba(0, 0, 0, 0.80) 88%,
    rgba(0, 0, 0, 0.90) 100%
  );
  z-index: 1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.62;
  transition: opacity 0.3s;
  animation: scrollBounce 2.4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll-hint:hover {
  opacity: 1;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.62; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.9; }
}

/* Key Stats Strip */
.hero-stats-strip {
  background: var(--surface-dark);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stat-item strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .hero-fullbleed {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .hero-fb-slide {
    object-fit: cover;
    object-position: center 15%;
  }
  .hero-stats-strip {
    flex-wrap: wrap;
    padding: 0 16px;
  }
  .stat-item {
    flex: 1 1 calc(50% - 16px);
    max-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 12px;
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-fullbleed {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .hero-fb-slide {
    object-fit: cover;
    object-position: center 15%;
  }
  .hero-fb-badge {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    margin-bottom: 8px;
  }
}

/* ==========================================================================
   Section Headings (Apple Minimalist Center)
   ========================================================================== */
.section {
  padding: 100px 32px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* ==========================================================================
   Product Showcase Grid (Apple Cards)
   ========================================================================== */
.section-products {
  background: #f5f5f7;
}

.product-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border-color);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.product-card-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  max-width: 320px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 106, 42, 0.2);
}

.product-card-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #fbfbf9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 19, 0) 55%, rgba(13, 26, 19, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .product-card-thumb::after {
  opacity: 1;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.06);
}

.product-card-copy {
  padding: 16px 26px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-copy h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.2em * 2);
}

.product-card-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-link-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

.product-link-label::after {
  content: '→';
  transition: transform 0.2s ease;
}

.product-card:hover .product-link-label::after {
  transform: translateX(4px);
}

/* ==========================================================================
   Brand & Natural Coir Showcase Banner (Rich UI Canvas)
   ========================================================================== */
.section-brand-banner {
  background: var(--surface-dark);
  color: #ffffff;
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}

.brand-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-banner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #ffffff;
}

.brand-banner-copy p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 32px;
}

.brand-tagline-quote {
  padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-gold);
}

.brand-banner-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-banner-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Why BrickBloom Feature Grid
   ========================================================================== */
.feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm), inset 0 3px 0 var(--accent);
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), inset 0 3px 0 var(--accent);
  border-color: rgba(12, 106, 42, 0.15);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-glow) 0%, rgba(200, 146, 66, 0.16) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Inquiry & Contact Panel (Apple Glass Form)
   ========================================================================== */
.section-contact {
  background: #f5f5f7;
}

.contact-panel {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-bullets {
  display: grid;
  gap: 16px;
}

.contact-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: inherit;
  font-size: 0.98rem;
  background: #fbfbf9;
  color: var(--text);
  transition: var(--transition);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-status {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: #e8f5e9;
  color: #1b5e20;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid #c8e6c9;
  text-align: center;
}

/* ==========================================================================
   Product Detail Pages (product-hero, applications, product contact CTA)
   ========================================================================== */
.product-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
}

.product-hero .section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
}

.product-hero .section-heading h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a1d19 30%, #0c6a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-hero .section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.product-detail h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.product-detail ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.product-detail li {
  position: relative;
  padding-left: 34px;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.product-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

.product-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image:hover img {
  transform: scale(1.05);
}

.pricing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.pricing-includes h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--text);
}

.pricing-includes ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing-includes li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-includes .pricing-variant-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.pricing-table-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table caption {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.pricing-table thead th {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pricing-table thead th:first-child {
  background: var(--surface-dark);
}

.pricing-table tbody th,
.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  background: var(--surface-alt);
  color: var(--text);
}

.pricing-table tbody td:not(:first-child) {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.pricing-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.pricing-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--accent-gold-soft);
  border: 1px solid var(--accent-gold-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.section.alt {
  background: #f5f5f7;
}

.section.alt .section-heading {
  max-width: 700px;
}

.card-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 106, 42, 0.2);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-section {
  background: #ffffff;
}

.contact-section .contact-copy {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-section .contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-section .contact-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-section .contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-apple {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 32px 40px;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 52px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
}

/* Responsive */
@media (max-width: 1080px) {
  .topbar-inner {
    height: 72px;
  }

  .topbar.is-scrolled .topbar-inner {
    height: 60px;
  }

  .brand-logo {
    max-width: 240px;
  }

  .hero-apple,
  .brand-banner-inner,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .pricing-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Scroll-Reveal Animation System
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    padding: 0 16px 0 0;
    height: 64px;
  }

  .topbar.is-scrolled .topbar-inner {
    height: 56px;
  }

  .brand-logo {
    height: 100%;
    max-width: 180px;
    padding: 6px 0;
  }

  .brand-logo-video {
    height: 100%;
    width: auto;
  }

  .nav-toggle-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 320px);
    height: 100dvh;
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    background: rgba(251, 251, 249, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: -16px 0 34px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    font-size: 1.05rem;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1099;
    overflow-y: auto;
    height: 100dvh !important;
    flex: unset;
  }

  .nav-links a:not(.btn-cta-nav) {
    height: auto;
    padding: 12px 4px;
    display: flex;
    align-items: center;
  }

  .nav-links a::after {
    left: 4px;
  }

  .nav-links a.is-active::after,
  .nav-links a:hover::after {
    width: calc(100% - 8px);
  }

  .btn-cta-nav {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-toggle-input:checked ~ .nav-links {
    transform: translateX(0);
  }

  .nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 60px 20px;
  }

  .hero-apple {
    padding: 40px 20px 60px;
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 340px;
  }

  .tagline-banner {
    margin-top: -20px;
    padding: 16px 22px;
    border-radius: 22px;
  }

  .tagline-banner p {
    font-size: 0.92rem;
  }

  .feature-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 32px 20px;
  }

  .product-image img {
    height: 300px;
  }

  .contact-section .contact-form {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    max-width: 130px;
  }

  .hero-apple h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  .hero-specs-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-showcase {
    min-height: 260px;
  }

  .product-card-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card {
    max-width: none;
  }

  .product-card-copy h3 {
    min-height: 2.6em;
    font-size: 1.15rem;
  }

  .contact-panel {
    padding: 24px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
