:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-soft: #f4edd9;
  --ink: #07111f;
  --muted: #535f6e;
  --line: #e5d9c5;
  --teal: #b5862c;
  --emerald: #dbb85a;
  --gold: #c49938;
  --blue: #16243a;
  --rose: #a55a43;
  --dark: #07111f;
  --shadow: 0 10px 30px rgba(7, 17, 31, 0.04), 0 1px 3px rgba(7, 17, 31, 0.02);
  --shadow-hover: 0 20px 40px rgba(196, 153, 56, 0.12), 0 1px 6px rgba(196, 153, 56, 0.04);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(219, 227, 234, 0.9);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-img {
  width: 168px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--gold));
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(198, 154, 60, 0.24);
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; line-height: 1.1; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 12px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

/* Desktop Navigation Layout */
@media (min-width: 992px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
  }
  .nav-links-left {
    display: flex !important;
    gap: 26px;
  }
  .brand {
    justify-self: center;
  }
  .nav-right-desktop-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
  }
  .nav-links-right {
    display: flex !important;
    gap: 26px;
  }
  .mobile-menu-links {
    display: none !important;
  }
  .menu-toggle {
    display: none !important;
  }
}

/* Mobile Navigation Layout */
@media (max-width: 991px) {
  .nav-links-left,
  .nav-right-desktop-wrapper {
    display: none !important;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 50;
  }
  .nav.open .mobile-menu-links {
    display: flex;
  }
  .mobile-menu-links a {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid #f2eedf;
  }
  .mobile-menu-links a.active {
    color: var(--teal);
  }
}

/* Professional Luxury Buttons */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  color: #fff;
  background: var(--dark);
  border: 1px solid var(--dark);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 153, 56, 0.2);
}

.btn-dark {
  color: #fff;
  background: var(--dark);
  border: 1px solid var(--dark);
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--dark);
  border-color: var(--line);
  background: #fff;
}

.btn-light:hover {
  background: var(--surface-soft);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f5ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(198, 154, 60, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(198, 154, 60, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.hero-centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered h1 {
  text-align: center;
}

.hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-actions {
  justify-content: center;
  margin: 32px 0 24px;
}

.hero-centered .proof-row {
  justify-content: center;
  margin-bottom: 48px;
}

.eyebrow {
  color: var(--teal);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  font-family: "Playfair Display", Georgia, serif;
}

.page-hero h1 { max-width: 900px; }

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  font-family: "Playfair Display", Georgia, serif;
}

h3 { line-height: 1.2; }

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.lead {
  max-width: 720px;
  color: #475467;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.product-board {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-board-wide {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.board-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d2dc;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
}

.board-grid-three-col {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.05fr;
  gap: 18px;
}

@media (max-width: 991px) {
  .board-grid-three-col {
    grid-template-columns: 1fr;
  }
}

.camera-panel,
.builder-panel,
.metric,
.module-card,
.solution-card,
.price-card,
.resource-card,
.stat-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.camera-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #fdfcf9; /* light ivory background */
}

/* breathing ambient glow for camera panel */
.camera-panel::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(196, 153, 56, 0.12) 0%, rgba(196, 153, 56, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

.camera-grid-lines {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(196, 153, 56, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(196, 153, 56, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.customer-figure {
  position: absolute;
  left: 50%;
  top: 44px;
  width: 220px;
  height: 330px;
  transform: translateX(-50%);
}

.hair {
  position: absolute;
  left: 50%;
  top: 0;
  width: 172px;
  height: 214px;
  transform: translateX(-50%);
  border-radius: 48% 48% 30% 30%;
}

.face {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 138px;
  height: 178px;
  transform: translateX(-50%);
  border-radius: 46%;
}

.necklace {
  position: absolute;
  left: 50%;
  top: 232px;
  width: 142px;
  height: 66px;
  transform: translateX(-50%);
  border-radius: 50%;
}

.earring {
  position: absolute;
  top: 150px;
  width: 18px;
  height: 44px;
  border-radius: 999px;
}

.earring.left { left: 24px; }
.earring.right { right: 24px; }

/* Dual Try-On Layers styling */
.tryon-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tryon-layer.wireframe {
  z-index: 2;
  background: #fdfcf9;
}

.tryon-layer.rendering {
  z-index: 3;
  background: #fdfcf9;
}

/* Wireframe specific elements */
.tryon-layer.wireframe .hair.wire {
  background: transparent;
  border: 1px dashed rgba(196, 153, 56, 0.45);
}

.tryon-layer.wireframe .face.wire {
  background: rgba(196, 153, 56, 0.02);
  border: 1px dashed rgba(196, 153, 56, 0.55);
}

.tryon-layer.wireframe .necklace.wire {
  border: 4px dashed rgba(196, 153, 56, 0.4);
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tryon-layer.wireframe .earring.wire {
  background: transparent;
  border: 1.5px dashed rgba(196, 153, 56, 0.6);
}

/* Vision tracking overlay elements */
.vision-tracking-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tracking-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
  animation: pulse-node 2s infinite alternate;
}

@keyframes pulse-node {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 1; }
}

/* Rendering specific elements */
.tryon-layer.rendering .hair.render {
  background: #231d1c;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
}

.tryon-layer.rendering .face.render {
  background: linear-gradient(135deg, #fcdcd0 0%, #e6aa90 100%);
  box-shadow: 0 10px 20px rgba(196, 153, 56, 0.08);
}

.tryon-layer.rendering .necklace.render {
  border: 5px solid transparent;
  border-bottom-color: #f3ce71;
  filter: drop-shadow(0 0 10px rgba(243, 206, 113, 0.65));
}

.tryon-layer.rendering .earring.render {
  background: linear-gradient(185deg, #fffad6 0%, #dbb85a 50%, #8c6616 100%);
  box-shadow: 0 3px 10px rgba(219, 184, 90, 0.38);
}

/* Sweep Divider Bar & Indicator */
.sweep-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 10;
  pointer-events: none;
  transform: translateX(-50%);
}

.sweep-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(196, 153, 56, 0.5);
}

.sweep-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(196, 153, 56, 0.25);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.camera-panel:hover .sweep-handle {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Transparent Drag Range Input */
.sweep-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 12;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.sweep-input::-webkit-slider-runnable-track {
  background: transparent;
  border: none;
}

.sweep-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}

/* Status Chip Luxury V2 */
.status-chip-v2 {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(196, 153, 56, 0.25);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(253, 252, 249, 0.92);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(196, 153, 56, 0.05);
}

.builder-panel { padding: 18px; }
.builder-panel h3 { margin-bottom: 18px; }

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.field-row strong { color: var(--ink); }

.swatches { display: flex; gap: 10px; }

.swatch {
  width: 32px;
  height: 32px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.rose { background: var(--rose); }
.gold { background: var(--gold); }
.white { background: #e7edf3; }

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf3;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.bar.blue span { background: var(--blue); }

.quote {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
}

.quote small, .quote strong, .quote span { display: block; }
.quote small { color: rgba(255,255,255,0.62); }
.quote strong { margin: 4px 0; font-size: 31px; }
.quote span { color: #99f6e4; font-size: 12px; font-weight: 900; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.metric { padding: 16px; }
.metric strong { display: block; font-size: 26px; }
.metric span { color: var(--muted); font-size: 12px; font-weight: 800; }

.logo-band {
  padding: 22px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.logo-grid {
  display: grid;
  grid-template-columns: 0.7fr repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.logo-grid span { color: var(--muted); font-weight: 850; }

.logo-grid strong {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: #344054;
  font-size: 13px;
  text-align: center;
}

.section { padding: 92px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #fff; background: var(--dark); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .stat-card h3 { color: var(--ink); }
.section-dark .stat-card p { color: var(--muted); }

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card,
.solution-card,
.resource-card,
.stat-card {
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover,
.solution-card:hover,
.resource-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.module-card p,
.solution-card p,
.resource-card p { font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
}

.process div {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(196, 153, 56, 0.15);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.process div:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.process span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 850;
  font-size: 20px;
}

.process strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 6px;
  display: block;
}

.process p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1200px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-weight: 750;
  list-style: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.page-hero {
  padding: 82px 0 60px;
  background:
    linear-gradient(135deg, #fffdf8 0%, #f8f1e3 58%, #efe3c9 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead { margin-bottom: 0; }

.price-card {
  position: relative;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
}

.price-card.featured {
  border-color: rgba(0,167,165,0.46);
  box-shadow: 0 22px 56px rgba(0,167,165,0.18);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: #065f5b;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 900;
}

.price {
  display: block;
  margin: 20px 0;
  font-size: 34px;
  font-weight: 900;
}

.price-card ul { min-height: 190px; margin: 0; padding: 0; list-style: none; }
.price-card li { margin: 12px 0; color: #475467; }
.price-card .btn { width: 100%; margin-top: 18px; }

.resource-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 900;
}

.form-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfcfe;
}

.demo-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.demo-form .full,
.demo-form button { grid-column: 1 / -1; }

.cta-band {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8,17,31,0.98), rgba(68,49,21,0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 58px);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner p { color: rgba(255,255,255,0.72); }

.site-footer {
  padding: 58px 0;
  color: rgba(255,255,255,0.72);
  background: #08111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
}

.footer-grid p { max-width: 360px; color: rgba(255,255,255,0.68); font-size: 15px; }
.site-footer .brand strong { color: #fff; }
.site-footer .brand-img {
  padding: 6px;
  border-radius: 8px;
  background: #fffdf8;
  mix-blend-mode: normal;
}
.site-footer h4 { margin: 0 0 16px; color: #fff; }
.site-footer a:not(.brand) { display: block; margin: 10px 0; font-size: 14px; }

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) 360px;
  gap: 42px;
  align-items: end;
}

.hero-note {
  padding: 26px;
  border: 1px solid rgba(198, 154, 60, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  font-family: "Playfair Display", Georgia, serif;
}

.inner-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.side-rail {
  position: sticky;
  top: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.side-rail span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 900;
}

.side-rail a {
  display: block;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  color: #2b3545;
  font-weight: 800;
}

.inner-stack {
  display: grid;
  gap: 18px;
}

.wide-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8,17,31,0.06);
}

.wide-panel p { margin-bottom: 0; }

.lux-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lux-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.lux-row:first-child { border-top: 0; }
.lux-row strong { font-size: 18px; }
.lux-row p { margin-bottom: 0; font-size: 15px; }

.premium-card {
  border: 1px solid rgba(198,154,60,0.38);
  background: linear-gradient(180deg, #fff, #fffaf0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .product-board { max-width: 760px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero-grid,
  .inner-layout,
  .wide-panel {
    grid-template-columns: 1fr;
  }
  .side-rail { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-links, .nav-actions .btn-light { display: none; }
  .nav.open .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 14px; }
  .nav-actions .btn-primary { min-height: 42px; padding: 0 14px; }
  .brand-img { width: 132px; height: 44px; }

  .hero { padding: 54px 0; }
  h1 { font-size: 43px; }
  h2 { font-size: 36px; }
  .lead { font-size: 17px; }
  .board-grid,
  .metric-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .process,
  .logo-grid,
  .demo-form,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .camera-panel { min-height: 380px; }
  .section { padding: 68px 0; }
  .cta-inner { display: grid; }
  .lux-row { grid-template-columns: 1fr; }
}

/* Modern Background Glows */
.glow-wrapper {
  position: relative;
  overflow: hidden;
}
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 153, 56, 0.08) 0%, rgba(196, 153, 56, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.glow-blob-1 { top: -10%; left: -10%; }
.glow-blob-2 { bottom: -10%; right: -10%; }

/* Pricing Toggle Switch */
.pricing-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 50px;
  position: relative;
  z-index: 10;
}

.toggle-switch-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f4edd9;
  padding: 4px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

.toggle-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 20px;
  border-radius: 99px;
  border: none;
  background: transparent;
}

.toggle-label.active {
  color: #07111f;
  background: #fff;
  box-shadow: 0 2px 10px rgba(7, 17, 31, 0.08);
}

.toggle-label span.discount-badge {
  font-size: 10px;
  font-weight: 850;
  color: #fff;
  background: var(--rose);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
}

/* Pricing Grid & Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 28px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf2 100%);
  box-shadow: 0 20px 40px rgba(196, 153, 56, 0.08);
}

.pricing-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 18px;
  right: -32px;
  background: linear-gradient(135deg, #efd88e, var(--gold));
  color: #07111f;
  font-size: 8px;
  font-weight: 900;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 4px rgba(7, 17, 31, 0.08);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 850;
  color: var(--ink);
}

.pricing-card .plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 48px;
  line-height: 1.5;
}

.pricing-card .price-container {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-card .price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 4px;
}

.pricing-card .price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card .price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.pricing-card .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #344054;
  line-height: 1.45;
}

.pricing-card .features-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  transition: all 0.25s ease;
}

.pricing-card.featured .btn-primary {
  box-shadow: 0 8px 22px rgba(196, 153, 56, 0.25);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  box-shadow: 0 8px 22px rgba(7, 17, 31, 0.2);
}

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

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

/* Status Alerts */
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Luxury Vertical Timeline */
.timeline-vertical {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
  padding-left: 32px;
}

.timeline-vertical::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  margin-bottom: 32px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--dark);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 20px 24px;
  transition: all 0.25s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
}

.timeline-content h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 750;
  color: #fff;
  font-family: inherit;
}

.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Device Mockup Try-On Frame */
.device-mockup-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.tryon-mirror-frame {
  width: 310px;
  height: 520px;
  background: var(--surface);
  border: 12px solid var(--dark); /* Sleek dark bezel border */
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(7, 17, 31, 0.12), 0 0 0 1px var(--line);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.mirror-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background: #faf9f6;
}

.mirror-camera-view {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mirror-overlay-card {
  position: absolute;
  bottom: 48px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(7, 17, 31, 0.05);
}

/* Floating Luxury Badges */
.floating-luxury-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(196, 153, 56, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.floating-luxury-badge.badge-top-left {
  top: 40px;
  left: -20px;
}

.floating-luxury-badge.badge-bottom-right {
  bottom: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.floating-luxury-badge strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
}

.floating-luxury-badge span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .floating-luxury-badge {
    display: none; /* Hide floating badges on smaller viewports to prevent layout overlap */
  }
}

/* Floating Spec Cards */
.floating-spec-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(196, 153, 56, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(196, 153, 56, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20;
  pointer-events: none; /* Let drag events pass through to slider underneath */
}

.spec-card-1 {
  top: 60px;
  left: -20px;
  animation: float-card-1 4s ease-in-out infinite alternate;
}

.spec-card-2 {
  bottom: 140px;
  left: 170px;
  animation: float-card-2 4.5s ease-in-out infinite alternate;
}

.spec-card-3 {
  bottom: 25px;
  left: -15px;
  animation: float-card-3 3.8s ease-in-out infinite alternate;
}

@keyframes float-card-1 {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-8px) scale(1.02); }
}

@keyframes float-card-2 {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-6px) scale(1.01); }
}

@keyframes float-card-3 {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-10px) scale(1.02); }
}

.spec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.spec-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.spec-dot.green {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-green 1.5s infinite;
}

.spec-dot.blue {
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

@keyframes pulse-green {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.spec-content {
  display: flex;
  flex-direction: column;
}

.spec-content strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.spec-content span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1199px) {
  .floating-spec-card {
    display: none !important; /* Hide floating badges on smaller viewports to prevent layout overlap */
  }
}

/* Diamond Refraction Sparkle animations */
.sparkle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0;
  pointer-events: none;
}

.sp-1 {
  top: 15%;
  left: 5%;
  animation: sparkle 4s infinite 0.5s;
}

.sp-2 {
  top: 30%;
  right: 12%;
  animation: sparkle 5s infinite 1.2s;
}

.sp-3 {
  bottom: 25%;
  left: 8%;
  animation: sparkle 4.5s infinite 2s;
}

.sp-4 {
  bottom: 15%;
  right: 6%;
  animation: sparkle 6s infinite 0.1s;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(90deg);
    opacity: 0.8;
  }
}

.sparkle-svg {
  width: 100%;
  height: 100%;
  display: block;
}


