/* ==========================================================================
   On Me Group — Main styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --color-primary: #b43b30;
  --color-primary-hover: #9a3329;
  --color-secondary-light: #bee0ed;
  --color-secondary-mid: #1f9cd8;
  --color-secondary-warm: #f1672a;

  /* Neutrals */
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-bg: #ffffff;
  --color-bg-subtle: #f8f8f8;
  --color-border: #e5e5e5;

  /* Typography — Poppins only (Thin 100, Regular 400, Bold 700) */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-thin: 100;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --line-tight: 1.25;
  --line-normal: 1.5;
  --line-relaxed: 1.65;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 72rem;
  --header-height: 4.5rem;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 0.6s;
  --duration-mid: 0.4s;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Skip link — visible on focus for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 1000;
  padding: var(--space-3) var(--space-4);
  background: var(--color-primary);
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-sm);
  border-radius: 6px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: var(--space-4);
  outline: 3px solid var(--color-secondary-mid);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: var(--line-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-primary-hover);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-secondary-mid);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  font-family: var(--font);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-tight);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

p {
  margin: 0 0 var(--space-4);
  color: var(--color-text);
}
p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: var(--color-text-muted);
}

.font-thin {
  font-weight: var(--font-weight-thin);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.site-logo a {
  color: var(--color-text);
}
.site-logo a:hover {
  color: var(--color-primary);
}
.site-logo img {
  height: 32px;
  width: auto;
}

.nav-main {
  display: none;
}
@media (min-width: 768px) {
  .nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
}
.nav-main a {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  position: relative;
  transition: color 0.2s ease;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s var(--ease-out-expo);
}
.nav-main a:hover {
  color: var(--color-primary);
}
.nav-main a:hover::after {
  width: 100%;
}

/* Header CTA — desktop only; mobile uses drawer “Book a demo” */
.header-cta {
  display: none;
}
@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}
.header-cta .btn {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  min-height: 44px;
}

/* Mobile menu button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--color-secondary-mid);
  outline-offset: 2px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}
.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: var(--space-8);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 99;
}
.nav-mobile.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile li {
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile a,
.nav-mobile .btn {
  display: block;
  padding: var(--space-4);
  color: var(--color-text);
  font-weight: var(--font-weight-regular);
}
.nav-mobile a:hover {
  color: var(--color-primary);
}
/* Drawer CTA: .nav-mobile .btn beats .btn-primary on specificity without this */
.nav-mobile a.btn-primary {
  color: #fff;
  font-weight: var(--font-weight-bold);
  padding: var(--space-3) var(--space-6);
}
.nav-mobile a.btn-primary:hover {
  color: var(--color-secondary-light);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.btn:focus-visible {
  outline: 2px solid var(--color-secondary-mid);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180, 59, 48, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-bg-subtle);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-border);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Footer (red band, two-row layout)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-12) var(--space-4) var(--space-10);
}

.footer-top {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.footer-headline-text {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-tight);
  margin: 0;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-headline-text {
    font-size: var(--text-2xl);
  }
}

.footer-promo {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-shopify-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1a1a1a;
  padding: var(--space-3) var(--space-5);
  border-radius: 10px;
  text-decoration: none;
  align-self: flex-start;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s ease;
}
.footer-shopify-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer-shopify-badge:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.footer-shopify-badge-label {
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.footer-shopify-badge-main {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
}
.footer-shopify-logo {
  width: 20px;
  height: 20px;
}

.footer-promo-text {
  font-size: var(--text-base);
  color: var(--color-secondary-light);
  margin: 0;
  line-height: var(--line-relaxed);
}
.footer-email {
  color: var(--color-secondary-light);
  font-size: var(--text-base);
  text-decoration: none;
}
.footer-email:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-email:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-8);
}
.footer-nav-links a {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
}
.footer-nav-links a:hover {
  text-decoration: underline;
}
.footer-nav-links a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s var(--ease-out-expo);
}
.footer-social-icons a:hover {
  opacity: 0.9;
  transform: scale(1.08);
}
.footer-social-icons a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.footer-social-icons svg {
  display: block;
}

/* --------------------------------------------------------------------------
   Scroll-triggered animations
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .animate-on-scroll.animate-delay-1,
  .animate-on-scroll.animate-delay-2,
  .animate-on-scroll.animate-delay-3,
  .animate-on-scroll.animate-delay-4 {
    transition-delay: 0s;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--color-bg) 0%, rgba(190, 224, 237, 0.12) 50%, rgba(245, 245, 245, 0.5) 100%);
}
@media (min-width: 768px) {
  .hero {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

.hero-content {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero h1 {
  font-weight: var(--font-weight-thin);
  font-size: var(--text-4xl);
  line-height: var(--line-tight);
  margin-top: var(--space-8);
  margin-bottom: var(--space-10);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
/* Stacked hero heading with extra spacing between lines */
.hero-heading-stacked span {
  display: block;
  margin-bottom: var(--space-2);
}
.hero-heading-stacked span:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.25rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}
.hero .lead {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  max-width: 42ch;
  margin-top: var(--space-20);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
  line-height: var(--line-relaxed);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Mobile home hero: hide side images (only .hero on index.html uses these) */
@media (max-width: 767px) {
  .hero .hero-content > .hero-image-wrap {
    display: none;
  }
  .hero .lead {
    margin-top: var(--space-6);
  }
}

/* Hero images: desktop = absolute sides */
.hero-image-wrap {
  z-index: 2;
  pointer-events: none;
}
.hero-image-wrap--left {
  left: 0;
}
.hero-image-wrap--right {
  right: 0;
}
@media (min-width: 768px) {
  .hero-image-wrap {
    position: absolute;
    bottom: 10%;
    width: 100%;
    max-width: 14rem;
    will-change: transform;
    transform: translateY(0);
  }
  .hero-image-wrap--left {
    right: auto;
  }
  .hero-image-wrap--right {
    left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap {
    will-change: auto;
  }
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Cards / feature blocks
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-6);
  background: var(--color-bg-subtle);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: transform var(--duration-mid) var(--ease-out-expo),
    box-shadow var(--duration-mid) ease,
    border-color var(--duration-mid) ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-secondary-light);
}
.feature-card:nth-child(1):hover { border-color: var(--color-secondary-mid); }
.feature-card:nth-child(2):hover { border-color: var(--color-primary); }
.feature-card:nth-child(3):hover { border-color: var(--color-secondary-warm); }
.feature-card h3 {
  font-family: var(--font);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
  transition: color var(--duration-mid) ease;
}
.feature-card:hover h3 {
  color: var(--color-primary);
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.feature-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: var(--space-4);
  border-radius: 8px;
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item details {
  padding: 0;
}
.faq-item summary {
  padding: var(--space-4) 0;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.faq-item details[open] summary::after {
  content: "−";
}
.faq-item details p {
  padding-bottom: var(--space-4);
  margin: 0;
  padding-left: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.faq-section {
  padding-bottom: var(--space-16);
}
.faq-section-more {
  margin-top: var(--space-8);
  margin-bottom: 0;
  font-size: var(--text-sm);
}
.faq-section-more a {
  color: var(--color-primary);
  font-weight: var(--font-weight-regular);
}
.faq-section-more a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary-mid);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group .required::after {
  content: " *";
  color: var(--color-primary);
}

.form-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

/* --------------------------------------------------------------------------
   Contact page — value band (above Book a demo)
   -------------------------------------------------------------------------- */
.contact-value-band {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-12) var(--space-4);
}
@media (min-width: 768px) {
  .contact-value-band {
    padding: var(--space-16) var(--space-4);
  }
}
.contact-value-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-value-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: var(--space-10) var(--space-16);
  }
}
.contact-value-lead {
  margin: 0;
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-relaxed);
  color: var(--color-secondary-light);
  text-align: left;
}
.contact-value-headline {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--font-weight-thin);
  line-height: var(--line-tight);
  color: #fff;
  text-align: left;
}
.contact-value-cta {
  margin-top: var(--space-12);
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.contact-value-cta p {
  margin: 0 0 var(--space-4);
  color: #fff;
  font-size: var(--text-base);
}
.contact-value-cta .btn-primary {
  background: #fff;
  color: var(--color-primary);
}
.contact-value-cta .btn-primary:hover {
  background: var(--color-secondary-light);
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Setup page showcase (order-editing style)
   -------------------------------------------------------------------------- */
.setup-showcase {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
}
.setup-showcase-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-thin);
  line-height: 1.1;
  margin: 0 0 var(--space-4);
}
.setup-showcase-subtitle {
  max-width: 42rem;
  margin: 0 auto var(--space-12);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
}
.setup-steps-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .setup-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}
.setup-step-card {
  background: linear-gradient(165deg, #1f1f1f 0%, #111111 100%);
  color: #fff;
  border-radius: 14px;
  padding: var(--space-8) var(--space-6);
  text-align: left;
  min-height: 280px;
  border: 1px solid rgba(190, 224, 237, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}
@media (min-width: 768px) {
  .setup-step-card--one {
    transform: rotate(-4deg);
  }
  .setup-step-card--three {
    transform: rotate(4deg);
  }
}
.setup-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-6);
  color: #fff;
}
.setup-step-number--one { background: var(--color-secondary-mid); }
.setup-step-number--two { background: var(--color-primary); }
.setup-step-number--three { background: var(--color-secondary-warm); }
.setup-step-card h3 {
  margin: 0 0 var(--space-3);
  font-size: var(--text-3xl);
  line-height: 1.15;
  color: #fff;
}
.setup-step-card p {
  margin: 0 0 var(--space-6);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-sm);
  line-height: var(--line-relaxed);
}
.setup-step-card a {
  color: var(--color-secondary-light);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
}
.setup-step-card a:hover {
  color: #fff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Calendly embed
   -------------------------------------------------------------------------- */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* --------------------------------------------------------------------------
   Page-specific
   -------------------------------------------------------------------------- */
.page-header {
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
  text-align: center;
  background: linear-gradient(165deg, var(--color-bg-subtle) 0%, rgba(190, 224, 237, 0.12) 100%);
}
.page-header--plain {
  background: var(--color-bg);
}
.page-header h1 {
  margin-bottom: var(--space-2);
}
.page-header .lead {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  max-width: 40ch;
  margin: 0 auto;
  line-height: var(--line-relaxed);
}

/* Legal / policy pages */
.legal-page {
  padding-top: var(--space-8);
}
.legal-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.legal-content p,
.legal-content li {
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
  color: var(--color-text);
}
.legal-content p {
  margin: 0 0 var(--space-5);
}
.legal-content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-regular);
  line-height: 1.25;
  margin: var(--space-10) 0 var(--space-4);
}
.legal-content ul {
  margin: 0 0 var(--space-6);
  padding-left: 1.25rem;
}
.legal-content li + li {
  margin-top: var(--space-2);
}

/* Product tour layout */
.page-header--product-tour {
  background: var(--color-bg);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.product-tour-hero {
  display: grid;
  gap: var(--space-10);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .product-tour-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: var(--space-16);
  }
}
.product-tour-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-thin);
  line-height: 1.1;
  text-align: left;
  margin: 0 0 var(--space-4);
}
.product-tour-subtitle {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0 0 var(--space-6);
}
.product-tour-body {
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  max-width: 34rem;
}
.product-tour-body--secondary {
  color: var(--color-text);
}
.product-tour-screens {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .product-tour-screens {
    gap: var(--space-6);
  }
}
.product-tour-shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

/* About page — letter from founder */
.about-letter .container {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.about-letter-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-thin);
  line-height: 1.1;
  text-align: center;
  margin: 0 0 var(--space-8);
  color: var(--color-text);
}
.about-letter-body {
  margin-bottom: var(--space-12);
  text-align: center;
}
.about-letter-body p {
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
  color: var(--color-text);
  margin: 0 0 var(--space-6);
}
.about-letter-body p:last-of-type {
  margin-bottom: 0;
}
.about-letter-signature {
  margin-top: var(--space-10) !important;
  margin-bottom: 0 !important;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  color: var(--color-text);
  text-align: center;
}

/* About page — Our Team section */
.team-section {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-16) var(--space-4);
}
.team-section .container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}
.team-kicker {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-2);
  text-align: center;
}
.team-headline {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 var(--space-4);
  color: #fff;
}
@media (min-width: 768px) {
  .team-headline {
    font-size: var(--text-3xl);
  }
}
.team-intro {
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-12);
}
.team-nav {
  position: absolute;
  top: 0;
  right: var(--space-4);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: var(--space-2);
}
@media (max-width: 767px) {
  .team-nav {
    position: static;
    justify-content: center;
    margin-bottom: var(--space-8);
  }
}
.team-nav-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-lg);
  line-height: 1;
}
.team-nav-btn:hover {
  color: var(--color-secondary-light);
}
.team-nav-divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.4);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 22rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    max-width: 40rem;
  }
}
.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.team-card-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: block;
  object-fit: cover;
}
.team-section .img-placeholder--team {
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
}
.team-section .img-placeholder--team span {
  padding: var(--space-4);
}
.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6) var(--space-5);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}
.team-card-name {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin: 0 0 var(--space-1);
}
.team-card-role {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  opacity: 0.85;
}
.logo-grid img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
}
.logo-grid img.logo-grid-logo--color {
  filter: none;
}

/* --------------------------------------------------------------------------
   Image placeholders (replace with real images)
   -------------------------------------------------------------------------- */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-subtle);
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
  overflow: hidden;
}
.img-placeholder span {
  padding: var(--space-4);
  max-width: 100%;
}
/* Hero / full-width: try-on screenshot or lifestyle */
.img-placeholder--hero {
  aspect-ratio: 16 / 9;
  max-width: 56rem;
  margin: var(--space-10) auto 0;
}
@media (min-width: 768px) {
  .img-placeholder--hero {
    aspect-ratio: 2 / 1;
    margin-top: var(--space-12);
  }
}
/* Card / feature: small icon or illustration */
.img-placeholder--card {
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-4);
}
/* Screenshot: product UI or app */
.img-placeholder--screenshot {
  aspect-ratio: 16 / 10;
  max-width: 42rem;
  margin: var(--space-6) auto;
}
/* Logo slot (trusted-by, press, customers) */
.img-placeholder--logo {
  width: 120px;
  height: 56px;
  flex-shrink: 0;
}
.img-placeholder--logo span {
  font-size: var(--text-xs);
  padding: var(--space-2);
}
.logo-grid-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 56px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}
/* About / team or office */
.img-placeholder--about {
  aspect-ratio: 3 / 2;
  max-width: 28rem;
  margin: var(--space-8) auto;
}
/* Press logo */
.img-placeholder--press {
  width: 140px;
  height: 64px;
  flex-shrink: 0;
}

/* Section colour variants (alternating / accent backgrounds) */
.section--blue {
  background: linear-gradient(180deg, rgba(190, 224, 237, 0.25) 0%, var(--color-bg) 100%);
}
.section--warm {
  background: linear-gradient(180deg, rgba(241, 103, 42, 0.06) 0%, var(--color-bg) 100%);
}
.section--primary-tint {
  background: linear-gradient(180deg, rgba(180, 59, 48, 0.05) 0%, var(--color-bg-subtle) 100%);
}

/* Benefits section (red band, two columns + accordion) */
.benefits-section {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-16) var(--space-4);
}
.benefits-section-inner {
  display: grid;
  gap: var(--space-12);
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-section-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.benefits-kicker {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 3px solid var(--color-secondary-mid);
  display: inline-block;
}
.benefits-headline {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-tight);
  margin: 0 0 var(--space-6);
  color: #fff;
}
@media (min-width: 768px) {
  .benefits-headline {
    font-size: var(--text-3xl);
  }
}
.benefits-lead {
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.benefits-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.benefits-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.benefits-accordion-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.benefits-accordion-item details {
  padding: 0;
}
.benefits-accordion-item summary {
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.benefits-accordion-item summary::-webkit-details-marker {
  display: none;
}
.benefits-accordion-item summary::after {
  content: "+";
  font-size: var(--text-base);
  font-weight: var(--font-weight-regular);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.benefits-accordion-item details[open] summary::after {
  content: "−";
}
.benefits-accordion-item details p {
  margin: 0 0 var(--space-5);
  padding: 0 0 var(--space-5);
  padding-left: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-base);
  line-height: var(--line-relaxed);
}
.benefits-accordion-item details[open] {
  border-left: 3px solid var(--color-secondary-mid);
  padding-left: var(--space-4);
  margin-left: 0;
}
@media (min-width: 768px) {
  .benefits-accordion-item details[open] {
    margin-left: calc(-1 * var(--space-4));
    padding-left: var(--space-4);
  }
}
.benefits-accordion-item summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.cta-block {
  text-align: center;
  padding: var(--space-12) var(--space-4);
  background: linear-gradient(165deg, rgba(31, 156, 216, 0.08) 0%, var(--color-bg) 50%, rgba(241, 103, 42, 0.06) 100%);
  border-radius: 0;
}
.cta-block h2 {
  margin-bottom: var(--space-4);
}
.cta-block p {
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Press gallery
   -------------------------------------------------------------------------- */
.press-layout {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 768px) {
  .press-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: var(--space-16);
    align-items: stretch;
    min-height: calc(100vh - var(--header-height) - var(--space-16));
  }
}
.press-layout-left-inner {
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
  align-self: start;
}
.press-layout-right {
  min-height: 0;
}
@media (min-width: 768px) {
  .press-layout-right {
    max-height: calc(100vh - var(--header-height) - var(--space-16));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 0;
    scrollbar-width: none; /* Firefox */
  }
  /* Hide scrollbar (best-effort) */
  .press-layout-right::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

.press-gallery {
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  gap: var(--space-6);
}
.press-gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  background: var(--color-bg);
}
/* --------------------------------------------------------------------------
   Utility classes (replace inline styles)
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-section { margin-bottom: var(--space-8); }
@media (min-width: 768px) {
  .mb-section { margin-bottom: var(--space-10); }
}

/* Trusted by / social proof block */
.trusted-by {
  padding: var(--space-10) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.trusted-by p {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trusted-by .logo-grid {
  justify-content: center;
  gap: var(--space-12);
}
.trusted-by .logo-grid span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Social updates section (red band above footer) */
.social-updates-section {
  background: var(--color-primary);
  padding: var(--space-12) var(--space-4);
  color: #fff;
}
.social-updates-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.social-updates-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  margin: 0;
  color: #fff;
}
@media (min-width: 768px) {
  .social-updates-title {
    font-size: var(--text-4xl);
  }
}
.social-updates-handle {
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-regular);
}
.social-updates-handle a {
  color: #fff;
  text-decoration: none;
}
.social-updates-handle a:hover {
  text-decoration: underline;
}
.social-updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .social-updates-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
}
.social-updates-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration-mid) var(--ease-out-expo);
}
.social-updates-card:hover {
  transform: translateY(-4px);
}
.social-updates-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.social-updates-card-media {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 12px;
  display: block;
  overflow: hidden;
}
.social-updates-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.social-updates-card-media--portrait {
  aspect-ratio: 3 / 4;
}
.social-updates-section .img-placeholder--social-card {
  background: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xs);
}
.social-updates-section .img-placeholder--social-card span {
  padding: var(--space-3);
}
.social-updates-card-icon {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-primary);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.social-updates-card-icon svg {
  flex-shrink: 0;
}
.social-updates-card-icon--linkedin,
.social-updates-card-icon--instagram,
.social-updates-card-icon--tiktok,
.social-updates-card-icon--substack {
  background: var(--color-primary);
}
