@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
    url('../fonts/Satoshi-Variable.woff') format('woff'),
    url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
    url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
    url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */

:root {
  /* Typography */
  --font-sans: 'Satoshi', sans-serif;
  --font-serif: 'Noto Serif JP', Georgia, serif;

  /* Brand and semantic colors */
  --brand: #CC4C33;
  --brand-hover: #B4432D;
  --secondary: #C9C0A6;
  --bg-cream: #F7F5F0;
  --bg-warm: #EDEADF;
  --bg-white: #FAFAF7;
  --bg-dark: #1A1A18;
  --bg-dark-card: #252521;
  --text-primary: #1A1A18;
  --text-body: #4A4740;
  --text-muted: #8A857D;
  --text-on-dark: #F7F5F0;
  --text-muted-on-dark: #c2bcb4;
  --border: #DDD9D0;
  --green: #2D8A56;
  --green-light: #E6F5ED;

  /* Shared scale */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(36, 15, 11, 0.12);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --focus-ring: rgba(204, 76, 51, 0.65);
  --z-sticky-cta: 1000;
  --z-subheader: 1050;
  --z-header: 1100;
  --z-drawer: 10000;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  text-size-adjust: 100%;
  overflow-x: clip;
}

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

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  color: var(--text-primary);
  background: var(--bg-white);
  font-family: var(--font-sans);
}

/* Keyboard users get a visible, brand-consistent focus state across links and buttons. */
:where(a, button, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* ========================================
   NETICON HEADER
   ======================================== */
#neticon-header {
  background: #0c0c0c;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  z-index: var(--z-header);
  position: relative;
  font-family: var(--font-sans);
}

#neticon-header .nh-inner {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#neticon-header .nh-logo img {
  height: 40px;
  display: block;
}

#neticon-header .nh-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

#neticon-header .nh-nav a {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  font-family: var(--font-sans);
}

#neticon-header .nh-nav a:hover {
  opacity: 1;
}

#neticon-header .nh-lang {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 4px 12px;
  font-size: 12px;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: opacity 0.2s;
  cursor: pointer;
}

#neticon-header .nh-lang:hover {
  opacity: 1;
}

#neticon-header .nh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
  color: inherit;
}

#neticon-header .nh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

@media (max-width: 1024px) {
  #neticon-header .nh-nav {
    gap: 20px;
  }

  #neticon-header .nh-nav a {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  #neticon-header .nh-inner {
    padding: 0 20px;
  }

  #neticon-header {
    height: 48px;
  }

  #neticon-header .nh-logo img {
    height: 32px;
  }

  #neticon-header .nh-nav {
    display: none;
  }

  #neticon-header .nh-lang {
    display: none;
  }

  #neticon-header .nh-hamburger {
    display: flex;
  }

  #neticon-header.menu-open .nh-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: #1A1A18;
    padding: 30px 20px;
    gap: 25px;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  #neticon-header.menu-open .nh-lang {
    display: inline-block;
    position: absolute;
    top: 90px;
    right: 20px;
    z-index: 20;
  }

  #neticon-header .nh-hamburger span {
    transition: all 0.3s ease;
    transform-origin: center;
  }

  #neticon-header.menu-open .nh-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #neticon-header.menu-open .nh-hamburger span:nth-child(2) {
    opacity: 0;
  }

  #neticon-header.menu-open .nh-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ========================================
   CONVENTUS SUB-HEADER
   ======================================== */
#conventus-subheader {
  background: #fff;
  width: 100%;
  height: 52px;
  z-index: var(--z-subheader);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  font-family: var(--font-sans);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.2s ease;
}

#conventus-subheader.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

#conventus-subheader .sh-inner {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

#conventus-subheader .sh-logo {
  color: #1a1a18;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#conventus-subheader .sh-logo svg {
  height: 20px;
  width: auto;
}

#conventus-subheader .sh-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

#conventus-subheader .sh-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

#conventus-subheader .sh-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-sans);
}

#conventus-subheader .sh-links a:hover,
#conventus-subheader .sh-links a.active {
  color: var(--text-primary);
}

#conventus-subheader .sh-links a.active {
  border-bottom-color: var(--brand);
}

#conventus-subheader .sh-cta {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 12.8px;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

#conventus-subheader .sh-cta:hover {
  background: var(--brand-hover);
}

@media (max-width: 768px) {
  #conventus-subheader .sh-inner {
    padding: 0 28px;
  }

  #conventus-subheader .sh-links {
    display: none;
  }
}

/* ========================================
   SCOPED CONVENTUS PAGE STYLES
   ======================================== */
#conventus-page {
  all: initial;
  font-family: var(--font-sans);
  color: var(--text-primary);
  line-height: 1.6;
  display: block;
}

/* Scroll offset for anchor links */
#conventus-page section[id] {
  scroll-margin-top: 60px;
}

/* COMMON TYPOGRAPHY */
#conventus-page .presti {
  font-family: var(--font-serif);
}

#conventus-page .presti-it {
  font-family: var(--font-serif);
  font-style: italic;
}

#conventus-page .benton {
  font-family: var(--font-serif);
}

#conventus-page .benton-it {
  font-family: var(--font-serif);
  font-style: italic;
}

#conventus-page .avenir {
  font-family: var(--font-sans);
}


#conventus-page .section-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
}

#conventus-page .container {
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 40px;
}

#conventus-footer .container {
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  #conventus-page .container {
    padding: 0 28px;
  }

  #conventus-page #problem .container {
    padding: 0;
  }

  #conventus-footer .container {
    padding: 0 28px;
  }
}

/* JS adds .visible to .reveal elements when they enter the viewport. */
#conventus-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#conventus-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   SECTION 1 — HERO
   ======================================== */
#hero {
  background: var(--bg-white);
  padding: 0;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

#hero .hero-split {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

#hero .hero-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 40px;
  min-height: min-content;
  box-sizing: border-box;
}

#hero .hero-left-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

#hero .hero-logo {
  color: #CC4C33;
  margin-bottom: 80px;
}

#hero .hero-logo svg {
  width: 210px;
  height: auto;
}

#hero .hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-primary);
  margin: 0;
}

#hero .hero-headline em {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#hero .hero-sub {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 560px;
  margin: 0;
}

#hero .hero-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

#hero .hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-body);
  white-space: nowrap;
}

#hero .hero-proof-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

#hero .hero-ctas {
  display: flex;
  align-items: center;
}

#hero .cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  background: #CC4C33;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

#hero .cta-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#hero .cta-primary:hover {
  background: var(--brand-hover);

}

#hero .hero-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  padding: 40px 40px 40px 0;
  box-sizing: border-box;
}

#hero .hero-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  /* Adjust as needed for your video dimensions */
  border-radius: 4px;
  /* Optional slight rounding if desired, but 0 is okay too */
}

#hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  #hero .hero-left {
    padding: 40px;
  }

  #hero .hero-right {
    padding: 40px;
  }

  #hero .hero-left-content {
    gap: 32px;
  }

  #hero .hero-logo svg {
    width: 180px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: auto;
  }

  #hero .hero-split {
    flex-direction: column-reverse;
    min-height: auto;
  }

  #hero .hero-left {
    flex: none;
    padding: 40px 28px 80px 28px;
  }

  #hero .hero-right {
    flex: none;
    height: 80vw;
    min-height: 260px;
    padding: 0;
  }

  #hero .hero-frame {
    border-radius: 0;
    padding: 24px 24px 0 24px;
  }

  #hero .hero-video {
    border-radius: 6px;
  }

  #hero .hero-proof {
    flex-direction: column;
    gap: 12px;
  }
  #hero .hero-proof-item {
    font-size: 16px;
  }

  #hero .hero-headline {
    font-size: clamp(24px, 6vw, 36px);
  }

  #hero .hero-logo {
  color: #CC4C33;
  margin-bottom: 16px;
}

  #hero .hero-headline br {
    display: none;
  }

  #hero .hero-sub {
    font-size: 16px;
  }
}

/* ========================================
   SECTION 2 — PROBLEM
   ======================================== */
#problem {
  position: relative;
  background: var(--bg-dark);
  padding: 120px 0 140px;
  overflow: hidden;
}

#problem .container {
  position: relative;
  z-index: 2;
}

/* ---- Row 1: headline left + 3 mini cards right ---- */
.problem-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 120px;
  padding: 0 28px;
}

.problem-header {
  flex: 0 0 36%;
  padding-top: 10px;
}


#problem .section-headline {
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 300;
  line-height: 1.33;
  max-width: 480px;
  margin: 0;
}

#problem .section-headline em {
  font-style: italic;
  color: #929292;
}

/* 3 mini-cards with dividers */
.problem-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;*/
}

.problem-card {
  padding: 28px 24px 24px;
  position: relative;
}

/*
.problem-card + .problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}*/

.problem-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(62, 36, 30, 0.32);
  border-radius: 4px;
  margin-bottom: 32px;
}

.problem-card-title {
  font-family: var(--font-sans);
  font-size: 15.2px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}

.problem-card-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted-on-dark);
  line-height: 1.6;
}

/* ---- Row 2: showcase card (text+steps left | visual right) ---- */
.problem-showcase {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  display: flex;
  min-height: 520px;
  overflow: hidden;
}

.problem-showcase-left {
  flex: 1;
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
}

.problem-showcase-intro {
  margin-bottom: 20px;
}

.problem-showcase-right {
  flex: 0 0 600px;
  max-width: 600px;
  background: linear-gradient(rgba(26, 26, 24, 0.6), rgba(26, 26, 24, 0.3)), url('../images/the-problem.jpg') center/cover;
  padding: 48px 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/* Intro text inside showcase */
.problem-featured-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand);
  margin-bottom: 20px;
}

.problem-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 16px;
}

.problem-featured-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted-on-dark);
  line-height: 1.7;
}

.problem-cta {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.problem-cta:hover {
  gap: 14px;
}

/* Steps inside showcase left */
.problem-steps {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-step {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.problem-step-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-muted-on-dark);
  flex-shrink: 0;
  width: 24px;
}

.problem-step-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted-on-dark);
}

.problem-step.active {
  padding-bottom: 20px;
}

.problem-step.active .problem-step-num {
  color: var(--brand);
}

.problem-step.active .problem-step-title {
  color: #fff;
  font-weight: 700;
}

.problem-step-desc {
  font-family: var(--font-sans);
  font-size: 15.2px;
  color: var(--text-muted-on-dark);
  line-height: 1.7;
  margin: 0;
  padding-left: 44px;
  width: 100%;
}

/* Leak funnel (inside showcase right) */
.leak-funnel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

.leak-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--w);
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(204, 76, 51, 0.4);
  border-left: 3px solid var(--brand);
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  min-width: 140px;
}

.leak-bar.lost {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: var(--text-muted-on-dark);
  border-left-style: dashed;
}

.leak-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-on-dark);
  font-weight: 500;
}

.leak-pct {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-cream);
}

.leak-bar.lost .leak-pct {
  color: var(--bg-cream);
}

/* Responsive */
@media (max-width: 1024px) {
  .problem-top {
    flex-direction: column;
    gap: 32px;
  }

  .problem-header {
    flex: none;
  }

  .problem-showcase {
    flex-direction: column;
    min-height: auto;
    border-radius: 0;
  }

  .problem-showcase-right {
    flex: none;
    padding: 32px;
  }
}

@media (max-width: 768px) {
  #problem {
    padding: 80px 0 0;
  }

  .problem-top {
    margin-bottom: 40px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .problem-card {
    padding: 0 0 40px 0;
  }

  .problem-card-title {
    font-size: 16px;
  }

  .problem-card-desc {
    font-size: 14px;
  }

  /*
  .problem-card + .problem-card::before {
    left: 16px;
    right: 16px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }*/

  .problem-showcase-left {
    padding: 28px 28px 64px;
  }

  .problem-steps {
    margin-top: 24px;
  }

  .problem-step {
    align-items: flex-start;
  }

  .problem-step-num {
    padding-top: 2px;
  }

  .problem-showcase-right {
    display: none;
  }
}

/* ========================================
   SECTION 3 — DEFINITION
   ======================================== */
#definition {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 40px 0;
}

#definition .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#definition .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 24, 0.7) 0%, rgba(26, 26, 24, 0.6) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

#definition .container {
  position: relative;
  z-index: 2;
}

#definition .definition-logo {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

#definition .definition-logo svg {
  max-width: 160px;
  height: auto;
}

#definition .def-statement {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-on-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

#definition .pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

#definition .pipe-step {
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: default;
  border: 1px solid transparent;
}

#definition .pipe-step:hover {
  transform: scale(1.05);
  background: var(--bg-dark);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

#definition .pipe-step.first {
  background: var(--brand);
  color: #fff;
}

#definition .pipe-step:not(.first) {
  background: var(--bg-white);
  color: var(--brand-hover);
}

#definition .pipe-connector {
  position: relative;
  width: 40px;
  height: 2px;
  background-color: var(--bg-warm);
  opacity: 0.9;
  flex-shrink: 0;
  overflow: hidden;
}

#definition .pipe-connector::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--brand) 50%,
      transparent 100%);
  animation: flowLine 1.6s linear infinite;
}

@keyframes flowLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

/* Sequential Reveal */
#definition .pipeline .pipe-step,
#definition .pipeline .pipe-connector {
  opacity: 0;
  /* Изначально скрыты */
}

#definition .pipeline.visible .pipe-step,
#definition .pipeline.visible .pipe-connector {
  animation: popIn 0.5s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

#definition .pipeline.visible *:nth-child(1) {
  animation-delay: 0.1s;
}

#definition .pipeline.visible *:nth-child(2) {
  animation-delay: 0.2s;
}

#definition .pipeline.visible *:nth-child(3) {
  animation-delay: 0.3s;
}

#definition .pipeline.visible *:nth-child(4) {
  animation-delay: 0.4s;
}

#definition .pipeline.visible *:nth-child(5) {
  animation-delay: 0.5s;
}

#definition .pipeline.visible *:nth-child(6) {
  animation-delay: 0.6s;
}

#definition .pipeline.visible *:nth-child(7) {
  animation-delay: 0.7s;
}

#definition .pipeline.visible *:nth-child(8) {
  animation-delay: 0.8s;
}

#definition .pipeline.visible *:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateX(-10px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 768px) {
  #definition {
    padding: 120px 0;
    min-height: auto;
    overflow: hidden;
  }

  #definition .container {
    padding: 0 28px;
  }

  #definition .def-statement {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 80px;
  }

  #definition .pipeline {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    width: auto;
    max-width: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -28px;
    margin-right: -28px;
    padding: 4px 28px;
    box-sizing: border-box;
  }

  #definition .pipeline::-webkit-scrollbar {
    display: none;
  }

  #definition .pipeline .pipe-step,
  #definition .pipeline .pipe-connector {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    flex-shrink: 0;
  }

  #definition .pipe-step {
    font-size: 13px;
    padding: 8px 16px;
  }

  #definition .pipe-connector {
    width: 24px;
    height: 2px;
  }
}

/* ========================================
   SECTION 4 — HOW IT WORKS
   ======================================== */
#how-it-works {
  position: relative;
  background-color: var(--bg-white);
  padding: 120px 0 100px;
  isolation: isolate;
}

/* Тетрадная клетка с градиентным затуханием к краям секции */
#how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(160, 100, 85, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(160, 100, 85, 0.22) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 85%);
}

#how-it-works .section-headline {
  color: #1a1a18;
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 52px 0;
}

/* Bento Grid Layout */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.step-card {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px) saturate(110%);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(36, 15, 11, 0.12);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3) {
  grid-column: span 2;
}

.step-card:nth-child(4),
.step-card:nth-child(5) {
  grid-column: span 3;
}

.step-card .step-text {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.step-card .step-visual {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: auto;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background: #fff;
  border-radius: 4px;
  padding: 24px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--brand);
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
}

.step-mockup {
  width: 100%;
  max-width: 100%;
}

.step-card .step-visual {
  padding: 0;
  border: none;
  background: transparent;
}

.step-card .step-visual .step-mockup {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.step-mockup-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step-mockup-field {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
}

.step-mockup-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  border: none;
  margin-top: 6px;
}

.check-icon {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

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

.step-metric {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  padding: 12px 12px;
  text-align: center;
}

.step-metric-val {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 4px;
}

.step-metric-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
}

.step-metric-row + .step-metric-row {
  margin-top: 10px;
}

.step-metric-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

#how-it-works .section-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

#how-it-works .section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: #CC4C33;
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

@media (max-width: 768px) {
  #how-it-works {
    padding: 80px 0;
  }

  .how-it-works-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 24px 40px;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }
  .how-it-works-grid::-webkit-scrollbar {
    display: none;
  }

  #conventus-page #how-it-works .container {
    padding: 0 24px;
  }

  #how-it-works .section-headline {
    padding: 0;
  }

  #how-it-works .section-label {
    padding: 0;
  }

  .step-card:nth-child(n) {
    grid-column: auto;
  }

  .step-card {
    flex: 0 0 95%;
    min-width: 95%;
    scroll-snap-align: center;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }

  .step-card .step-text {
    margin-bottom: 0;
    padding: 24px;
  }

  .step-card .step-visual .step-mockup {
    padding: 0 28px 28px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}

/* ========================================
   SECTION 5 — CAPABILITIES
   ======================================== */
#capabilities {
  background: var(--bg-dark);
  padding: 120px 0;
  min-height: calc(100vh - 290px);
  height: calc(100vh - 290px);
}

#capabilities .section-headline {
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 0 64px 0;
}

#capabilities .section-headline em {
  font-style: italic;
  color: #929292;
}

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

.cap-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(204, 76, 51, 0.1) 0%, rgba(255, 255, 255, 0.01) 100%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 8%, rgba(255, 255, 255, 0.05)) 0%, color-mix(in srgb, var(--brand) 2%, rgba(255, 255, 255, 0.01)) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0.5px 0.5px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}

.cap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(204, 76, 51, 0.16), transparent 40%);
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      color-mix(in srgb, var(--brand) 20%, transparent),
      transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cap-card>* {
  position: relative;
  z-index: 1;
}

.cap-card:hover::before {
  opacity: 1;
}

.cap-icon {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: rgba(62, 36, 30, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cap-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--brand);
  stroke-width: 1.5;
  fill: none;
}

.cap-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.cap-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  #capabilities {
    padding: 80px 0;
    height: auto;
    min-height: auto;
  }

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

/* ========================================
   SECTION 6 — ANALYTICS
   ======================================== */
#analytics {
  background: var(--bg-white);
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(66, 19, 3, 0)), url('../images/analytics.jpg') no-repeat center center;
  background-size: cover;
  padding: 160px 0;
}

#analytics .section-headline {
  font-size: clamp(28px, 7vw, 40px);
  margin-bottom: 50px;
}

/* ---- Analytics Top (Light Variant) ---- */
#analytics .analytics-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

#analytics .analytics-header {
  flex: 0 0 40%;
  padding-top: 10px;
}

#analytics .section-headline {
  color: #1a1a18;
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
}

#analytics .section-headline span.presti-it {
  font-style: italic;
  color: var(--brand);
}

/* 3 light cards */
#analytics .analytics-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#analytics .analytics-card {
  padding: 24px 20px 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

#analytics .analytics-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  margin-bottom: 24px;
}

#analytics .analytics-card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a18;
  margin-bottom: 8px;
  line-height: 1.4;
}

#analytics .analytics-card-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ---- Analytics Showcase ---- */
#analytics .analytics-showcase {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.08);
  border-radius: 6px;
  display: flex;
  min-height: 500px;
  overflow: hidden;
}

#analytics .analytics-showcase-left {
  flex: 1;
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
}

#analytics .analytics-showcase-intro {
  margin-bottom: 32px;
}

#analytics .analytics-showcase-right {
  flex: 0 0 720px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.3);
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.02);
}

#analytics .analytics-featured-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand);
  margin-bottom: 16px;
}

#analytics .analytics-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  color: #1a1a18;
  line-height: 1.25;
  margin: 0 0 16px;
}

#analytics .analytics-featured-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 480px;
}

/* Steps inside showcase left */
#analytics .analytics-steps {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#analytics .analytics-step {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

#analytics .analytics-step-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgb(79, 73, 70);
  flex-shrink: 0;
  width: 24px;
}

#analytics .analytics-step-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #6a6a6a;
}

#analytics .analytics-step.active {
  padding-bottom: 20px;
}

#analytics .analytics-step.active .analytics-step-num {
  color: var(--brand);
}

#analytics .analytics-step.active .analytics-step-title {
  color: #1a1a18;
  font-weight: 700;
}

#analytics .analytics-step-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  padding-left: 40px;
  width: 100%;
}

/* Dash Mockup modifications (originally present, just making sure we keep them) */
#analytics .dash-mockup {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  padding: 32px;
  width: 100%;
}

#analytics .dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

#analytics .dash-metric {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
}

#analytics .dash-metric-val {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: #1a1a18;
  line-height: 1;
  margin-bottom: 8px;
}

#analytics .dash-metric-label {
  font-size: 11px;
  color: #7a7a7a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#analytics .dash-chart {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  padding: 24px;
  margin-bottom: 24px;
  height: 160px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
}

#analytics .dash-chart-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Chart animation */
#analytics .dash-path-anim {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-in-out forwards infinite alternate;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

#analytics .dash-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#analytics .dash-table-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

#analytics .dash-table-name {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #7a7a7a;
  width: 80px;
  white-space: nowrap;
}

#analytics .dash-table-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

#analytics .dash-table-bar {
  display: block;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#analytics .dash-table-val {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #1a1a18;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

#analytics .section-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

#analytics .section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: #CC4C33;
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

#analytics .section-cta a:hover {
  background: #A63A25;
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 1100px) {
  #analytics .analytics-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  #analytics .analytics-header {
    flex: none;
    max-width: 100%;
  }

  #analytics .analytics-showcase {
    flex-direction: column;
  }

  #analytics .analytics-showcase-right {
    flex: none;
    max-width: 100%;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px;
  }

  #analytics .dash-chart {
    height: auto;
  }
}

@media (max-width: 768px) {
  #analytics {
    padding: 80px 0 0;
  }

  #analytics .section-headline br {
    display: none;
  }

  #conventus-page #analytics .container {
    padding: 0;
  }

  #analytics .analytics-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 28px;
  }

  #analytics .analytics-card {
    padding: 24px 20px 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  }

  #analytics .analytics-header {
    padding: 0 28px;
  }

  #analytics .analytics-card-title {
    font-size: 16px;
  }

  #analytics .analytics-card-desc {
    font-size: 14px;
  }

  #analytics .analytics-showcase {
    border: none;
    border-radius: 0;
    padding: 24px 24px 64px;
  }

  #analytics .analytics-showcase-left {
    padding: 32px 0px;
  }

  #analytics .analytics-showcase-right {
    padding: 0;
  }

  #analytics .dash-mockup {
    padding: 16px;
  }

  #analytics .dash-metrics {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SECTION 7 — WHO IT'S FOR
   ======================================== */
#audience {
  background: var(--bg-cream);
  padding: 120px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 290px);
  height: calc(100vh - 290px);
}

#audience .section-headline {
  font-size: clamp(28px, 7vw, 40px);
  max-width: 800px;
  margin: 0 auto 64px;
  line-height: 1.5;
}

#audience .audience-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin: 32px auto 64px;
  line-height: 1.6;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.industry-pill {
  background: var(--bg-warm);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  transition: border-color 0.2s;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.industry-pill svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.2s;
}


#audience .audience-note {
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: italic;
  margin-top: 40px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  #audience {
    padding: 80px 0;
    height: auto;
    min-height: auto;
  }
}

/* ========================================
   SECTION 8 — PRICING
   ======================================== */
#pricing {
  position: relative;
  isolation: isolate;
  background: var(--bg-white);
  padding: 80px 0 160px 0;
}

#pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: linear-gradient(to right, rgba(166, 166, 166, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(199, 199, 199, 0.22) 1px, transparent 1px);
    background-size: 64px 64px;
    background-position: center center;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 65%, transparent 95%);
    mask-image: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 65%, transparent 95%);
}

#pricing .section-label {
  display: flex;
  justify-content: center;
}

#pricing .section-headline {
  color: #1a1a18;
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 18px 0;
  text-align: center;
}

.pricing-intro {
  max-width: 680px;
  margin: 0 auto 52px;
  color: #4a4a4a;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  max-width: none;
  width: 100%;
  margin: 0 auto 32px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
  box-shadow: 0 8px 32px 0 rgba(36, 15, 11, 0.12);
  padding: 32px 32px 32px;
}

.pricing-starter,
.pricing-upgrades {
  min-height: 100%;
}

/* Dark inverted variant for the Starter card */
.pricing-starter {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--brand);
}

.pricing-starter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/visual-inspiration-1.jpg') center center / cover no-repeat;
  filter: blur(18px) saturate(80%);
  opacity: 0.18;
  z-index: 0;
  transform: scale(1.08);
  pointer-events: none;
}

.pricing-starter > * {
  position: relative;
  z-index: 1;
}

.pricing-starter .pricing-eyebrow {
  color: var(--brand);
}

.pricing-starter .pricing-title {
  color: var(--text-on-dark);
}

.pricing-starter .pricing-sub {
  color: var(--text-muted-on-dark);
  margin-bottom: 24px;
  font-size: 16px;
}

.pricing-starter .pricing-metrics li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.pricing-starter .pricing-metric-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.pricing-starter .pricing-metric-text {
  color: var(--text-on-dark);
}

.pricing-eyebrow {
  color: var(--brand-hover);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.pricing-title {
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  margin-top: 12px;
}

.pricing-price {
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 4px;
}

.pricing-pilot .pricing-price {
  font-size: clamp(22px, 3vw, 28px);
  font-style: italic;
  color: var(--brand);
}

.pricing-sub {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0px 0;
}

.pricing-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-metrics li {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.pricing-metric-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pricing-metric-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-metric-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.pricing-metric-number {
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.pricing-metric-text {
  color: #4a4a4a;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pricing-upgrade-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.pricing-upgrade-item {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: 0 4px 18px 0 rgba(36, 15, 11, 0.03);
  padding: 18px 20px;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), 
              border-color 0.22s ease, 
              box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.pricing-upgrade-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.pricing-upgrade-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px 0 rgba(36, 15, 11, 0.08);
}

.pricing-upgrade-item:hover::before {
  opacity: 0.15;
}

.pricing-upgrade-item h4 {
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-upgrade-item h4::after {
  content: '+';
  color: var(--brand);
  font-size: 16px;
  font-weight: 400;
  margin-left: auto;
  opacity: 0.7;
}

.pricing-upgrade-item p {
  color: #555555;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.pricing-pilot {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  max-width: none;
  width: 100%;
  margin: 0 auto 24px;
  align-items: start;
  border-top: 4px solid var(--brand);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  box-shadow: 0 8px 32px 0 rgba(36, 15, 11, 0.12);
  padding: 64px 48px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-pilot::after {
  content: '';
  position: absolute;
  bottom: -600px;
  left: -600px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, var(--brand-hover) 0%, transparent 80%);
  opacity: 0.2;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.pricing-pilot > * {
  position: relative;
  z-index: 1;
}

.pricing-pilot:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.9);
}

.pricing-pilot-main {
  padding-right: 20px;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: 32px;
  
}

@media (max-width: 768px) {
  .pricing-features {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }
}

.pricing-features li {
  font-family: var(--font-sans);
  color: #4a4a4a;
  font-size: 15.2px;
  line-height: 1.6;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features svg {
  stroke: var(--green);
  width: 24px;
  height: 24px;
}

.pricing-features .feat-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.pricing-note {
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.pricing-cta:hover {
  background: var(--brand-hover);
  color: #fff;
}

.pricing-pilot .pricing-footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  margin-top: 16px;
}

.pricing-includes-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 14px;
}

.pricing-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.pricing-includes-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
      box-shadow: 0 4px 18px 0 rgba(36, 15, 11, 0.06);
}

.pricing-includes-icon {
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-includes-item span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.3;
}

.pricing-footer-copy p {
  color: #9a9a9a;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.pricing-pilot-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pricing-pilot-cta .pricing-cta {
  width: auto;
  min-width: 220px;
  padding-left: 40px;
  padding-right: 40px;
}

.pricing-custom-section {
  position: relative;
  overflow: hidden;
  background: rgba(20, 3, 0, 1);
  padding: 40px 0;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.pricing-custom-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/visual-inspiration-1.jpg') center center / cover no-repeat;
  filter: blur(32px) saturate(50%);
  opacity: 0.24;
  z-index: 0;
  transform: scale(1.2);
  pointer-events: none;
}

.pricing-custom-section::after {
  content: '';
  position: absolute;
  bottom: -800px;
  left: 900px;
  width: 1800px;
  height: 1800px;
  background: radial-gradient(circle, var(--brand-hover) 0%, transparent 80%);
  opacity: 0.8;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}


.pricing-custom-section .container {
  position: relative;
  z-index: 2;
}

.pricing-custom-header {
  margin-bottom: 40px;
}

.pricing-custom-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--bg-dark);
}

.pricing-custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(75%) brightness(75%);
}

.pricing-custom-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 64px;
}

.pricing-custom-section .pricing-eyebrow {
  color: var(--brand);
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.pricing-custom-title {
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
}

/* Lead sentence — prominent */
.pricing-custom-right p:first-child {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Supporting body copy — secondary */
.pricing-custom-right p:nth-child(n+2) {
  color: var(--text-muted-on-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 14px;
}

.pricing-custom-right .pricing-cta {
  margin-top: 32px;
  max-width: 240px;
}

@media (max-width: 768px) {
  #pricing {
    padding: 80px 0;
  }

  #pricing .section-headline {
    margin-bottom: 16px;
  }

  .pricing-intro {
    font-size: 16px;
    margin-bottom: 36px;
  }

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

  .pricing-card,
  .pricing-pilot {
    padding: 28px;
  }

  .pricing-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-upgrade-list,
  .pricing-pilot,
  .pricing-custom-card {
    grid-template-columns: 1fr;
  }

  .pricing-custom-section {
    padding: 64px 0;
  }

  .pricing-custom-media {
    aspect-ratio: 2 / 1;
  }

  .pricing-custom-card {
    gap: 32px;
  }

  .pricing-custom-right .pricing-cta {
    max-width: none;
  }

}

/* ========================================
   SECTION 9 — TRUST (mirrors Hero layout)
   ======================================== */
#trust {
  background: var(--bg-cream);
  padding: 0;
  overflow: hidden;
  min-height: calc(100vh - 60px);
  justify-content: center;
  align-content: center;
}

#trust .trust-split {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

#trust .trust-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 40px;
  min-height: min-content;
  box-sizing: border-box;
}

#trust .trust-left-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

#trust .trust-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

#trust .trust-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#trust .trust-point {
  position: relative;
  padding-left: 2rem;
}

#trust .trust-point::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 600;
}

#trust .trust-point h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

#trust .trust-point p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: var(--text-body);
  margin: 0;
}

#trust .trust-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  padding: 40px 40px 40px 0;
  box-sizing: border-box;
}

#trust .trust-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background-color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  box-sizing: border-box;
}

#trust .trust-frame .presti {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

@media (max-width: 1024px) {
  #trust .trust-left {
    padding: 40px;
  }

  #trust .trust-right {
    padding: 40px;
  }

  #trust .trust-left-content {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  #trust .trust-split {
    flex-direction: column;
  }

  #trust .trust-left,
  #trust .trust-right {
    flex: none;
    width: 100%;
    padding: 64px 28px;
  }

  #trust .trust-right {
    padding-top: 0px;
  }

  #trust .trust-frame {
    aspect-ratio: auto;
    padding: 48px 32px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
#conventus-footer {
  background: var(--bg-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
}

.footer-logo svg {
  height: 18px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-on-dark);
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted-on-dark);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ========================================
   MOBILE STICKY FOOTER
   ======================================== */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: var(--z-sticky-cta);
}

#mobile-sticky-cta a {
  display: block;
  width: 100%;
  height: 56px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 99px;
  text-decoration: none;
  text-align: center;
  line-height: 56px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

#mobile-sticky-cta a:hover {
  background: var(--brand-hover);
}

@media (max-width: 768px) {
  #mobile-sticky-cta {
    display: none;
  }

  #mobile-sticky-cta.hidden {
    display: none;
  }

  /* Add bottom padding for mobile sticky footer */
  #conventus-footer {
    padding-bottom: 40px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #conventus-page .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Specific refinements to match attached mockups perfectly */
.trust-card {
  border-radius: 4px;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pricing-card {
  border-radius: 4px;
}

.analytics-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

#definition .def-statement {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.5;
  max-width: 1100px;
}

#definition .pipeline {
  margin-top: 40px;
}

/* Add UX max best practices */
.trust-card {
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.trust-card:hover {

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.pricing-card {
  transition: transform 0.25s;
}


/* Analytics (Problem-style structure) */
.analytics-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.analytics-header {
  flex: 0 0 36%;
  padding-top: 10px;
}

.analytics-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.analytics-card {
  background: var(--bg-cream);
  /* Or white */
  padding: 32px;
  border-radius: 4px;
  /*border: 1px solid rgba(0,0,0,0.05);*/
}

.analytics-showcase {
  background: linear-gradient(rgba(245, 243, 238, 0.5), rgba(245, 243, 238, 0.5)), url('../images/visual-inspiration-1.jpg') center/cover;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .analytics-top {
    flex-direction: column;
    gap: 32px;
  }

  .analytics-header {
    flex: none;
  }

  .analytics-cards {
    grid-template-columns: 1fr;
  }

  .analytics-showcase {
    padding: 32px;
  }
}

/* ========================================
   RESTORED SECTION LABEL STYLES
   ======================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: "Satoshi", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  white-space: nowrap;
}

.label-dot {
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--brand) !important;
  border-radius: 1px;
  position: relative;
}

.label-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* ===== DISABLE HOVER EFFECTS ON TOUCH DEVICES ===== */
@media (hover: none) {
  #neticon-header .nh-nav a:hover {
    opacity: 0.85;
  }

  #neticon-header .nh-lang:hover {
    opacity: 0.85;
  }

  #conventus-subheader .sh-links a:hover {
    color: var(--text-muted);
  }

  #conventus-subheader .sh-cta:hover {
    background: var(--brand);
  }

  #hero .cta-primary:hover {
    background: var(--brand);
  }

  .problem-cta:hover {
    gap: 8px;
  }

  #definition .pipe-step:hover {
    transform: none;
    background: unset;
    color: unset;
    border-color: transparent;
    box-shadow: none;
    z-index: auto;
  }

  .cap-card:hover::before {
    opacity: 0;
  }

  #analytics .section-cta a:hover {
    background: var(--brand);
    transform: none;
  }

  .industry-pill:hover {
    border-color: transparent;
  }

  .industry-pill:hover svg {
    stroke: var(--text-muted);
  }

  .pricing-cta:hover {
    background: var(--brand);
    transform: none;
  }

  .footer-links a:hover {
    color: var(--text-muted-on-dark);
  }

  #mobile-sticky-cta a:hover {
    background: var(--brand);
  }

  .trust-card:hover {
    box-shadow: none;
  }
}


/* ============================================================
   Booking Drawer
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
  pointer-events: none;
}

.drawer[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 22, 0.45);
  opacity: 0;
  transition: opacity 280ms ease;
}

.drawer[aria-hidden="false"] .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(800px, 100vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
  outline: none;
}

.drawer[aria-hidden="false"] .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  position: sticky;
  top: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  background: #fff;
  z-index: 1;
}

.drawer-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-body, #111827);
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border, #e5e7eb);
  background: #f3f4f6;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-body, #111827);
  transition: background 160ms ease, border-color 160ms ease;
}

.drawer-close:hover {
  background: #e5e7eb;
}

.drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .drawer-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 92vh;
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  }

  .drawer[aria-hidden="false"] .drawer-panel {
    transform: translateY(0);
  }

  .drawer-header {
    padding: 16px 20px;
  }

  .drawer-body {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .drawer-backdrop,
  .drawer-panel {
    transition: none;
  }
}

/* ============================================================
   Analytics dashboard panels (rating / bookings / outcomes)
   ============================================================ */
#analytics .dash-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 4px;
}

#analytics .dash-panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

#analytics .dash-panel-rating {
  grid-column: 1;
  grid-row: 1;
}

#analytics .dash-panel-bookings {
  grid-column: 2;
  grid-row: 1 / span 2;
}

#analytics .dash-panel-outcomes {
  grid-column: 1;
  grid-row: 2;
}

#analytics .dash-panel-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 8px;
}

#analytics .dash-panel-foot {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 6px;
}

/* Rating panel */
#analytics .dash-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

#analytics .dash-stars {
  color: var(--brand);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

#analytics .dash-rating-val {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a18;
}

/* Step mockup stars (Outcome step) */
.step-mockup .stars {
  color: var(--brand);
  letter-spacing: 1px;
  margin-right: 6px;
}

/* Recent bookings list */
#analytics .dash-booking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#analytics .dash-booking-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#analytics .dash-booking-name {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #1a1a18;
}

#analytics .dash-chip {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

#analytics .dash-chip-confirmed {
  background: rgba(46, 160, 67, 0.12);
  color: #1f7a35;
}

#analytics .dash-chip-resched {
  background: rgba(212, 167, 44, 0.16);
  color: #8a6500;
}

#analytics .dash-chip-cancelled {
  background: rgba(200, 60, 50, 0.12);
  color: #a02a20;
}

/* Outcomes mini bars */
#analytics .dash-outcome-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

#analytics .dash-outcome-row:last-child {
  margin-bottom: 0;
}

#analytics .dash-outcome-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #7a7a7a;
  width: 56px;
}

#analytics .dash-outcome-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

#analytics .dash-outcome-bar {
  display: block;
  height: 100%;
  border-radius: 2px;
}

#analytics .dash-outcome-val {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: #1a1a18;
  width: 32px;
  text-align: right;
}

@media (max-width: 720px) {
  #analytics .dash-panels {
    grid-template-columns: 1fr;
  }

  #analytics .dash-panel-rating,
  #analytics .dash-panel-bookings,
  #analytics .dash-panel-outcomes {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Pricing — features intro line */
.pricing-features-intro {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #9a9a9a;
  margin: 0 0 10px 0;
  letter-spacing: 0.01em;
}