/* DepoGenius – Premium Landing Site */
:root {
  --accent-blue: #3b82f6;
  --accent-purple: #7c3aed;
  --accent-teal: #0d9488;
  --accent-brown: #6b5344;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --hero-gradient: radial-gradient(
    ellipse 90% 70% at 50% 40%,
    #1e3352 0%,
    #142540 45%,
    #0a1628 100%
  );
  --footer-gradient: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #1e3352 0%,
    #142540 45%,
    #0a1628 100%
  );
  --container-max: 1280px;
  --spacing: 8px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-lg {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout */
.site-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main {
  flex: 1;
  overflow-x: hidden;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
.header-logo {
  display: flex;
  padding: 4px 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav a,
.nav button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: inherit;
}
.nav a:hover,
.nav button:hover {
  background: rgba(37, 99, 235, 0.06);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
}
.btn-login {
  background: #6b5344 !important;
  color: #fff !important;
}
.btn-login:hover {
  background: #5a4639 !important;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile-btn {
    display: flex;
  }
}
@media (min-width: 769px) {
  .nav-mobile-btn {
    display: none;
  }
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  display: block;
  padding: 12px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 199;
}
.nav-overlay.open {
  display: block;
}

/* Footer */
.site-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-root main {
  flex: 1 0 auto;
}
.footer {
  background: var(--footer-gradient);
  color: #fff;
  margin-top: auto;
  padding: 24px 24px 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  filter: brightness(0) invert(1);
  width: 8em;
  height: auto;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}
.footer-right {
  text-align: right;
  margin-left: auto;
}
.footer-contact {
  font-size: 0.875rem;
}
.footer-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.footer-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  color: #fff;
  font-size: 0.875rem;
  text-decoration: underline;
  opacity: 0.9;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-info {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.5;
}
.footer-info-tight {
  line-height: 1.2;
}
.footer-info-tight p {
  margin: 0;
}
.footer-info-anchored {
  text-align: right;
}
.footer-info-link {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}
.footer-info-link:hover {
  opacity: 1;
}
.footer-legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 12px;
  margin: 0;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
}
.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-trust-item .footer-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  opacity: 0.9;
}
.footer-trust-sep {
  color: #374151;
  font-size: 0.5rem;
}
.footer-copy {
  margin: 0;
  margin-left: auto;
  font-size: 0.8125rem;
  color: #4b5563;
}
@media (max-width: 640px) {
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  .footer-copy {
    margin-left: 0;
  }
}

/* Hero — force center alignment */
.hero {
  background: var(--hero-gradient);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56vh;
  padding: 72px 24px 56px;
  position: relative;
  overflow: hidden;
  text-align: center !important;
  box-sizing: border-box;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
  animation: heroDotsFade 2s ease-out forwards;
}
@keyframes heroDotsFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  box-sizing: border-box;
}
.hero-copy {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
  width: 100%;
  box-sizing: border-box;
}
.hero h1,
.hero .hero-headline-one-line,
.hero .hero-sub {
  text-align: center !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 8px;
  line-height: 1.1;
}
.hero-headline-one-line {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero-headline-one-line {
    white-space: normal;
  }
}
.hero-sub {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin: 4px 0 0;
  font-weight: 400;
}
.hero-dashboard {
  margin-top: 48px;
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.hero-dashboard-img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 58vh;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 32px 80px rgba(0, 0, 0, 0.2);
  animation: heroImageRise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes heroImageRise {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
/* Softer, darker trust text while staying readable */
.hero-trust span {
  font-size: 0.625rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(107, 114, 128, 0.95);
  opacity: 0.95;
}

/* See Example Litigation Reports — title only, space from hero preserved */
.reports-section {
  padding-top: 280px;
  padding-bottom: 120px;
  background: #fff;
}
.reports-section-heading-block {
  text-align: center;
  margin: 0 0 20px;
}
.reports-section-topline {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}
.reports-section-heading {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #6b5344;
  text-align: center;
  text-transform: uppercase;
}
.reports-heading-arrow {
  color: #9ca3af;
  margin: 0 0.2em;
  font-size: 1em;
}
.reports-stack {
  display: flex;
  flex-direction: column;
  gap: 176px;
  padding-top: 8px;
}
.report-block {
  position: relative;
}
/* Folder tag: per-row colors, white text, slight shadow, upward overlap */
.report-tab {
  position: absolute;
  top: 24px;
  z-index: 2;
  padding: 14px 18px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  line-height: 1.2;
  white-space: nowrap;
}
.report-tab-1 {
  background: #2f5bd3;
}
.report-tab-2 {
  background: #6a42c2;
}
.report-tab-3 {
  background: #1f7a6e;
}
/* MSJ + Strengths: tab on right — rounded on right, squared on left */
.report-tab-1,
.report-tab-3 {
  left: auto;
  right: 0;
  border-radius: 0 6px 6px 0;
}
/* Strengths row has negative margin so card sits higher; move tab up to align with card top */
.report-tab-3 {
  top: -64px;
}
/* Admissions: tab on left, rounded on left */
.report-tab-2 {
  left: 0;
  right: auto;
  border-radius: 6px 0 0 6px;
}
.report-row-3 {
  margin-top: -88px;
}
.report-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: visible;
  min-height: 0;
}
.report-tab {
  transition: transform 0.2s ease;
}
.report-tab:hover {
  transform: translateY(-6px);
}
.report-row-1 {
  background: transparent;
  margin-left: 0;
  margin-right: 28px;
}
.report-row-2 {
  background: transparent;
  flex-direction: row-reverse;
  margin-left: 28px;
  margin-right: 0;
}
.report-row-3 {
  background: transparent;
  margin-left: 0;
  margin-right: 28px;
}
/* MSJ = hero (taller); secondary rows = smaller preview */
.report-row-preview {
  flex: 0 0 58%;
  position: relative;
  display: block;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  border: none;
}
/* Edge blur: only the outer ring so center stays sharp */
.report-row-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  backdrop-filter: blur(1.25px);
  -webkit-backdrop-filter: blur(1.25px);
  mask-image: radial-gradient(
    ellipse 55% 55% at 50% 50%,
    transparent 48%,
    black 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 55% 55% at 50% 50%,
    transparent 48%,
    black 100%
  );
  pointer-events: none;
}
/* Center clarity boost (brightness) + very subtle edge vignette */
.report-row-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: radial-gradient(
      ellipse 55% 55% at 50% 50%,
      rgba(255, 255, 255, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 75% 75% at 50% 50%,
      transparent 52%,
      rgba(0, 0, 0, 0.06) 100%
    );
  pointer-events: none;
}
.report-row-preview {
  background: #fff;
}
.report-row-1 .report-row-preview {
  border-right: none;
  max-height: 820px;
}
.report-row-2 .report-row-preview {
  border-left: none;
  max-height: 520px;
}
.report-row-3 .report-row-preview {
  border-right: none;
  max-height: 520px;
}
.report-row-1 .report-row-img {
  min-height: 820px;
}
.report-row-2 .report-row-img,
.report-row-3 .report-row-img {
  min-height: 520px;
}
.report-row-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: top center;
  vertical-align: top;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
/* Right column: no border; panel background is the only separation. Top-aligned with report title. */
.report-row-col-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 28px;
  background-color: #fff;
  border: none;
  border-radius: 0 16px 16px 0;
}
.report-row-2 .report-row-col-copy {
  border-radius: 16px 0 0 16px;
  justify-content: flex-end;
}
.report-row-3 .report-row-col-copy {
  border-radius: 0 16px 16px 0;
}
/* Right panel: “How we built this outline” — steps + CTA */
.report-row-copy {
  max-width: 440px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  border: none;
  background: transparent;
}
.report-row-1 .report-row-col-copy {
  padding-top: 198px;
  align-self: flex-start;
}
.report-row-1 .report-row-copy {
  align-items: flex-start;
  text-align: left;
}
.report-row-1 .report-row-copy .report-copy-step {
  justify-content: flex-start;
}
.report-row-1 .report-row-copy .report-copy-step-body ul {
  display: block;
  text-align: left;
  padding-left: 20px;
  margin-left: 0;
  margin-right: 0;
}
.report-row-1 .report-row-copy .report-btn {
  margin-top: 94px;
  align-self: center;
  padding-top: 0;
}
.report-copy-headline {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.report-copy-intro {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.report-copy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-bottom: 0;
}
.report-copy-step {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.report-copy-step:last-child {
  border-bottom: none;
}
.report-copy-step-num {
  flex-shrink: 0;
  min-width: 2ch;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-blue);
}
.report-copy-step-body {
  flex: 1;
  min-width: 0;
}
.report-copy-step-body strong {
  display: block;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 8px;
}
.report-copy-step-body p {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}
.report-copy-step-body p:last-of-type {
  margin-bottom: 0;
}
.report-copy-step-body ul {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.6;
}
.report-copy-step-body li {
  margin-bottom: 4px;
  line-height: 1.6;
}
.report-copy-step-tag {
  font-size: 0.75rem !important;
  color: var(--text-secondary) !important;
  font-style: italic;
  margin-top: 4px !important;
}
.report-row-2 .report-row-copy {
  align-items: flex-end;
  text-align: right;
}
.report-row-2 .report-btn {
  align-self: flex-end;
}
.report-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.report-row-1 .report-title {
  font-size: 1.35rem;
}
.report-desc {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
}
/* Button: 2x previous size — no scale, normal padding */
.report-row-copy .report-btn,
a.report-btn {
  padding: 8px 14px !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  align-self: flex-start;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 4px;
  border: 1px solid;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.report-btn::after {
  content: " →";
}
.report-row-1 .report-btn {
  padding: 6px 12px !important;
  font-weight: 500;
  background: #7a94d8;
  color: #fff;
  border: 2px solid #7a94d8;
  opacity: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.report-row-1 .report-btn:hover {
  background: #6b85ce;
  color: #fff;
  border-color: #6b85ce;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.report-row-2 .report-btn {
  background: var(--accent-blue);
  color: #fff;
  border-color: transparent;
  align-self: flex-end;
}
.report-row-2 .report-btn:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateX(2px);
}
.report-row-3 .report-btn {
  background: var(--accent-blue);
  color: #fff;
  border-color: transparent;
}
.report-row-3 .report-btn:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateX(2px);
}
@media (max-width: 900px) {
  .report-row {
    flex-direction: column !important;
    gap: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .report-row-preview {
    flex: none;
    width: 100%;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 4px solid var(--accent-blue);
  }
  .report-row-1 .report-row-preview {
    max-height: 480px;
  }
  .report-row-2 .report-row-preview,
  .report-row-3 .report-row-preview {
    max-height: 360px;
  }
  .report-row-2 .report-row-preview {
    border-bottom-color: var(--accent-purple);
  }
  .report-row-3 .report-row-preview {
    border-bottom-color: var(--accent-teal);
  }
  .report-row-1 .report-row-img {
    min-height: 480px;
  }
  .report-row-2 .report-row-img,
  .report-row-3 .report-row-img {
    min-height: 360px;
  }
  .report-row-col-copy {
    padding: 28px;
    border-radius: 0 0 16px 16px;
  }
  .report-row-2 .report-row-col-copy {
    border-radius: 0 0 16px 16px;
  }
  .report-row-3 .report-row-col-copy {
    border-radius: 0 0 16px 16px;
  }
}

/* Report lightboxes */
.report-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  box-sizing: border-box;
}
.report-lightbox:target {
  display: flex;
}
.report-lightbox-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.report-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}
.report-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 1.4rem;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  border: 1px solid rgba(148, 163, 184, 0.4);
}
.report-lightbox-close:hover {
  background: rgba(15, 23, 42, 1);
}

/* Sections — rhythm so each block feels like its own screen (+20–30px breathing room) */
.section {
  padding: 108px 24px;
}
.workflows-page-section {
  background: #f8f6f4;
  background-image: radial-gradient(
      circle at 1px 1px,
      rgba(0, 0, 0, 0.06) 1.5px,
      transparent 0
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 40%);
  background-size: 28px 28px, 100% 100%;
  background-position: 0 0, 0 0;
}
.section-title {
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
  color: var(--text-primary);
  line-height: 1.2;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-body {
  padding: 28px;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-accent {
  height: 3px;
}

/* Buttons — one primary color (blue) for main CTAs; brown only for pricing purchase */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  border: none;
}
.btn-primary,
.btn-primary-cta {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover,
.btn-primary-cta:hover {
  background: #1d4ed8;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* How-to-use specific (all HTML) */
.htu-main {
  background: #f8fafc;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
/* How To Use — hero + timeline (dotted blue line, step rows with bullets + content block) */
.htu-hero {
  min-height: 40vh;
  flex-shrink: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #2d2a4a 0%,
    #1e1c35 50%,
    #12101f 100%
  );
}

.htu-section {
  padding: 72px 24px 96px;
  background: #f6f7f9;
}
.htu-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.htu-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.htu-section-title {
  margin: 0 0 10px;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}
.htu-section-sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Timeline: 3 columns — [number+line] | copy | image */
.htu-timeline {
  display: grid;
  grid-template-columns: 56px 0.65fr 2fr;
  gap: 0 32px;
  align-items: start;
}
.htu-step-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 56px 0.65fr 2fr;
  gap: 0 32px;
  align-items: stretch;
  margin-bottom: 280px;
}
.htu-step-row:last-child {
  margin-bottom: 0;
}

.htu-col-num {
  grid-column: 1;
  min-width: 0;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.htu-row-line {
  flex: 1;
  position: relative;
  min-height: 48px;
  width: 100%;
}
.htu-row-line-dotted {
  position: absolute;
  left: 50%;
  top: 8px;
  right: 0;
  bottom: 0;
  width: 0;
  margin-left: -1px;
  border-left: 2px dotted rgba(37, 99, 235, 0.5);
  pointer-events: none;
}
.htu-row-line-arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid rgba(37, 99, 235, 0.6);
  pointer-events: none;
}
/* Step 1 — light */
.htu-step-row:nth-child(1) .htu-step-num {
  background: #e3eeff;
  color: #1e3a5f;
}
.htu-step-row:nth-child(1) .htu-row-line-dotted {
  border-left-color: #e3eeff;
}
.htu-step-row:nth-child(1) .htu-row-line-arrow {
  border-top-color: #e3eeff;
}
/* Step 2 */
.htu-step-row:nth-child(2) .htu-step-num {
  background: #b8d2ff;
  color: #1e3a5f;
}
.htu-step-row:nth-child(2) .htu-row-line-dotted {
  border-left-color: #b8d2ff;
}
.htu-step-row:nth-child(2) .htu-row-line-arrow {
  border-top-color: #b8d2ff;
}
/* Step 3 */
.htu-step-row:nth-child(3) .htu-step-num {
  background: #7faeff;
  color: #1e3a5f;
}
.htu-step-row:nth-child(3) .htu-row-line-dotted {
  border-left-color: #7faeff;
}
.htu-step-row:nth-child(3) .htu-row-line-arrow {
  border-top-color: #7faeff;
}
/* Step 4 — darkest */
.htu-step-row:nth-child(4) .htu-step-num {
  background: #4d8dff;
  color: #fff;
}
.htu-step-row:nth-child(4) .htu-row-line-dotted {
  border-left-color: #4d8dff;
}
.htu-step-row:nth-child(4) .htu-row-line-arrow {
  border-top-color: #4d8dff;
}
/* Step 5 — same as step 4 */
.htu-step-row:nth-child(5) .htu-step-num {
  background: #4d8dff;
  color: #fff;
}
.htu-step-row:nth-child(5) .htu-row-line-dotted {
  border-left-color: #4d8dff;
}
.htu-step-row:nth-child(5) .htu-row-line-arrow {
  border-top-color: #4d8dff;
}
.htu-step-row:last-child .htu-row-line {
  display: none;
}
.htu-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.htu-col-copy {
  grid-column: 2;
  min-width: 0;
  max-width: 260px;
  padding-top: 2px;
}
.htu-step-title {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}
.htu-step-line {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.htu-step-instruction {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.htu-step-bullets {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.htu-step-bullets li {
  margin-bottom: 6px;
}
.htu-step-bullets li:last-child {
  margin-bottom: 0;
}

.htu-step-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.htu-step-card {
  padding: 16px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.htu-step-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-blue);
}
.htu-step-card .htu-step-bullets {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}
.htu-step-card .htu-step-bullets li {
  margin-bottom: 4px;
}

.htu-step-right {
  min-width: 0;
  overflow: visible;
  position: relative;
  grid-column: 3;
  border-top: 1px solid rgba(37, 99, 235, 0.18);
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  padding-top: 28px;
  padding-bottom: 28px;
}
.htu-step-row:first-child .htu-step-right {
  border-top: none;
  padding-top: 0;
}
.htu-step-img-link {
  display: block;
  cursor: zoom-in;
}
.htu-step-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  transition: transform 0.3s ease;
}
.htu-step-right:hover .htu-step-img {
  transform: scale(1.18);
  position: relative;
  z-index: 2;
}

/* How-to-use lightbox */
.htu-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  box-sizing: border-box;
}
.htu-lightbox:target {
  display: flex;
}
.htu-lightbox-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.htu-lightbox-backdrop .htu-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htu-lightbox-backdrop .htu-lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.htu-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 44px;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  transition: background 0.2s;
}
.htu-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .htu-timeline {
    grid-template-columns: 1fr;
    gap: 0 0;
  }
  .htu-step-row {
    gap: 12px 0;
    margin-bottom: 120px;
  }
  .htu-step-right {
    order: -1;
    grid-column: 1;
    border-top: none;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .htu-step-num {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .htu-step-title {
    font-size: 20px;
  }
}

/* FAQ */
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border-left: 3px solid transparent;
}
.faq-item.faq-blue {
  border-left-color: var(--accent-blue);
}
.faq-item.faq-purple {
  border-left-color: var(--accent-purple);
}
.faq-item.faq-teal {
  border-left-color: var(--accent-teal);
}
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q:hover {
  background: rgba(37, 99, 235, 0.04);
}
.faq-icon {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.faq-a {
  padding: 0 28px;
  margin: 0 16px;
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 8px;
  width: calc(56ch + 56px);
  max-width: calc(100% - 32px);
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  box-sizing: border-box;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.35s ease, border-color 0.3s ease, margin-bottom 0.35s ease;
}
.faq-a strong {
  font-weight: 600;
  color: #1f2937;
}
.faq-a ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
.faq-a li {
  margin-bottom: 6px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 24px 28px;
  border-color: #e9ecef;
  margin-bottom: 16px;
}
.faq-section {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%) !important;
}

/* Testimonials */
.testimonials-section {
  background: #fff;
}
.testimonials-carousel {
  position: relative;
  min-height: 340px;
}
.testimonials-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  min-height: 320px;
}
.testimonials-slide-active {
  display: block;
  opacity: 1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 320px;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonials-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.testimonials-btn:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--accent-blue);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-dot:hover {
  background: #9ca3af;
}
.testimonials-dot-active {
  background: var(--accent-blue);
  transform: scale(1.2);
}
.testimonial-quote {
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: #1a1a1a;
}
/* Make all testimonial cards equal height and align names at the bottom */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-attribution {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-meta {
  min-width: 0;
}
.testimonial-name {
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0;
}
.testimonial-practice {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin: 2px 0 0;
}

/* Grounded section: off-white with subtle texture */
.grounded-section {
  background-color: #f5f4f0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.grounded-grid {
  align-items: center;
  gap: 48px;
}
.grounded-image-wrap {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  background: transparent;
}
@media (max-width: 768px) {
  .grounded-image-wrap {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.grounded-image-link {
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.grounded-image-link .grounded-image {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.grounded-image-link:hover .grounded-image {
  transform: scale(1.08);
}
.grounded-image {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
}
.grounded-copy {
  text-align: left;
}
@media (max-width: 768px) {
  .grounded-copy {
    text-align: center;
  }
}
.grounded-headline {
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.grounded-action {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin: 0 0 16px;
}
.grounded-body {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0 0 24px;
  max-width: 360px;
}
@media (max-width: 768px) {
  .grounded-body {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Brown button (matches Next.js primary) */
.btn-brown {
  background: #6b5344 !important;
  color: #fff !important;
}
.btn-brown:hover {
  background: #5a4639 !important;
}

/* Video section */
.video-section {
  background: #fff;
  padding-top: 24px;
  padding-bottom: 108px;
}
.video-inner {
  max-width: 900px;
  margin: 0 auto;
}
.video-label {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.video-title {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.video-placeholder {
  background: #f5f5f5;
  border-radius: 12px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.video-coming-soon .video-coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #7a94d8;
  color: #fff;
  border-radius: 50%;
  font-size: 1.75rem;
  padding-left: 6px;
  box-shadow: 0 2px 8px rgba(122, 148, 216, 0.35);
}
.video-coming-soon-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* Features section */
.features-section {
  background: #f5f5f6;
  padding-top: 48px;
  padding-bottom: 96px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature-card-small {
  padding: 0;
  min-height: 0;
}
.features-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  margin-top: 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid-3x2 .feature-card-small {
  max-width: none;
  min-height: 0;
}
.feature-card-small .card-body {
  padding: 20px 24px;
}
.feature-card-small .feature-title {
  font-size: 0.9375rem;
  margin: 0 0 6px;
}
.feature-card-small .feature-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .features-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid-3x2 {
    grid-template-columns: 1fr;
  }
}
.features-subheading {
  color: var(--accent-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 8px;
}
.feature-title {
  font-weight: 500;
  margin: 0 0 8px;
}
.feature-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}
.features-more-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 0 auto 0;
}
/* Section divider: horizontal bars + title or button */
.section-divider {
  padding: 171px 24px 30px;
}
.section-divider-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.section-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 20%,
    rgba(0, 0, 0, 0.12) 80%,
    transparent 100%
  );
  min-width: 0;
}
.section-divider-title {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-divider-btn {
  flex-shrink: 0;
  font-size: 1rem;
  padding: 14px 28px;
  background: #7a94d8 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(122, 148, 216, 0.25);
  transition: box-shadow 0.2s, background 0.2s;
}
.section-divider-btn:hover {
  background: #6b85ce !important;
  box-shadow: 0 2px 10px rgba(122, 148, 216, 0.35);
}
.features-more-bar {
  background: #fdfcfb;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(107, 83, 68, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 32px 40px;
  flex: 1 1 280px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 4px solid #6b5344;
  text-align: left;
}
.features-more-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.features-more-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b5344;
}
.features-more-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: #6b5344;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.features-more-unlimited {
  font-size: 2.25rem;
  line-height: 1;
}
.features-more-text {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #475569;
  margin: 0;
  line-height: 1.65;
}
.features-more-any-question {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Pricing */
.pricing-section {
  padding: 64px 24px 96px;
  padding-top: 128px;
  background: #f0f0f0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 0
  );
  background-size: 20px 20px;
  border-top: 1px solid #ddd;
}
.pricing-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.pricing-title {
  flex: 1 1 360px;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  color: #1f2937;
  margin: 0;
}
.pricing-subtitle {
  flex: 0 1 280px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}
.pricing-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-card {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card.featured {
  flex: 1.25 1 0;
  max-width: 400px;
  min-height: 520px;
  background: linear-gradient(165deg, #1e3a5f 0%, #162d4a 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-blue),
    var(--accent-purple),
    var(--accent-teal)
  );
  border-radius: 12px 12px 0 0;
}
@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
    min-height: auto;
  }
}
.pricing-badge {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.pricing-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1f2937;
  margin: 0 0 8px;
}
.pricing-card.featured .pricing-name {
  color: #fff;
  font-size: 1.5rem;
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.pricing-price-row.pricing-price-custom {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1f2937;
}
.pricing-card.featured .pricing-price {
  color: #fff;
  font-size: 2.75rem;
}
.pricing-price-row.pricing-price-custom .pricing-price {
  font-size: 1.25rem;
  font-weight: 400;
}
.pricing-suffix {
  font-size: 1rem;
  color: #4b5563;
}
.pricing-card.featured .pricing-suffix {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px;
}
.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  gap: 8px;
}
.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.pricing-features .check {
  color: #22c55e;
  min-width: 20px;
}
.pricing-card.featured .pricing-features .check {
  color: rgba(255, 255, 255, 0.95);
}
.pricing-cta {
  width: 100%;
  display: block;
  text-align: center;
}
.btn-pricing-featured {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  color: #fff !important;
}
.btn-pricing-featured:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
}

/* Contact CTA */
.contact-cta-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f5f3ff 100%);
  text-align: center;
}
.contact-cta-headline {
  font-weight: 500;
  margin: 0 0 24px;
}

/* Contact page — traditional form + info */
.contact-page-header {
  background: var(--hero-gradient);
  color: #fff;
  text-align: center;
  min-height: 25vh;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-page-header .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-page-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.contact-page-sub {
  font-size: 0.9375rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 2px 0 0;
}
/* First section below the hero — transparent skyline PNG on light background */
.contact-page-banner {
  background: #f8f6f4;
  padding: 40px 24px 32px;
  text-align: center;
  margin-top: 0;
  border-top: 6px solid #f8f6f4;
}
.contact-page-banner-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.contact-page-banner-text {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}
.contact-page-banner-lead {
  font-size: 1.125rem;
  font-weight: 600;
}
.contact-page-content {
  background: #f8f6f4;
  padding: 80px 24px 80px;
  position: relative;
  /* Subtle texture: dot grid + soft gradient */
  background-image: radial-gradient(
      circle at 1px 1px,
      rgba(0, 0, 0, 0.06) 1.5px,
      transparent 0
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 30%),
    linear-gradient(
      15deg,
      transparent 40%,
      rgba(0, 0, 0, 0.02) 50%,
      transparent 60%
    );
  background-size: 32px 32px, 100% 100%, 200% 200%;
  background-position: 0 0, 0 0, 0 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: -4px;
}
.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
}
.contact-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}
.contact-submit {
  align-self: flex-start;
  background: #6f42c1;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-submit:hover {
  background: #5a32a3;
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.35);
}
.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.contact-info-block {
  margin: 0;
}
.contact-info-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-text {
  margin: 0 0 0 0;
  color: var(--text-secondary);
}
.contact-info-meta {
  margin: 0;
}
.contact-info-meta a {
  color: var(--accent-blue);
}
.contact-info-meta a:hover {
  text-decoration: underline;
}

/* Built by Trial Technologists page — burgundy/wine (distinct from main blue, wgd teal, htu purple) */
.btt-hero {
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #4a2520 0%,
    #321a17 50%,
    #1f100e 100%
  );
}
.btt-hero .hero h1 {
  font-size: 2.5rem;
  text-transform: none;
  letter-spacing: -0.02em;
}
.btt-hero .hero-sub {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.125rem;
}
.btt-why {
  padding: 64px 24px 0;
  background: #fff;
}
.btt-why-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.btt-why-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.btt-why-text {
  position: absolute;
  left: 6%;
  top: 10%;
  max-width: 36%;
}
.btt-why h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-primary);
  line-height: 1.15;
}
.btt-why p {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1.0625rem;
  margin: 0 0 16px;
}
@media (max-width: 900px) {
  .btt-why-text {
    position: static;
    max-width: none;
    margin-bottom: 24px;
    padding: 0;
  }
}
.btt-timeline-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.btt-timeline-illus {
  min-height: 220px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.08) 0%,
    rgba(210, 180, 140, 0.15) 50%,
    rgba(37, 99, 235, 0.08) 100%
  );
  border-radius: 12px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.btt-timeline-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 48px;
  border-radius: 12px;
}
.btt-blake {
  padding: 0 24px 64px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.btt-blake-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .btt-blake-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.btt-blake h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.btt-blake-role {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-weight: 500;
}
.btt-blake p {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1.0625rem;
  margin: 0 0 20px;
}
.btt-blake-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  border-radius: 8px;
  object-fit: cover;
  background: #e5e7eb;
}
.btt-proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 16px;
}
.btt-proof-item {
  white-space: nowrap;
}
.btt-proof-divider {
  width: 1px;
  height: 14px;
  background: var(--text-secondary);
  opacity: 0.4;
}
.btt-team {
  padding: 80px 24px 64px;
  background: #f5f2ee;
  position: relative;
  margin-top: 0;
}
.btt-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: #f5f2ee;
  border-radius: 0 0 50% 50% / 0 0 24px 24px;
  transform: translateY(-100%);
}
.btt-team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .btt-team-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.btt-team h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
.btt-team p {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1.0625rem;
  margin: 0 0 16px;
}
.btt-team-who {
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 0.9375rem;
  text-decoration: underline;
}
.btt-team ul {
  margin: 0 0 16px;
  padding-left: 24px;
  line-height: 1.8;
  font-size: 1.0625rem;
  color: var(--text-primary);
}
.btt-team-nodes {
  min-height: 280px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.12) 0%,
    rgba(37, 99, 235, 0.12) 50%,
    rgba(16, 185, 129, 0.12) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.btt-team-nodes-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ========== What Genius Does page ========== */
.wgd-main {
  padding-bottom: 0;
}
.position-relative {
  position: relative;
  z-index: 1;
}

/* What Genius Does — deep teal (distinct from main blue, htu purple, btt burgundy) */
.wgd-hero {
  position: relative;
  min-height: 52vh;
  padding: 64px 24px 72px;
}
.wgd-hero-pattern {
  position: absolute;
  inset: 0;
  background-color: #0c2e26;
  background-image: radial-gradient(
      ellipse 70% 60% at 50% 45%,
      rgba(64, 180, 160, 0.22) 0%,
      rgba(64, 180, 160, 0.06) 30%,
      transparent 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%),
    linear-gradient(rgba(100, 180, 170, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 170, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px, 28px 28px;
  border-radius: 0 0 16px 16px;
}
.wgd-hero .hero-content {
  position: relative;
  z-index: 1;
}
.wgd-hero h1 {
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (min-width: 769px) {
  .wgd-hero h1 {
    font-size: 2.75rem;
  }
}
.wgd-hero .hero-sub {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  font-weight: 500;
}

/* What Genius Does: editorial flow with numbers and payoff card */
.wgd-does {
  background: linear-gradient(180deg, #fafaf9 0%, #f5f4f2 50%, #fafaf9 100%);
  padding: 96px 24px 120px;
  position: relative;
  overflow: hidden;
}
.wgd-does::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 83, 68, 0.15),
    transparent
  );
  pointer-events: none;
}
.wgd-does-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 12px;
  text-align: center;
}
.wgd-does-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 3px;
  color: var(--text-primary);
  text-align: center;
}
.wgd-does-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 56px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.wgd-does-track {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.wgd-does-connector {
  position: absolute;
  bottom: 32px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 58, 237, 0.2) 20%,
    rgba(124, 58, 237, 0.4) 50%,
    rgba(124, 58, 237, 0.2) 80%,
    transparent 100%
  );
  border-radius: 3px;
  z-index: 0;
  pointer-events: none;
}
.wgd-does-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wgd-does-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #6b5344;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}
.wgd-does-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.wgd-does-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}
.wgd-does-card-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 39px;
}
.wgd-does-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 8px;
  display: block;
}
.wgd-does-card-media {
  margin-top: 86px;
  margin-bottom: 18px;
  line-height: 0;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wgd-does-card-media img {
  width: 100%;
  max-width: 100%;
  filter: saturate(0.75) contrast(0.95);
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}
.wgd-does-card:hover .wgd-does-card-media img {
  transform: scale(1.04);
}
.wgd-does-card-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
  text-align: center !important;
}
.wgd-does-card .wgd-does-arrow {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wgd-does-card .wgd-does-arrow img {
  width: 100%;
  max-width: 48px;
  height: auto;
  opacity: 0.5;
}
.wgd-does-card-4 .wgd-does-arrow {
  display: none;
}

@media (max-width: 900px) {
  .wgd-does-track {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .wgd-does-connector {
    left: 50%;
    top: 0;
    bottom: auto;
    width: 3px;
    height: 100%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(124, 58, 237, 0.25) 20%,
      rgba(124, 58, 237, 0.4) 50%,
      rgba(124, 58, 237, 0.25) 80%,
      transparent 100%
    );
  }
  .wgd-does-card {
    max-width: 320px;
    width: 100%;
  }
  .wgd-does-card .wgd-does-arrow {
    position: static;
    transform: rotate(90deg);
    margin-top: -8px;
  }
  .wgd-does-card .wgd-does-arrow img {
    opacity: 0.6;
  }
  .wgd-does-card-4 .wgd-does-arrow {
    display: none;
  }
  .wgd-does {
    padding: 56px 24px 72px;
  }
  .wgd-does-sub {
    margin-bottom: 40px;
  }
}

/* The Genius Engine — split-panel layout (no cards) */
.wgd-engine {
  padding: 96px 24px 96px;
  background-color: #ebe8e4;
  background-image: linear-gradient(
      180deg,
      rgba(245, 243, 240, 0.92) 0%,
      rgba(235, 232, 228, 0.95) 100%
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 100% 100%, 256px 256px;
  background-repeat: repeat, repeat;
}
.wgd-engine-header {
  max-width: 960px;
  margin: 0 auto 0;
}
.wgd-engine-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: left;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.wgd-engine-intro {
  text-align: left;
  max-width: 600px;
  margin: 0 0 48px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.wgd-engine-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto 40px;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.wgd-engine-pane {
  padding: 48px 40px 52px;
  text-align: left;
}
.wgd-engine-pane-left {
  background: linear-gradient(165deg, #e8e2db 0%, #ddd6ce 100%);
}
.wgd-engine-pane-right {
  background: linear-gradient(165deg, #f0ecf8 0%, #e6e0f2 100%);
}
.wgd-engine-pane-inner {
  max-width: 320px;
  margin: 0 auto;
}
.wgd-engine-pane-left .wgd-engine-pane-inner {
  margin-left: 0;
  margin-right: auto;
}
.wgd-engine-pane-right .wgd-engine-pane-inner {
  margin-left: auto;
  margin-right: 0;
}
.wgd-engine-logo {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}
.wgd-engine-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.wgd-engine-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 20px;
  font-weight: 500;
}
.wgd-engine-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wgd-engine-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.55;
}
.wgd-engine-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6b5344;
  font-weight: 700;
  font-size: 1rem;
}
.wgd-engine-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  background: linear-gradient(180deg, #6b5344 0%, #5a4639 100%);
  flex-shrink: 0;
}
.wgd-engine-divider-arrow {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.wgd-engine-outro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.65;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .wgd-engine-split {
    grid-template-columns: 1fr;
  }
  .wgd-engine-divider {
    width: 100%;
    min-height: 48px;
  }
  .wgd-engine-divider-arrow {
    transform: rotate(90deg);
  }
  .wgd-engine-pane {
    padding: 40px 24px 44px;
    text-align: center;
  }
  .wgd-engine-pane-inner {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .wgd-engine-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .wgd-engine {
    padding: 56px 24px 64px;
  }
}

/* Section divider: "what powers Genius" → "what you use" (white bg, thin brown + thicker purple line) */
.wgd-section-divider {
  position: relative;
  width: 100%;
  padding: 72px 24px 64px;
  background: #fff;
  text-align: center;
  border-top: 1px solid rgba(107, 83, 68, 0.12);
  border-bottom: 1px solid #6b5344;
  overflow: visible;
}
.wgd-section-divider::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 100%;
  height: 4px;
  background: var(--accent-purple);
}
/* How it works — above Genius Engine: text then centered down arrow, no separator lines */
.wgd-section-divider.wgd-how-it-works-above {
  border-bottom: 4px solid #6b5344;
  padding: 120px 24px 14px;
}
.wgd-section-divider.wgd-how-it-works-above::after {
  display: none;
}
.wgd-how-it-works-above .wgd-section-divider-line1 {
  margin-bottom: 14px;
}
.wgd-divider-arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  line-height: 0;
}
.wgd-divider-arrow svg {
  display: block;
  margin: 0 auto;
}
.wgd-divider-arrow-down-brown {
  margin-top: 0;
}
/* Lines-only divider: brown line only (no purple); purple line is on "How you use it" section below */
.wgd-section-divider-lines-only {
  padding: 0;
  min-height: 0;
  border-top: none;
}
.wgd-section-divider-lines-only::after {
  display: none;
}
.wgd-section-divider-line1 {
  margin: 0 auto;
  max-width: 960px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b5344;
}

/* How you use it — text and arrow right above the purple line; purple line on bottom only */
.wgd-how-you-use-section {
  background: #fff;
  padding: 120px 24px 14px;
  text-align: center;
  margin-top: 0;
  border-bottom: 4px solid var(--accent-purple);
}
.wgd-how-you-use-heading {
  margin-left: auto;
  margin-right: auto;
}
.wgd-how-you-use-arrow {
  margin-left: auto;
  margin-right: auto;
}
.wgd-how-you-use-heading {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b7355;
}
.wgd-how-you-use-arrow {
  display: block;
  margin: 0 auto;
  line-height: 0;
  color: var(--accent-purple);
}
.wgd-how-you-use-arrow svg {
  display: block;
  margin: 0 auto;
}
.wgd-how-you-use-arrow svg path {
  fill: var(--accent-purple);
}

/* 100+ Prompts — purple/blue gradient, butted to white "how you use it" box; gated as optional */
.wgd-prompts-intro {
  padding: 80px 24px 40px;
  margin-top: 0;
  background: linear-gradient(180deg, #f2f4f7 0%, #eaeef2 50%, #f0f3f7 100%);
}
.wgd-prompts-gate-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 12px;
}
.wgd-prompts-intro .container-sm {
  max-width: 960px;
}
.wgd-prompts-intro-inner {
  text-align: left;
}
.wgd-prompts-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin: 0 0 10px;
}
.wgd-prompts-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 3px;
  color: var(--text-primary);
}
.wgd-prompts-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}
.wgd-prompts-grid-section {
  padding-top: 32px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f1f5f9 0%, #eef2ff 30%, #f8fafc 100%);
}
.wgd-prompts-example-callout {
  margin-bottom: 20px;
  padding: 12px 20px;
  background: rgba(107, 83, 68, 0.08);
  border-left: 4px solid #6b5344;
  border-radius: 0 8px 8px 0;
}
.wgd-prompts-example-callout-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.wgd-prompts-carousel {
  position: relative;
  padding-bottom: 56px;
}
.wgd-prompts-viewport {
  overflow: hidden;
  margin: 0 -12px;
}
.wgd-prompts-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.wgd-prompts-slide {
  flex: 0 0 100%;
  display: flex;
  gap: 24px;
  padding: 0 12px;
  min-width: 0;
  box-sizing: border-box;
}
.wgd-prompts-slide .wgd-prompt-card {
  flex: 1;
  min-width: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wgd-prompts-slide .wgd-prompt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}
@keyframes wgd-card-emphasis {
  0% {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(124, 58, 237, 0.15);
  }
  50% {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12),
      0 0 0 3px rgba(124, 58, 237, 0.08);
  }
  100% {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}
.wgd-prompts-slide.wgd-slide-just-visible .wgd-prompt-card {
  animation: wgd-card-emphasis 1.4s ease-out;
}
.wgd-prompt-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border: none;
  min-height: 200px;
}
.wgd-card-options {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-secondary);
  padding: 0;
  line-height: 1;
}
.wgd-prompt-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.wgd-prompt-card-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.wgd-card-star {
  color: #eab308;
  font-size: 1rem;
}
.wgd-prompt-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 12px;
}
.wgd-prompt-card-usage {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.wgd-prompt-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.08);
  color: #5b21b6;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  margin-right: 6px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .wgd-prompts-slide {
    flex-direction: column;
  }
}
.wgd-prompts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.wgd-prompts-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.wgd-prompts-btn:hover {
  border-color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.06);
  color: var(--accent-purple);
}
.wgd-prompts-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.wgd-prompts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}
.wgd-prompts-dot:hover {
  background: #94a3b8;
}
.wgd-prompts-dot-active {
  background: var(--accent-purple);
  transform: scale(1.25);
}
.wgd-prompts-count {
  text-align: center;
  margin: 16px 0 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Ask Your Case — primary CTA block */
.wgd-ask {
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  padding: 96px 24px 96px;
}
.wgd-ask-inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 40px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .wgd-ask-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wgd-ask-image-wrap {
    order: -1;
  }
  .wgd-ask {
    padding: 56px 24px 64px;
  }
}
.wgd-ask-title {
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: 260px;
}
.wgd-ask-sub {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  max-width: 280px;
}
.wgd-ask-image-wrap {
  text-align: center;
  position: relative;
  background: none;
}
.wgd-ask-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Mid section subtle background */
.wgd-mid {
  min-height: 120px;
  position: relative;
}
.wgd-mid-bg {
  position: absolute;
  inset: 0;
  background: #faf9f7;
  opacity: 0.9;
}
.wgd-mid-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse 80% 50% at 100% 30%,
    rgba(124, 58, 237, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Updated footer: 3 columns (white bg, black text) */
.footer-wgd {
  background: #fff !important;
  color: var(--text-primary);
  margin-top: 0;
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-wgd .footer-wgd-copy {
  color: var(--text-secondary);
  margin-top: 32px;
}
.footer-wgd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-wgd-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-wgd-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.footer-wgd-contact p,
.footer-wgd-demo p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 8px;
}
.footer-wgd-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-wgd-links a {
  color: var(--text-primary);
  font-size: 0.9375rem;
  text-decoration: none;
}
.footer-wgd-links a:hover {
  text-decoration: underline;
}
.footer-wgd-links a.footer-wgd-active {
  color: #16a34a;
  font-weight: 500;
}
.footer-wgd-demo .btn-wgd-demo {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--accent-purple);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.footer-wgd-demo .btn-wgd-demo:hover {
  background: #6d28d9;
}
.footer-wgd-copy {
  font-size: 0.875rem;
  text-align: center;
}

/* =============================================
   PREMIUM ENHANCEMENTS & ANIMATIONS
   ============================================= */

/* Scroll reveal: elements start hidden, then fade up */
.section,
.hero-copy,
.hero-dashboard,
.pricing-card,
.testimonial-card,
.faq-item,
.report-block,
.features-more-bar,
.grounded-grid > *,
.pricing-header {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section.revealed,
.hero-copy.revealed,
.hero-dashboard.revealed,
.pricing-card.revealed,
.testimonial-card.revealed,
.faq-item.revealed,
.report-block.revealed,
.features-more-bar.revealed,
.grounded-grid > .revealed,
.pricing-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance: copy fades up first */
.hero-copy {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  opacity: 1 !important;
  transform: none !important;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-dashboard {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero ambient glow behind dashboard */
.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.08),
    rgba(124, 58, 237, 0.04) 40%,
    transparent 65%
  );
  pointer-events: none;
  animation: heroGlow 3s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from {
    opacity: 0.6;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Button lift effects */
.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary-cta {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.btn-primary-cta:hover {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

/* Pricing card hover effects */
.pricing-card {
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 24px 64px rgba(30, 58, 95, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Pricing CTA hover — featured */
.btn-pricing-featured {
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.25s ease;
}
.btn-pricing-featured:hover {
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px);
}

/* Testimonial card refinements */
.testimonial-card {
  border-top: 3px solid var(--accent-brown) !important;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.7;
}

/* Testimonial carousel refinements */
.testimonials-slide {
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* FAQ refinements */
.faq-item {
  transition: box-shadow 0.3s ease, border-left-color 0.3s ease;
  border-left-width: 4px;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-q {
  transition: background 0.2s ease;
  font-size: 1.0625rem;
}

/* Reports section breathing room refinement */
.reports-section {
  padding-top: 200px;
}
.reports-section-heading {
  font-size: 1.625rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

/* Features section enhancements */
.features-more-bar {
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: 16px;
}
.features-more-bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107, 83, 68, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Section title text refinement */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* Grounded section headline refinement */
.grounded-headline {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.grounded-action {
  font-size: 1.875rem;
  font-weight: 600;
}

/* Video play button pulse */
.video-play-icon {
  animation: playPulse 2.5s ease-in-out infinite;
}
@keyframes playPulse {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(122, 148, 216, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(122, 148, 216, 0.55),
      0 0 0 12px rgba(122, 148, 216, 0.08);
  }
}

/* Footer refinements */
.footer {
  padding: 32px 24px 40px;
}
.footer-trust-row {
  color: rgba(255, 255, 255, 0.45);
}
.footer-trust-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Nav link hover refinement */
.nav a,
.nav button {
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 8px;
}
.nav a:hover,
.nav button:hover {
  background: rgba(59, 130, 246, 0.06);
}

/* Dropdown menu refinement */
.nav-dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Login button refinement */
.btn-login {
  border-radius: 8px !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}
.btn-login:hover {
  transform: translateY(-1px);
}

/* Pricing section background refinement */
.pricing-section {
  background: #f8fafc;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Section divider refinement */
.section-divider-title {
  font-weight: 700;
  letter-spacing: 0.06em;
}
.section-divider-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.08) 80%,
    transparent 100%
  );
}

/* Mobile refinements */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.03em;
  }
  .hero-sub {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .grounded-headline {
    font-size: 1.5rem;
  }
  .grounded-action {
    font-size: 1.375rem;
  }
  .pricing-title {
    font-size: 1.5rem;
  }
  .reports-section {
    padding-top: 120px;
  }
}
