/* ==========================================================================
   Sense Simulators — clean rebuild of the Webflow export
   1. Design tokens   2. Base & reset   3. Utilities   4. Components
   5. Sections (top → bottom of homepage)   6. Media queries
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */

@font-face {
  font-family: 'Chaney Wide';
  src: url('../fonts/CHANEY-Wide.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Chaney Ultra Extended';
  src: url('../fonts/CHANEY-UltraExtended.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Colors */
  --color-background: #efefef;
  --color-font: #151515;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #9b8f7e;          /* warm taupe accent / strokes */
  --color-stroke-soft: #9b8f7e66;
  --color-body-muted: #6d6d6d;
  --color-heading-dark: #150438;
  --color-dark-surface: rgba(0, 0, 0, .9);
  --color-gray-500: #667085;

  /* Typography */
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --font-display: 'Chaney Wide', Arial, sans-serif;

  --text-regular: 1.1rem;
  --text-small: .875rem;
  --text-medium: 1.125rem;
  --text-large: 1.5rem;
  --heading-h2: 5rem;
  --heading-h3: 4.8rem;
  --heading-h4: 4rem;
  --heading-h5: 3.5rem;
  --heading-h6: 1.7rem;
  --display-size: 5rem;

  /* Spacing / misc */
  --radius-card: .5rem;
  --radius-pill: 1.375rem;
  --gap-button: 1rem;
  --section-padding-y: 7rem;
}

/* ---------- 2. Base & reset ---------- */

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

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-font);
  font-family: var(--font-body);
  font-size: var(--text-regular);
  line-height: 1.5;
}

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

h1, h2, h3, h4, p { margin: 0; overflow-wrap: break-word; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 3. Utilities ---------- */

.padding-global { padding-left: 2.5rem; padding-right: 2.5rem; }

.container       { width: 100%; max-width: 110rem; margin-inline: auto; }
.container-large { width: 100%; max-width: 80rem;  margin-inline: auto; }
.container-small { width: 100%; max-width: 64rem;  margin-inline: auto; }

.in-white { color: var(--color-white); }
.caps { text-transform: uppercase; }
.opacity-50 { opacity: .5; }
.text-size-small { font-size: var(--text-small); }
.text-weight-bold { font-weight: 700; }
.text-weight-medium { font-weight: 500; }
.text-shadow { text-shadow: 0 1px 7px rgba(0, 0, 0, .2); }

.max-width-80ch { max-width: 80ch; }
.max-width-55ch { max-width: 55ch; }

/* Big display type (Chaney) — used for hero line, video banner, step numbers */
.display-heading,
.display-number {
  font-family: var(--font-display);
  font-size: var(--display-size);
  line-height: 1.1;
}

.heading-2 { font-size: var(--heading-h2); line-height: .95; font-weight: 700; }
.heading-3 { font-size: var(--heading-h3); line-height: 1; font-weight: 400; }
.heading-4 { font-size: var(--heading-h4); line-height: 1.3; font-weight: 600; }
.heading-5 { font-size: var(--heading-h5); line-height: 1.15; font-weight: 400; }
.heading-6 { font-size: var(--heading-h6); line-height: 1.15; font-weight: 600; }

.centered { text-align: center; }

/* Scroll-reveal helper (js/main.js flips .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .animate-hero, .animate-hotspot { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- 4. Shared components ---------- */

.button-navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: .25rem;
  padding: 1rem 1.5rem;
  font-size: var(--text-small);
  transition: all .25s;
}

.button-navbar:hover { opacity: .8; }

.primary-button {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-white);
  border-bottom: 0 solid var(--color-black);
  border-radius: .25rem;
  padding: 1rem 1.5rem;
  transition: all .25s;
}

.primary-button:hover { border-bottom-width: 4px; }

.secondary-button {
  display: flex;
  align-items: center;
  gap: var(--gap-button);
}

.arrow-wrapper { display: flex; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  transition: gap .3s, opacity .3s;
}

.text-link:hover { gap: .8rem; opacity: .8; }

.text-link svg { width: 1.25rem; height: 1.25rem; flex: none; }

/* ---------- 5. Sections ---------- */

/* --- Navbar --- */

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
}

.navbar-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 2.2rem 1rem 2.25rem;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all .25s;
}

.brand { display: flex; align-items: center; max-width: 8rem; }

.logo-navbar { width: 8rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  display: block;
  padding: .5rem;
  font-size: var(--text-small);
  font-weight: 500;
  transition: all .25s;
}

.nav-link:hover { opacity: .6; transform: translateY(1px); }

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: .6rem;
  border-radius: 4px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--color-font);
  transition: transform .25s, opacity .25s;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Help popover --- */

.help-popover {
  position: fixed;
  z-index: 20;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 24rem;
  padding: 1.5rem;
  border-radius: .75rem;
  background-color: #fbfbfb;
  color: #101828;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.help-popover[hidden] { display: none; }

.help-popover-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--color-background);
}

.help-popover-text { display: flex; flex-direction: column; gap: .5rem; }

.help-popover-text p { max-width: 37ch; opacity: .8; }

.help-popover-title { font-size: 1.125rem; font-weight: 700; opacity: 1 !important; }

.help-popover-button {
  display: block;
  width: 100%;
  padding: .8rem 1rem;
  border-radius: .5rem;
  background-color: #101011;
  color: #fbfbfb;
  text-align: center;
  font-weight: 500;
  transition: all .25s;
}

.help-popover-button:hover { background-color: rgba(16, 16, 17, .8); transform: scale(.98); }

/* --- Hero --- */

.hero { padding-bottom: 100px; }

.hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 40rem;
  overflow: hidden;
}

.hero-background { position: absolute; inset: 0; z-index: 0; }

.hero-background img { width: 100%; height: 100%; object-fit: cover; }

.hero-heading {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  max-width: 63ch;
  margin: 0 0 3rem 3.5rem;
}

.hero-heading .display-heading { font-size: var(--display-size); }

.read-more-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  background-color: var(--color-background);
  color: var(--color-black);
}

.vertical-line-tag {
  width: 1px;
  height: 1rem;
  background-color: var(--color-black);
  opacity: .5;
}

.read-more-button {
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: gap .25s;
}

.read-more-tag:hover .read-more-button { gap: .8rem; }

.arrow { max-height: 70%; width: auto; }

/* Hotspot grid overlaying the hero image */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 16px;
  place-items: center;
  padding: 0 4.375rem;
}

.hotspot { position: relative; }

.hotspot-1 { grid-area: 2 / 4 / 3 / 5; }
.hotspot-2 { grid-area: 4 / 5 / 5 / 6; }
.hotspot-3 { grid-area: 2 / 5 / 4 / 7; }
.hotspot-4 { grid-area: 5 / 6 / 6 / 8; place-self: center end; }
.hotspot-5 { grid-area: 4 / 8 / 5 / 9; place-self: end center; }

.circle-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

.circle-hero {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-white);
  transition: transform .25s;
}

.hotspot:hover .circle-hero { transform: scale(1.25); }

/* Tooltip card revealed on hover */
.hero-hover {
  position: absolute;
  left: .5rem;
  top: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: .75rem 1rem;
  border-radius: 15px;
  background-color: var(--color-white);
  color: var(--color-font);
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transform: translateY(.5rem);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.hotspot:hover .hero-hover,
.hotspot:focus-visible .hero-hover {
  opacity: 1;
  transform: none;
}

.hover-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  font-size: var(--text-small);
}

.hover-content span:last-child { white-space: normal; max-width: 24ch; opacity: .7; }

.arrow-hero {
  display: flex;
  width: .9rem;
  height: .9rem;
  margin-top: .4rem;
  overflow: hidden;
}

.overlay-mobile { display: none; }

/* Entrance animations (mirror the Webflow page-load interactions) */
.animate-hero {
  opacity: 0;
  transform: translateY(10vh);
  animation: hero-rise .8s ease .2s forwards;
}

.hero-heading .heading-3 { opacity: 0; animation: hero-rise .8s ease .35s forwards; }

@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

.animate-hotspot {
  opacity: 0;
  transform: scale(3);
  animation: hotspot-in .6s ease .9s forwards;
}

@keyframes hotspot-in {
  to { opacity: 1; transform: scale(1); }
}

/* --- Intro --- */

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  padding: 0 60px;
}

.heading-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
  text-align: center;
}

.heading-component .max-width-80ch,
.heading-component .max-width-55ch { text-align: left; align-self: flex-start; }

/* --- Video banner --- */

.video-banner {
  position: relative;
  aspect-ratio: 2.39;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .28);
}

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

.video-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  text-align: center;
}

/* --- Bento grid --- */

.bento { padding-top: 100px; }

.bento-component {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.bento-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.card {
  position: relative;
  height: 50vh;
  border: 1px solid var(--color-stroke-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.card-small {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
}

.card-big {
  display: flex;
  align-items: flex-start;
  width: 65%;
  padding: 2.5rem;
}

.card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.card:hover .card-img { transform: scale(1.03); }

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, .55);
}

.card-big-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.card-big-content .heading-6 { max-width: 40ch; }

/* --- Why do I need one --- */

.benefits {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
}

.benefits-container {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
}

.benefits .heading-2 { margin-bottom: 16px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 64px;
  margin-top: 50px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card h3 { padding-top: 20px; font-size: 1.5rem; }

.benefit-card p { padding-top: 25px; margin-bottom: 20px; }

/* --- The Difference (dark) --- */

.difference { background-color: var(--color-dark-surface); }

.difference-inner { padding: var(--section-padding-y) 2rem; }

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.difference-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.difference-content {
  display: grid;
  gap: 2rem;
}

.difference-title,
.difference-item h3 {
  color: var(--color-background);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.difference-item { display: flex; }

.difference-item p {
  margin: .5rem 0 1rem;
  color: var(--color-background);
  font-size: 1rem;
}

.feature-icon {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: var(--color-background);
}

/* --- Audiences --- */

.audiences { padding: var(--section-padding-y) 2rem; }

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  align-items: start;
}

.audience-item h3 { font-size: 1.5rem; font-weight: 600; }

.audience-item p {
  margin: .5rem 0 1.5rem;
  color: var(--color-body-muted);
  font-size: 1rem;
}

.audience-item p a { text-decoration: underline; }

.audience-image-wrapper { margin-bottom: 2rem; }

.audience-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

/* --- Ordering steps --- */

.ordering {
  padding: 80px 15px;
  background-color: var(--color-white);
  color: var(--color-body-muted);
}

.ordering-container {
  display: flex;
  gap: 30px;
  max-width: 1290px;
  margin-inline: auto;
}

.ordering-left {
  flex: 1;
  max-width: 499px;
  padding-left: 20px;
}

.ordering-heading {
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-body-muted);
}

.ordering-heading-accent { color: var(--color-heading-dark); font-weight: 700; }

.ordering-steps { flex: 1.5; }

.ordering-step {
  display: flex;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: -1px;
}

.ordering-step.no-border { border-bottom: none; }

.step-number-block {
  position: relative;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 120px;
  overflow: hidden;
  box-shadow: inset -2px 0 #e1e1e1;
}

.step-number-block .display-number { font-size: 3rem; color: var(--color-font); }

.step-tick {
  position: absolute;
  right: -1px;
  width: 3px;
  height: 40%;
  background-image: linear-gradient(180deg, var(--color-font), var(--color-primary));
}

.step-info { flex: 1; padding: 1.7rem 8% 1.7rem 5%; }

.step-info h3 {
  color: var(--color-heading-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 31px;
}

/* --- FAQ --- */

.faq { padding-bottom: 6rem; }

.faq-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.25rem;
}

.faq-heading { max-width: 100ch; text-align: center; }

.faq-heading .heading-5 { margin-top: 5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

.faq-item {
  border-radius: .5rem;
  padding: 1.5rem;
  transition: background-color .45s;
}

.faq-item:hover,
.faq-item.is-open { background-color: var(--color-white); }

.faq-top {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

.faq-title {
  display: block;
  padding-right: 5rem;
  font-size: var(--text-medium);
  font-weight: 500;
}

.faq-action {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
}

.faq-action .arrow { transition: transform .3s; }

.faq-item.is-open .faq-action .arrow { transform: rotate(180deg); }

.faq-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin-right: 12rem;
  transition: grid-template-rows .35s ease;
}

.faq-item.is-open .faq-bottom { grid-template-rows: 1fr; }

.faq-bottom-content { min-height: 0; opacity: .8; }

.faq-bottom-content p { margin: 1.5rem 0 .5rem; }

/* --- Footer --- */

.site-footer {
  background-color: #101011;
  color: var(--color-white);
  font-size: 1rem;
}

.footer-padding { padding: 4rem 2rem; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-left { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }

.footer-logo { width: 12rem; }

.footer-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 30rem;
}

.footer-input {
  flex: 1;
  min-width: 0;
  padding: .75rem 1rem;
  border: 1px solid #d0d5dd;
  border-radius: .5rem;
  background: var(--color-white);
  color: #101828;
  font: inherit;
}

.footer-privacy-note { font-size: var(--text-small); color: #98a2b3; }

.footer-privacy-note a { text-decoration: underline; }

.footer-form-success, .footer-form-error { font-size: var(--text-small); }

.footer-menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-link-list { display: flex; flex-direction: column; gap: .9rem; }

.footer-link-list a { opacity: .85; transition: opacity .25s; }

.footer-link-list a:hover { opacity: 1; }

.footer-list-heading { font-weight: 600; color: #98a2b3; }

.footer-social-link { display: flex; align-items: center; gap: .75rem; }

.badge-new {
  display: inline-block;
  margin-left: .5rem;
  padding: .1rem .6rem;
  border-radius: 1rem;
  background-color: #ecfdf3;
  color: #027a48;
  font-size: .75rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: var(--color-gray-500);
  font-size: var(--text-small);
}

.footer-legal-list { display: flex; gap: 1.5rem; }

/* ---------- 5b. Product pages (simulators + pro/advanced/ultimate setup) ---------- */

/* Dark page hero (black background, dimmed image) */
.hero-wrapper.dark { background-color: #000; }

.hero-wrapper.dark .hero-background img { opacity: .75; }

.hero-wrapper.dark .hero-heading { max-width: 70ch; }

.hero-wrapper.dark .heading-3 { font-size: 2.4rem; line-height: 1.2; }

/* Alternating image/text split sections */
.split-section {
  background-color: var(--color-white);
  border-bottom: 1px solid #e4ebf3;
  margin: 5rem 60px;
  padding: 30px;
}

.split-section.plain {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}

.split-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.split-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.split-image img {
  width: auto;
  max-width: 100%;
  height: 30rem;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(150, 163, 181, .08);
}

.split-text { width: 100%; padding: 0 20px 0 40px; }

.split-heading { font-size: 38px; line-height: 44px; font-weight: 700; }

.split-text .lead {
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: var(--text-regular);
}

.price-note {
  padding-bottom: 24px;
  color: var(--color-body-muted);
  font-size: var(--text-small);
  font-weight: 600;
}

.button-dark {
  display: inline-block;
  background-color: #1a1b1f;
  color: var(--color-white);
  border-radius: .5rem;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition: background-color .2s;
}

.button-dark:hover { background-color: #32343a; }

/* Product overview: image grid + info column */
.product-overview {
  display: flex;
  gap: 1rem;
  margin: 4rem 0;
  padding-left: 60px;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 57%;
  align-content: start;
}

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-info { width: 43%; padding: 0 20px 0 40px; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pill {
  margin: 0 15px 15px 0;
  padding: 9px 15px;
  background-color: var(--color-white);
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  font-size: var(--text-small);
  font-weight: 700;
  transition: border-color .2s;
}

.pill:hover, .pill.is-active { border-color: var(--color-font); }

.stock-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.stock-dot { color: #17dd68; font-size: 1.4rem; }

.stock-text { margin-left: 10px; font-size: var(--text-small); font-weight: 600; }

/* Plus/minus spec accordion */
.acc-item {
  border: 1px solid rgba(1, 11, 21, .12);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px 20px 5px;
}

.acc-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding-bottom: 10px;
}

.acc-icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #101010;
  transition: transform .3s;
}

.acc-icon::after { transform: rotate(90deg); }

.acc-item.is-open .acc-icon::after { transform: rotate(0deg); }

.acc-title { font-size: var(--text-regular); font-weight: 700; }

.acc-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .35s ease;
}

.acc-item.is-open .acc-content { grid-template-rows: 1fr; }

.acc-content-inner { min-height: 0; overflow: hidden; }

.acc-content-inner p {
  margin: 0 0 20px;
  padding-left: 40px;
  font-size: var(--text-small);
}

/* Dark "Simulator Hardware" cards */
.hardware {
  background-color: var(--color-font);
  padding: 6.25rem 5%;
}

.hardware-container { max-width: 1300px; margin-inline: auto; }

.hardware-intro { margin-bottom: 40px; }

.hardware-kicker { padding-bottom: 10px; color: var(--color-white); font-weight: 500; }

.hardware-heading { color: var(--color-background); font-size: 37px; }

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.hardware-card {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  padding: 1.875rem;
  background-color: var(--color-black);
  border-radius: 10px;
}

.hardware-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  mix-blend-mode: screen;
}

.hardware-card h3 {
  position: relative;
  margin-top: 160px;
  color: var(--color-white);
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 400;
}

/* Display options cards */
.display-options {
  background-color: var(--color-white);
  padding: 80px 15px;
  color: var(--color-body-muted);
}

.display-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 90%;
  margin-inline: auto;
}

.option-card { border: 1px solid #d0d5dd; }

.option-card figure { margin: 0; border-radius: 10px; overflow: hidden; }

.option-card figure img { width: 100%; aspect-ratio: 390 / 436; object-fit: cover; }

.option-card-details { padding: 20px 10px 25px; text-align: center; }

.option-title {
  color: var(--color-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 31px;
  text-transform: capitalize;
}

.option-sub { color: var(--color-font); font-size: 13px; font-weight: 700; line-height: 18px; }

/* Gallery slider */
.gallery-section { padding: 7rem 2rem; }

.gallery-container { max-width: 80rem; margin-inline: auto; }

.gallery-kicker { font-weight: 600; }

.gallery-heading { font-size: 3rem; font-weight: 700; margin-bottom: 2rem; }

.gallery-slider { position: relative; }

.gallery-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1.5rem;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 calc(50% - 1rem);
  scroll-snap-align: start;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-arrows { display: flex; gap: 1rem; margin-top: 1.5rem; }

.gallery-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  transition: opacity .2s;
}

.gallery-arrow:hover { opacity: .6; }

.gallery-arrow svg { width: 1.5rem; height: 1.5rem; }

/* ---------- 5c. About + Recent Projects ---------- */

/* Page header (light intro block) */
.page-header { padding: 9rem 2rem 4rem; }

.page-header-inner { max-width: 80rem; margin-inline: auto; }

.page-header h1 { font-size: 3rem; font-weight: 700; line-height: 1.2; }

.page-header .lead { max-width: 75ch; margin: 1.5rem 0 2rem; font-size: 1rem; }

/* Portfolio masonry (3 columns of stacked photos) */
.portfolio {
  background-color: var(--color-white);
  padding: 40px 15px 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1290px;
  margin-inline: auto;
}

.portfolio-column { display: flex; flex-direction: column; gap: 30px; }

.portfolio-column img {
  width: 100%;
  border-radius: 6px;
  background-color: #131218;
}

/* About story */
.story { padding: 7rem 2rem; }

.story-inner { max-width: 80rem; margin-inline: auto; }

.story h2 { font-size: 38px; font-weight: 700; }

.story-byline { padding-top: 5px; font-size: var(--text-medium); font-weight: 700; color: #475467; }

.story-text { max-width: 90ch; padding-top: 20px; line-height: 1.5; }

/* About gallery: one tall image + two 16:9 */
.about-gallery { padding: 0 5% 7rem; }

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  max-width: 80rem;
  margin-inline: auto;
}

.about-gallery-grid a { display: block; overflow: hidden; border-radius: 6px; }

.about-gallery-grid a.tall { grid-row: span 2; }

.about-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.about-gallery-grid a:hover img { transform: scale(1.03); }

.about-gallery-grid a.wide { aspect-ratio: 16 / 9; }

/* Designed / Developed / Hand-Built tabs */
.tabs-section { padding: 0 5% 5rem; }

.tabs-component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: center;
  max-width: 80rem;
  margin-inline: auto;
}

.tabs-panes { aspect-ratio: 1; }

.tab-pane { display: none; width: 100%; height: 100%; }

.tab-pane.is-active { display: block; }

.tab-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.tabs-menu { display: grid; gap: 2.5rem; }

.tab-link {
  display: block;
  width: 100%;
  padding: 0 0 0 2rem;
  border-left: 2px solid transparent;
  text-align: left;
  transition: border-color .3s;
}

.tab-link.is-active { border-left-color: var(--color-black); }

.tab-link h3 { margin-bottom: .75rem; font-size: 2rem; font-weight: 700; line-height: 1.3; }

.tab-link p { font-size: 1rem; }

/* Placeholder pages (content missing from the Webflow export) */
.placeholder-section { padding: 6rem 2rem; text-align: center; }

.placeholder-section .lead { max-width: 60ch; margin: 1rem auto 2.5rem; }

/* ---------- 5d. Contact / FAQ / Rentals / legal pages ---------- */

/* Contact channel cards */
.contact-channels { padding: 80px 30px; border-bottom: 1px solid #e4ebf3; }

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 940px;
  margin-inline: auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid #e4ebf3;
  border-radius: .5rem;
  padding: 2rem;
}

.contact-card h2 { font-size: 1.35rem; font-weight: 700; }

.contact-card p { padding-top: 12px; margin-bottom: 24px; color: var(--color-body-muted); }

.contact-card .button-dark { margin-top: auto; align-self: flex-start; }

/* Contact form */
.contact-form-section { padding: 80px 30px; }

.contact-form-inner { max-width: 640px; margin-inline: auto; }

.contact-form-inner .heading-6 { margin-bottom: 8px; }

.contact-details { margin: 20px 0 35px; line-height: 1.8; color: var(--color-body-muted); }

.contact-details a { color: var(--color-font); font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.text-field-contact {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid #d0d5dd;
  border-radius: .5rem;
  background: var(--color-white);
  color: #101828;
  font: inherit;
}

textarea.text-field-contact { min-height: 160px; resize: vertical; }

.contact-form .button-dark { align-self: flex-start; border: none; cursor: pointer; }

.form-success, .form-error { margin-top: 14px; font-weight: 500; }

.form-error { color: #b42318; }

/* FAQ page */
.faq-page .faq { padding-bottom: 40px; }

.faq-cta { padding: 40px 30px 100px; text-align: center; }

.faq-cta p { max-width: 60ch; margin: .5rem auto 1.8rem; color: var(--color-body-muted); }

/* Rentals */
.rental-intro { padding: 80px 30px 20px; }

.rental-intro-inner { max-width: 940px; margin-inline: auto; }

.rental-intro-inner .lead { max-width: 75ch; margin-top: 1.2rem; line-height: 1.6; }

/* Legal / privacy */
.legal-content { padding: 20px 30px 100px; }

.legal-inner { max-width: 75ch; margin-inline: auto; line-height: 1.65; }

.legal-inner h2 { font-size: 1.5rem; font-weight: 700; padding: 2.2rem 0 .6rem; }

.legal-inner p { padding-bottom: .8rem; color: #333; }

.legal-inner ul { padding: 0 0 .8rem 1.4rem; color: #333; }

.legal-inner li { padding-bottom: .35rem; }

.legal-meta { color: var(--color-body-muted); }

/* 404 */
.not-found { padding: 10rem 2rem; text-align: center; }

.not-found .display-heading { font-size: clamp(4rem, 12vw, 9rem); }

.not-found p { max-width: 50ch; margin: 1.5rem auto 2.5rem; color: var(--color-body-muted); }

@media screen and (max-width: 991px) {
  .contact-channels-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---------- 6. Media queries ---------- */

/* Large desktop — matches Webflow's 1440px breakpoint */
@media screen and (min-width: 1440px) {
  .hero .hero-wrapper { height: 62rem; }

  .split-heading { font-size: 53px; line-height: 61px; }

  .hero-wrapper.dark .hero-background img { opacity: .7; }

  .hotspot-1 { grid-area: 2 / 4 / 3 / 6; place-self: center; }
  .hotspot-3 { grid-area: 2 / 6 / 4 / 9; place-self: center; }
  .hotspot-5 { grid-area: 3 / 8 / 5 / 9; place-self: end center; }
}

/* Tablet — matches Webflow's 991px "medium" breakpoint */
@media screen and (max-width: 991px) {
  .heading-2 { font-size: 3.5rem; }
  .heading-3 { font-size: 3rem; }
  .heading-4 { font-size: 2.7rem; }
  .display-heading { font-size: 3rem; }

  /* Collapse the nav into a hamburger menu */
  .menu-button { display: flex; }

  .navbar-pill { padding: .5rem 1rem; position: relative; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 90vw;
    margin-top: 1rem;
    padding: 2rem;
    border-radius: var(--radius-pill);
    background-color: rgba(255, 255, 255, .96);
  }

  .nav-menu.is-open { display: flex; }

  .hero-heading { max-width: 50ch; }

  .card-small, .card-big { width: 100%; }
  .bento-row { flex-direction: column; }
  .bento-row .card-small { order: 1; }

  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }

  .difference-grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .ordering-container { display: block; }
  .ordering-heading { position: static; }
  .ordering-left { max-width: none; padding-left: 0; margin-bottom: 2rem; }

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

  .hero-wrapper.dark .heading-3 { font-size: 1.9rem; }

  .split-section { margin: 3rem 20px; }
  .split-inner { flex-direction: column; gap: 2rem; }
  .split-inner.media-right .split-image { order: -1; }
  .split-image img { width: 100%; height: auto; max-height: 30rem; }
  .split-text { padding: 0; }
  .split-heading { font-size: 32px; line-height: 38px; }

  .product-overview { flex-direction: column; padding: 0 20px; }
  .product-gallery-grid, .product-info { width: 100%; }
  .product-info { padding: 2rem 0 0; }

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

  .display-options-grid { grid-template-columns: 1fr 1fr; max-width: none; }

  .gallery-slide { flex-basis: 75%; }

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

  .tabs-component { grid-template-columns: 1fr; }
  .tabs-panes { aspect-ratio: 4 / 3; }
}

/* Mobile landscape — Webflow's 767px breakpoint */
@media screen and (max-width: 767px) {
  .padding-global { padding-left: 1.25rem; padding-right: 1.25rem; }

  .heading-2 { font-size: 3rem; }
  .heading-3 { font-size: 2.7rem; }
  .heading-4 { font-size: 2.5rem; }
  .heading-5 { font-size: 2.5rem; }
  .display-heading { font-size: 2.4rem; }

  /* Hotspots are hover-driven; hide them on touch layouts like the original */
  .hero-grid { display: none; }

  .overlay-mobile {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55));
  }

  .hero-heading { margin-left: 1.25rem; margin-right: 1.25rem; }

  .intro { padding: 0 24px; }

  .card-big { padding: 1.5rem; }

  .video-banner { aspect-ratio: 16 / 10; }

  .audiences { padding: 4rem 1.25rem; }
  .audiences-grid { grid-template-columns: 1fr; }

  .faq-bottom { margin-right: 0; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Mobile portrait — Webflow's 479px breakpoint */
@media screen and (max-width: 479px) {
  .heading-2 { font-size: 2.4rem; }
  .heading-3 { font-size: 2.1rem; }
  .heading-4 { font-size: 2rem; }
  .display-heading { font-size: 1.9rem; }

  .hero-wrapper { height: 34rem; }

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

  .step-number-block { min-width: 84px; }
  .step-number-block .display-number { font-size: 2rem; }

  .help-popover { left: 1rem; right: 1rem; max-width: none; }

  .footer-form { flex-direction: column; }
  .footer-menus { grid-template-columns: 1fr; }

  .hero-wrapper.dark .heading-3 { font-size: 1.5rem; }

  .split-heading { font-size: 25px; line-height: 30px; }
  .price-note { padding-top: 15px; padding-bottom: 15px; }

  .product-gallery-grid { grid-template-columns: 1fr; }

  .hardware { padding: 4rem 5%; }
  .hardware-heading { font-size: 28px; }

  .display-options-grid { grid-template-columns: 1fr; }

  .gallery-section { padding: 4rem 1.25rem; }
  .gallery-heading { font-size: 2.2rem; }
  .gallery-slide { flex-basis: 100%; }

  .page-header { padding: 8rem 1.25rem 3rem; }
  .page-header h1 { font-size: 2.2rem; }

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

  .story { padding: 4rem 1.25rem; }
  .story h2 { font-size: 28px; }

  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-grid a.tall { grid-row: auto; aspect-ratio: 4 / 3; }
}
