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

:root {
  --red: #e6292e;
  --orange: #f15927;
  --yellow: #ffc400;
  --cream: #fff5f2;
  --ink: #0b0b0b;
  --charcoal: #171717;
  --muted: #686868;
  --line: rgba(15,15,15,0.12);
  --white: #fff;
}

html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  pointer-events: none;
  padding: 8px 18px 0;
}

.nav-pill-wrap {
  pointer-events: auto;
  max-width: 1600px;
  margin: 0 auto;
  transition: all 0.55s ease;
}

.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  background: rgba(3,3,3,0.76);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.55s ease;
}

#navbar.scrolled .nav-pill-wrap { margin-top: 4px; max-width: 1380px; }
#navbar.scrolled .nav-inner {
  height: 58px;
  background: rgba(0,0,0,0.96);
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
}

.nav-logo img { height: 42px; width: auto; }
#navbar.scrolled .nav-logo img { height: 36px; }

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

.nav-links a {
  position: relative;
  height: 38px;
  min-width: 68px;
  padding: 0 14px;
  overflow: hidden;
  display: inline-block;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a span {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.26s ease;
}

.nav-links a span:nth-child(2) { top: 38px; }

.nav-links a:hover span { transform: translateY(-38px); color: var(--yellow); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.language-select {
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 900;
  padding: 0 10px;
  cursor: pointer;
}

.language-select option { color: var(--ink); }
.nav-cta {
  height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-hamburger {
  display: none;
  color: var(--white);
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-mobile-menu {
  display: none;
  pointer-events: auto;
  margin: 8px 18px 0;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,0.96);
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-menu.open { display: grid; }
.nav-mobile-menu a {
  padding: 12px;
  border-radius: 12px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
  user-select: none;
}

.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 0.32; }
.hero-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,196,0,0.12), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,0.52), rgba(0,0,0,0.78));
}

#icon-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.drag-icon {
  position: absolute;
  pointer-events: all;
  cursor: grab;
  will-change: transform, left, top;
  transform-origin: center;
  touch-action: none;
}

.drag-icon img {
  width: 100%;
  pointer-events: none;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.55));
}

.drag-icon.is-grabbed {
  cursor: grabbing;
  z-index: 9999 !important;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.55));
}

.drag-icon.is-idle {
  animation: float var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--dly, 0s);
}

@keyframes float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100vw - 40px));
  text-align: center;
  padding: 108px 0 60px;
}

.hero-logo {
  width: min(260px, 56vw);
  margin: 0 auto 26px;
}

.hero-kicker, .eyebrow {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-headline {
  margin: 14px auto 24px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.93;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-headline em { color: var(--yellow); font-style: normal; }
.hero-sub {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 1.08rem;
}

.hero-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn-primary, .btn-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-secondary { border-color: rgba(255,255,255,0.28); color: var(--white); }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }

.hero-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.hero-dot {
  width: 10px; height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
}
.hero-dot.active { background: var(--yellow); transform: scale(1.18); }

.story-section {
  position: relative;
  min-height: 102vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #151515;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.36) 55%, rgba(0,0,0,0.72));
}

.story-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: clamp(24px, 8vw, 130px);
  padding: 120px 24px;
}

.story-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 16px 0 26px;
}

.story-content p:not(.eyebrow) {
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 16px;
}

.section-light, .section-dark, .blog-section, .faq-section, .powered-section, .contact-section {
  padding: 104px 24px;
}

.section-light { background: var(--white); color: var(--ink); }
.section-dark { background: var(--charcoal); color: var(--white); }
.blog-section { background: #fffaf8; color: var(--ink); }
.faq-section { background: #fff; color: var(--ink); }
.powered-section { background: #111; color: var(--white); }
.contact-section { background: var(--cream); color: #4a1111; }

.section-inner { max-width: 1180px; margin: 0 auto; }
.section-heading {
  max-width: 920px;
  margin: 12px auto 18px;
  text-align: center;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}
.section-heading.left { text-align: left; margin-left: 0; }
.section-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--muted);
  line-height: 1.75;
}

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

.problem-card, .blog-lead > div, .sales-card {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.06);
}

.problem-card h3, .blog-lead strong {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 1rem;
}
.problem-card p, .blog-lead p, .copy-stack p, .blog-card p, .faq-answer {
  color: var(--muted);
  line-height: 1.72;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); }

.section-dark .copy-stack p { color: rgba(255,255,255,0.72); }
.check-list { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,196,0,0.14);
}

.ar-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.phone-shot, .qr-panel, .viewer-card {
  overflow: hidden;
  border-radius: 10px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.phone-shot img { width: 100%; height: 430px; object-fit: cover; object-position: center top; }
.phone-shot figcaption { padding: 15px 16px; color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.55; }
.qr-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: var(--white);
  color: var(--ink);
}
.qr-panel img { width: 145px; border: 1px solid var(--line); }
.qr-panel h3 { text-transform: uppercase; margin-bottom: 8px; }
.qr-panel p { color: var(--muted); line-height: 1.6; }

.viewer-section { background: #f8f8f4; }
.viewer-card { position: relative; background: var(--white); border-color: var(--line); }
model-viewer { width: 100%; height: 460px; display: block; background: #fff; --poster-color: #fff; }
.viewer-fallback {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 260px;
  padding: 24px;
  text-align: center;
  color: var(--ink);
  background: radial-gradient(circle at 50% 40%, #fff, #f0e6d6);
}
body.model-viewer-ready .viewer-fallback { display: none; }
.viewer-footer { padding: 18px 22px 22px; border-top: 1px solid var(--line); color: var(--ink); }
.viewer-footer h3 { margin-bottom: 5px; }
.viewer-footer p { color: var(--muted); }
.progress-bar {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 42%; height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.12);
  overflow: hidden;
}
.progress-bar.hide { display: none; }
.update-bar { width: 0; height: 100%; background: var(--yellow); transition: width 0.2s; }
.quote-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: 10px;
  background: #0d0d0d;
  color: #fff;
  border-left: 5px solid var(--yellow);
}
.quote-box span { display: block; color: rgba(255,255,255,0.68); margin-top: 8px; }

.blog-lead { margin: 42px 0 26px; }
.blog-lead > div { background: var(--ink); color: var(--white); border-color: transparent; }
.blog-lead p { color: rgba(255,255,255,0.72); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid #f0d4cf;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(76,20,16,0.08);
}
.blog-card.featured { grid-column: span 2; }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-body { padding: 24px; display: grid; gap: 12px; }
.blog-meta { color: var(--red); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.28rem; line-height: 1.15; }
.blog-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.blog-actions a, .blog-actions button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}
.blog-full { display: none; border-top: 1px solid var(--line); padding-top: 14px; }
.blog-card.open .blog-full { display: grid; gap: 10px; }

.faq-list { display: grid; gap: 12px; max-width: 980px; margin: 42px auto 0; }
.faq-item {
  border: 1px solid #f1d0cb;
  border-radius: 10px;
  background: #fffaf8;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #4a1111;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.faq-question span:first-child { color: var(--red); font-family: "Playfair Display", serif; font-size: 1.4rem; }
.faq-answer { display: none; padding: 0 22px 22px 70px; }
.faq-item.open .faq-answer { display: block; }

.powered-section .section-heading { max-width: 760px; }
.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.partner-logos img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info, .contact-form {
  background: rgba(255,255,255,0.72);
  border: 1px solid #ffd4d0;
  border-radius: 14px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 18px 44px rgba(120,20,20,0.10);
}
.contact-info .footer-brand { width: 210px; margin-bottom: 26px; background: #090909; border-radius: 16px; padding: 8px 14px; }
.contact-info h2, .contact-form h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #4a1111;
  line-height: 1;
  margin-bottom: 18px;
}
.contact-info p { color: #7a3330; line-height: 1.75; }
.direct-line {
  margin-top: 22px;
  display: grid;
  gap: 5px;
}
.direct-line span { color: var(--red); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.direct-line a { color: #4a1111; font-size: 1.22rem; font-weight: 900; }
.availability {
  margin-top: 26px;
  padding: 16px;
  border-radius: 10px;
  background: #eafff1;
  color: #10823c;
  font-weight: 800;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label { display: grid; gap: 8px; color: #4a1111; font-weight: 800; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #ffd0cc;
  border-radius: 12px;
  background: rgba(255,255,255,0.78);
  padding: 14px 16px;
  color: #4a1111;
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { width: fit-content; border: 0; cursor: pointer; background: var(--red); color: var(--white); }
.flyer-row { margin-top: 54px; display: grid; place-items: center; }
.flyer-row img {
  width: min(680px, 100%);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(80,0,0,0.2);
}

.site-footer {
  background: #690d0d;
  color: rgba(255,255,255,0.78);
  padding: 64px 24px 28px;
}
.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
}
.footer-brand { width: 210px; margin-bottom: 20px; }
.site-footer p { line-height: 1.75; }
.site-footer h3 { color: #fff; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.site-footer nav { display: grid; align-content: start; gap: 14px; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1220px;
  margin: 52px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
}

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .nav-cta { display: none; }
  .problem-grid, .blog-lead, .blog-grid, .split-grid, .split-grid.reverse, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .section-heading.left { text-align: center; }
  .copy-stack { text-align: center; }
  .check-list { text-align: left; }
}

@media (max-width: 680px) {
  #navbar { padding: 8px 10px 0; }
  .nav-inner { height: 58px; padding: 0 12px; }
  .nav-logo img { height: 34px; }
  .language-select { height: 34px; width: 62px; }
  .hero-content { width: calc(100vw - 34px); padding-top: 92px; }
  .hero-headline { font-size: clamp(2.35rem, 13vw, 4rem); }
  .hero-sub { max-width: 310px; font-size: 0.96rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: min(100%, 330px); }
  .story-content { margin-left: 0; padding: 100px 22px; text-align: center; }
  .section-light, .section-dark, .blog-section, .faq-section, .powered-section, .contact-section { padding: 76px 18px; }
  .ar-gallery { grid-template-columns: 1fr; }
  .qr-panel { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .phone-shot img { height: auto; }
  model-viewer { height: 360px; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .partner-logos img { height: 86px; }
  .contact-form { grid-template-columns: 1fr; }
  .faq-answer { padding-left: 22px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
