/* ============================================
   Showroom Engine — Base styles
   ============================================ */

:root {
  --navy: #101d32;
  --navy-2: #16273f;
  --navy-3: #1c3050;
  --teal: #01b6cb;
  --teal-light: #4fd8e8;
  --teal-text: #017f8e;
  --white: #ffffff;
  --grey-light: #f4f6f9;
  --grey-mid: #6b7688;
  --grey-border: #e3e7ee;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container-width: 1160px;
  --radius: 14px;
  --shadow-soft: 0 12px 32px rgba(16, 29, 50, 0.08);
  --shadow-card: 0 1px 2px rgba(16, 29, 50, 0.04), 0 8px 24px rgba(16, 29, 50, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(1, 182, 203, 0.28);
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-large {
  padding: 17px 34px;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .btn-row {
    flex-direction: column;
  }

  .btn-row .btn {
    width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--grey-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark-desktop {
  display: none;
}

.brand-mark-mobile {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--grey-border);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.25;
}

.brand-product {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline {
  display: none;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-text);
  white-space: nowrap;
}

@media (min-width: 480px) {
  .brand-tagline {
    display: block;
  }
}

@media (min-width: 640px) {
  .brand-mark-mobile {
    display: none;
  }

  .brand-mark-desktop {
    display: block;
    height: 32px;
    width: auto;
  }

  .brand-product {
    font-size: 1.08rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px 24px;
  display: none;
  flex-direction: column;
  gap: 18px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

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

.primary-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.primary-nav a:not(.btn) {
  display: block;
  padding: 10px 4px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-border);
}

.primary-nav li:last-child a:not(.btn) {
  border-bottom: none;
}

.nav-cta {
  width: 100%;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    max-height: none;
    overflow: visible;
  }

  .primary-nav ul {
    flex-direction: row;
    gap: 24px;
  }

  .primary-nav a:not(.btn) {
    padding: 4px 0;
    border-bottom: none;
    font-size: 0.92rem;
    position: relative;
    white-space: nowrap;
  }

  .primary-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.15s ease;
  }

  .primary-nav a:not(.btn):hover::after {
    transform: scaleX(1);
  }

  .nav-cta {
    width: auto;
  }
}

/* ============================================
   Section base
   ============================================ */

.section {
  padding: 56px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

section[id] {
  scroll-margin-top: 84px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-lead {
  color: var(--grey-mid);
  font-size: 1.05rem;
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-dark {
  color: var(--teal-text);
}

.eyebrow-light {
  color: var(--teal-light);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

@media (min-width: 900px) {
  .section {
    padding: 84px 0;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  background: radial-gradient(120% 140% at 15% 0%, var(--navy-3) 0%, var(--navy) 55%, #0c1728 100%);
  color: var(--white);
  padding: 64px 0 52px;
  text-align: left;
}

.hero-grid {
  display: block;
}

.hero-inner {
  max-width: 700px;
}

.hero-visual {
  display: none;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  margin-bottom: 0.45em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
}

.trust-line {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

@media (min-width: 900px) {
  .hero {
    padding: 92px 0 76px;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 32px;
  }

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

/* ============================================
   Hero visual panel (decorative, desktop only)
   ============================================ */

.hero-panel {
  width: 100%;
  max-width: 330px;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-dots {
  display: flex;
  gap: 5px;
}

.hero-panel-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.hero-panel-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.hero-panel-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero-row-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(1, 182, 203, 0.14);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-row-icon svg {
  width: 16px;
  height: 16px;
}

.hero-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-row-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}

.hero-row-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-panel-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(1, 182, 203, 0.16);
  color: var(--teal-light);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}

.hero-panel-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: hero-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================
   System flow — What Showroom Engine does
   ============================================ */

.system-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 8px auto 28px;
}

@media (min-width: 900px) {
  .system-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
}

.system-step {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

@media (min-width: 900px) {
  .system-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
    padding: 0 8px;
  }

  .system-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 17px;
    left: calc(50% + 25px);
    width: calc(100% - 20px);
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
  }
}

.system-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.system-step-label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.system-flow-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}

/* ============================================
   Buyer journey — How showrooms actually sell
   ============================================ */

.journey {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.journey::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--grey-border);
}

.journey-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
}

.journey-step:last-child {
  padding-bottom: 0;
}

.journey-dot {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 4px solid var(--grey-light);
}

.journey-label {
  margin: 0;
  padding-top: 3px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   Spec sheet — What's included
   ============================================ */

.spec-sheet {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
}

.spec-sheet-title {
  text-align: center;
  color: var(--teal-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}

/* ============================================
   Problem section
   ============================================ */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy);
}

.problem-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(107, 118, 136, 0.12);
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   Cards — What Showroom Engine Does
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(1, 182, 203, 0.1);
  color: var(--teal-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--grey-mid);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.feature-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card-dark:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-card-dark .feature-icon {
  background: rgba(1, 182, 203, 0.16);
  color: var(--teal-light);
}

.feature-card-dark h3 {
  color: var(--white);
}

.feature-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   Who it's for — tag grid
   ============================================ */

.tag-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .tag-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
}

.tag-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(1, 182, 203, 0.1);
  color: var(--teal-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-icon svg {
  width: 15px;
  height: 15px;
}

/* ============================================
   Check list — What's included
   ============================================ */

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.check-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 8px auto 0;
}

@media (min-width: 640px) {
  .check-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(1, 182, 203, 0.16);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-icon svg {
  width: 13px;
  height: 13px;
}

/* ============================================
   Founding Offer
   ============================================ */

#founding-offer,
#how-showrooms-sell {
  background: var(--grey-light);
}

.offer-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 44px 32px;
  box-shadow: var(--shadow-soft);
}

.offer-card .btn {
  margin-top: 8px;
}

/* ============================================
   Why Nuvexo
   ============================================ */

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.reason {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-border);
}

.reason:last-child {
  border-bottom: none;
}

.reason-index {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--teal-text);
  min-width: 32px;
}

.reason p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

@media (min-width: 700px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Contact
   ============================================ */

#contact {
  padding-bottom: 48px;
}

.contact-inner {
  text-align: center;
  max-width: 620px;
}

.contact-email {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-email a {
  color: var(--teal-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(79, 216, 232, 0.4);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  padding: 36px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

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

.footer-icon {
  height: 28px;
  width: auto;
}

.footer-wordmark {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--teal-light);
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 320px;
  margin: 0;
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover {
  color: var(--teal-light);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

@media (min-width: 800px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .footer-col {
    align-items: flex-start;
  }

  .footer-legal-col {
    align-items: flex-end;
    text-align: right;
  }

  .footer-nav {
    padding-top: 6px;
  }
}
