@font-face {
  font-family: "Interdisplay";
  src: url("./assets/InterDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Interdisplay";
  src: url("./assets/InterDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Interdisplay";
  src: url("./assets/InterDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Interdisplay";
  src: url("./assets/InterDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --true-black: #0a0a0a;
  --dark: #030303;
  --card: #0e0e0e;
  --card-soft: #ffffff0d;
  --line: #ffffff1f;
  --line-strong: #ffffff36;
  --text: #ffffff;
  --muted: #ffffff99;
  --dim: #ffffff61;
  --accent: #ffffff;
  --accent-strong: #ffffff;
  --accent-soft: #ffffff24;
  --accent-glow: #ffffff40;
  --radius: 16px;
  --container: 1278px;
}

@property --process-index {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--true-black);
  color: var(--text);
  font-family: "Interdisplay", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, #ffffff1f, transparent 28%),
    radial-gradient(circle at 86% 42%, #ffffff18, transparent 24%),
    radial-gradient(circle at 22% 78%, #ffffff0d, transparent 28%),
    radial-gradient(circle at 50% 54%, #ffffff07, transparent 22%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(110deg, transparent 0 34%, #ffffff21 44%, transparent 54%),
    radial-gradient(ellipse at 50% 0%, #ffffff1f, transparent 42%),
    #050505b8;
  transform: translateX(-8%);
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.nav-transition::after {
  opacity: 1;
  transform: translateX(0);
}

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

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

.page {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 10%, #ffffff10, transparent 36%),
    radial-gradient(ellipse at 82% 34%, #ffffff0b, transparent 38%),
    #0a0a0a;
  animation: pageArrive 520ms ease both;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -8%, #ffffff1c, transparent 42%),
    radial-gradient(ellipse at 8% 62%, #ffffff0e, transparent 34%),
    radial-gradient(ellipse at 94% 78%, #ffffff0b, transparent 38%);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  position: relative;
}

.container.narrow {
  max-width: 960px;
}

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

.section-pad {
  position: relative;
  padding: 100px 0;
}

.section-bg {
  position: absolute;
  inset: auto 0 0;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, #ffffff26 0%, #ffffff0c 24%, transparent 58%),
    linear-gradient(90deg, transparent, #ffffff1c 50%, transparent);
  opacity: 0.68;
}

.section-bg.large {
  height: 920px;
}

.section-line {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  opacity: 0.56;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.hero-shell {
  min-height: 820px;
  position: relative;
}

.navbar {
  position: relative;
  z-index: 5;
  padding: 16px 20px;
}

.nav-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand-mark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #ffffff5f) drop-shadow(0 6px 10px #0000004f);
}

.nav-menu {
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  color: #fff;
  transition:
    color 160ms ease,
    text-shadow 180ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0;
  box-shadow: 0 0 14px #ffffff75;
  transition:
    left 220ms ease,
    right 220ms ease,
    opacity 220ms ease;
}

.nav-menu a:hover {
  color: var(--muted);
}

.nav-menu a.active,
.nav-menu a.is-clicked {
  color: #fff;
  text-shadow: 0 0 18px #ffffff52;
}

.nav-menu a.active::after,
.nav-menu a:hover::after,
.nav-menu a.is-clicked::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.nav-actions {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #050505;
  background: #fff;
  box-shadow: 0 12px 30px #0000004d, inset 0 1px 0 #ffffff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta.is-clicked {
  background: #f2f2f2;
  box-shadow: 0 16px 38px #00000066, 0 0 24px #ffffff24;
  transform: translateY(-1px);
}

.nav-cta::after {
  content: none;
}

.mobile-menu-toggle,
.mobile-nav-menu {
  display: none;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  background: #ffffff0f;
  box-shadow: inset 0 1px 0 #ffffff14, 0 14px 34px #00000052;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 10px #ffffff45;
  transition: transform 220ms ease;
}

.mobile-menu-toggle span:first-child {
  transform: translateY(-4px);
}

.mobile-menu-toggle span:last-child {
  transform: translateY(4px);
}

.mobile-menu-toggle[aria-expanded="true"] {
  border-color: #ffffff3d;
  background: #ffffff18;
  box-shadow: inset 0 1px 0 #ffffff1f, 0 18px 42px #00000066;
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(232px, calc(100vw - 40px));
  padding: 8px;
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  background:
    linear-gradient(145deg, #ffffff14, #ffffff08 42%, #ffffff0d),
    #050505f5;
  box-shadow: inset 0 1px 0 #ffffff14, 0 26px 70px #000000b3;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 11px;
  color: #ffffffb8;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #fff;
  background: #ffffff12;
  transform: translateX(2px);
}

.nav-actions.menu-open .mobile-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.inner-page {
  min-height: 100vh;
  background: #050505;
}

.inner-page .navbar {
  background: linear-gradient(#050505d9, #05050599 75%, transparent);
}

.inner-video-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 820px;
  pointer-events: none;
  overflow: hidden;
}

.inner-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(1) contrast(1.08);
}

.inner-video-bg div {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 18%, #ffffff1f, transparent 36%),
    radial-gradient(ellipse at 50% 24%, #0000000f, #0505059c 62%, #050505 100%),
    linear-gradient(#05050533, #050505 92%);
}

.hero {
  position: absolute;
  inset: 0;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 92px;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#0000004d, #0000001c 34%, #0a0a0a 92%),
    radial-gradient(ellipse at 50% 25%, transparent 0%, #00000078 75%);
}

.hero-content {
  z-index: 2;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-top: -128px;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  font-size: 62px;
  line-height: 70px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero .subcopy,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  max-width: 560px;
}

.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: #000;
}

.primary-button {
  padding: 18px 40px;
  border: 1px solid #ffffff3d;
  box-shadow:
    0 0 0 0.75px #0000008f,
    0 3px 6px #00000030,
    0 10px 10px #0000001f,
    0 23px 14px #00000014,
    0 40px 24px #0000000f,
    inset 0 0.25px 0.25px #ffffff52,
    inset 0 0.75px 0.25px #ffffff1f,
    inset 0 4px 16px #ffffff29,
    inset 0 -12px 16px #ffffff0f;
}

.hero .primary-button {
  min-width: 190px;
  justify-content: center;
  text-align: center;
}

.secondary-button {
  padding: 14px 30px;
  border: 1px solid var(--line);
  background: #ffffff1f;
  box-shadow: inset 0 2px 12px #ffffff0f;
}

.secondary-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.primary-button::after {
  content: none;
}

.brand-ribbon {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 0;
  right: 0;
  text-align: center;
}

.brand-ribbon p {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff8f;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px solid #ffffff24;
  text-shadow: 0 0 16px #ffffff18;
}

.brand-ribbon p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.44;
}

.logo-track {
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff66;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-loop {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoLoopRight 30s linear infinite;
  will-change: transform;
}

.logo-set {
  flex: none;
  display: flex;
  align-items: center;
  gap: 54px;
  min-width: max-content;
  padding-right: 54px;
}

.logo-wordmark {
  flex: none;
  min-width: max-content;
  color: #ffffff73;
  font-size: 18px;
  line-height: 24px;
  font-weight: 750;
  white-space: nowrap;
  text-shadow: 0 0 18px #ffffff12;
}

.logo-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-style: italic;
}

.logo-mono {
  font-family: "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
}

.logo-wide {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo-light {
  font-weight: 500;
}

@keyframes logoLoopRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.hero-metrics {
  width: min(100%, 660px);
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  perspective: 900px;
}

.metric {
  min-width: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.metric span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0;
  max-width: 150px;
}

.metric strong {
  position: relative;
  display: inline-block;
  min-width: 86px;
  color: #fff;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px #ffffff3d;
  transform-origin: 50% 54%;
  will-change: transform, opacity;
}

.metric strong.is-complete::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.7;
  box-shadow: 0 0 14px #ffffff8c;
}

.metric-rule {
  width: 1px;
  background: linear-gradient(transparent, #fff, transparent);
  opacity: 0.44;
}

.round-badge {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, #ffffff3d, transparent 32%),
    #ffffff0d;
  box-shadow: inset 0 4px 16px #ffffff18, 0 8px 16px #00000052;
  color: #fff;
  font-weight: 600;
}

.intro-copy {
  max-width: 700px;
  margin-top: 40px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0;
}

.about .secondary-button {
  margin-top: 40px;
}

.stats-row {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

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

.stat-kicker {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
}

.stat strong {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}

.divider {
  width: 2px;
  flex: none;
  background: linear-gradient(transparent, #fff, transparent);
  opacity: 0.64;
}

.section-heading {
  max-width: 638px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.section-heading.compact {
  max-width: 480px;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 50px;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.work-grid,
.choose-grid,
.price-grid {
  margin-top: 56px;
}

.glass-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(#202020b3, #000),
    #0a0a0a;
  border: 1px solid #ffffff16;
  box-shadow: inset 0 1px 0 #ffffff14;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(#ffffff2e, #ffffff08 36%, transparent);
  opacity: 0.18;
}

.work-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.work-card h3,
.feature-card h3,
.choose-card h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.work-card p,
.feature-card p,
.choose-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.mini-ui {
  width: 100%;
  height: 148px;
  position: relative;
  display: grid;
  place-items: center;
}

.mini-ui-left,
.mini-ui-center {
  border-radius: 10px;
  background: linear-gradient(#191919, #060606);
  border: 1px solid #ffffff12;
}

.mini-ui-left span,
.mini-ui-center span {
  display: block;
  width: 62%;
  height: 8px;
  border-radius: 999px;
  background: #ffffff24;
  margin: 5px auto;
}

.mini-ui-left i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 12px 9px 0;
  border-radius: 50%;
  background: #ffffff63;
}

.mini-ui-center strong {
  display: block;
  width: 46%;
  height: 24px;
  border-radius: 999px;
  background: #ffffff1f;
  border: 1px solid #ffffff1f;
}

.mini-ui-dots {
  grid-template-columns: repeat(3, 34px);
  grid-template-rows: repeat(3, 34px);
  gap: 8px;
}

.mini-ui-dots span {
  width: 10px;
  height: 10px;
  place-self: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px #ffffff80;
}

.mini-ui-dots span:nth-child(1) {
  grid-area: 1 / 2;
}

.mini-ui-dots span:nth-child(2) {
  grid-area: 2 / 1;
}

.mini-ui-dots span:nth-child(3) {
  grid-area: 2 / 3;
}

.mini-ui-dots span:nth-child(4) {
  grid-area: 3 / 2;
}

.mini-ui-dots span:nth-child(5) {
  grid-area: 2 / 2;
  opacity: 0.4;
}

.feature-mosaic {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  grid-auto-rows: minmax(407px, auto);
  gap: 24px;
}

.simple-feature-grid {
  margin-top: 56px;
}

.simple-feature-grid .feature-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.simple-feature-grid .image-placeholder {
  min-height: 150px;
  margin-bottom: 22px;
}

.feature-card {
  min-height: 260px;
}

.feature-tall {
  grid-row: span 2;
}

.feature-wide {
  grid-column: span 2;
}

.feature-chip {
  min-height: 232px;
}

.feature-orb {
  min-height: 232px;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px dashed #ffffff38;
  border-radius: 12px;
  color: #ffffff87;
  background:
    linear-gradient(135deg, transparent 0 48%, #ffffff12 49% 51%, transparent 52%),
    radial-gradient(circle at 50% 50%, #ffffff14, transparent 55%),
    #ffffff0a;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
}

.large-placeholder {
  min-height: 270px;
  margin-bottom: 26px;
}

.workflow-placeholder {
  min-height: 158px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding-right: 48px;
}

.workflow-core {
  position: absolute;
  left: 42%;
  top: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff16;
  border: 1px solid #ffffff2e;
  box-shadow: 0 0 60px #ffffff20;
}

.workflow-placeholder span:not(.workflow-core) {
  width: 260px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff10;
  border: 1px solid #ffffff1f;
}

.small-chip {
  display: inline-flex;
  min-width: 120px;
  height: 48px;
  margin: 0 8px 18px 0;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #ffffff1f;
  background: #ffffff12;
  color: var(--muted);
  font-size: 14px;
}

.orb-placeholder {
  min-height: 132px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.choose-card {
  min-height: 236px;
}

.choose {
  padding-top: 85px;
  padding-bottom: 85px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 60px;
  background: #ffffff13;
  border: 1px solid #ffffff1f;
  box-shadow: 0 8px 16px #00000052;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.integrations {
  padding-bottom: 120px;
}

.integration-cloud {
  margin-top: 80px;
  min-height: 527px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 17%, #000 83%, transparent);
}

.integration-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.integration-row span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  color: #ffffff8a;
  font-size: 14px;
  font-weight: 600;
  background:
    linear-gradient(#202020a8, #050505),
    #111;
  border: 1px solid #ffffff17;
  box-shadow: inset 0 1px 0 #ffffff14, 0 8px 16px #00000029;
}

.integration-row .main-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle, #ffffff30, transparent 52%),
    #111;
}

.story-spacer {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 887px;
}

.story-placeholder {
  margin: 100px auto 0;
  width: min(100%, 980px);
  height: 460px;
  border-radius: 24px;
  border: 1px dashed #ffffff17;
  display: grid;
  place-items: center;
  color: #ffffff24;
  text-transform: uppercase;
  background:
    radial-gradient(ellipse at 50% 100%, #ffffff0d, transparent 58%),
    #050505;
  opacity: 0.36;
}

.testimonials {
  padding-top: 52px;
  padding-bottom: 100px;
}

.testimonial-board {
  margin-top: 80px;
  position: relative;
  height: 764px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: hidden;
}

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

.testimonial-column.offset {
  padding-top: 72px;
}

.testimonial-card {
  min-height: 196px;
  padding: 24px;
  border-radius: 16px;
  background:
    linear-gradient(#2020209c, #000000cc),
    #0a0a0a;
  border: 1px solid #ffffff14;
  box-shadow: inset 0 1px 0 #ffffff0d;
}

.testimonial-card p {
  color: #ffffff8f;
  font-size: 22px;
  line-height: 32px;
}

.testimonial-card div {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: center;
}

.avatar {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #ffffffa8 0 10%, transparent 11%),
    radial-gradient(circle at 50% 78%, #ffffff80 0 22%, transparent 23%),
    #ffffff29;
  filter: grayscale(1);
}

.testimonial-card strong {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.testimonial-card small {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.fade-cover {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(#0a0a0ae8, #0a0a0ac2 9%, transparent 49%, #0a0a0a94 78%, #0a0a0adb);
}

.pricing {
  padding-top: 100px;
}

.price-card {
  position: relative;
  min-height: 550px;
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(#202020b3, #000),
    #0a0a0a;
  border: 1px solid #ffffff17;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  background: #0a0a0a;
  border: 1px solid #ffffff14;
  z-index: 0;
}

.featured-price::before {
  background: #00000099;
}

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

.price-kicker {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  margin: 24px 24px 12px;
}

.price-card h3 {
  margin: 0 24px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}

.price-card p {
  margin: 16px 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.price-card ul {
  margin: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card li {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.price-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--muted);
}

.price-card a {
  display: flex;
  justify-content: center;
  margin: 0 8px 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #000;
  border: 1px solid #ffffff29;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  box-shadow: inset 0 4px 16px #ffffff1c;
}

.compare {
  padding-top: 180px;
  padding-bottom: 276px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.compare-card {
  padding: 32px;
  border-radius: 16px;
  background:
    linear-gradient(#202020b3, #000),
    #0a0a0a;
  border: 1px solid #ffffff17;
}

.compare-card.muted {
  opacity: 0.68;
}

.compare-card ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-card li {
  padding: 22px 0;
  border-bottom: 1px solid #ffffff29;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.compare-card li::before {
  content: "+";
  margin-right: 12px;
  color: var(--muted);
}

.compare-card.muted li::before {
  content: "-";
}

.faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

.faq-wrap {
  max-width: 1020px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff0d;
  color: #fff;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--muted);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.blog-strip {
  padding-top: 300px;
  padding-bottom: 455px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-grid article {
  min-height: 210px;
  color: #fff;
}

.blog-image {
  min-height: 96px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.blog-grid p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.blog-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
}

.final-cta {
  padding-top: 100px;
  padding-bottom: 120px;
}

.final-cta .container {
  max-width: 554px;
  gap: 20px;
}

.final-cta h2 {
  font-size: 42px;
  line-height: 50px;
}

.automation-process {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: visible;
  background: linear-gradient(#080808, #030303 82%);
  --process-index: 0;
  transition: --process-index 920ms cubic-bezier(0.18, 0.95, 0.14, 1);
}

.automation-process > .section-bg {
  display: none;
}

.process-shell {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: 42px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-heading {
  width: 100%;
  margin-bottom: 26px;
}

.process-heading h2,
.services-showcase .section-heading h2 {
  font-size: 32px;
  line-height: 40px;
}

.process-heading p {
  max-width: 620px;
  margin: 10px auto 0;
  color: #ffffff9e;
  font-size: 15px;
  line-height: 23px;
}

.process-stage {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 200px) minmax(440px, 560px) minmax(240px, 300px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.4vw, 50px);
}

.process-tabs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-tabs button {
  cursor: pointer;
  position: relative;
  border: 0;
  padding: 0 0 0 18px;
  color: #ffffff45;
  background: transparent;
  font: inherit;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  text-align: left;
  transition: color 220ms ease, transform 220ms ease;
}

.process-tabs button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  opacity: 0;
  transform: scaleY(0.4);
  box-shadow: 0 0 18px #ffffff8a;
  transition: opacity 220ms ease, transform 220ms ease;
}

.process-tabs button:hover,
.process-tabs button.active {
  color: #fff;
  transform: translateX(2px);
}

.process-tabs button.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.process-visual {
  position: relative;
  height: min(58vh, 520px);
  min-height: 430px;
  border-radius: 18px;
  isolation: isolate;
  overflow: hidden;
}

.process-visual::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid #ffffff18;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff16, transparent 42%),
    #ffffff08;
}

.process-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff22;
  border-radius: 18px;
  object-fit: cover;
  opacity: 0.16;
  transform: translateY(calc((var(--image-index) - var(--process-index)) * 88%)) scale(0.9);
  filter: saturate(1.02) contrast(1.04) brightness(0.9);
  box-shadow: 0 32px 90px #00000080;
  transition:
    opacity 640ms ease,
    transform 920ms cubic-bezier(0.18, 0.95, 0.14, 1),
    filter 720ms ease;
}

.process-visual img:nth-child(1) {
  --image-index: 0;
}

.process-visual img:nth-child(2) {
  --image-index: 1;
}

.process-visual img:nth-child(3) {
  --image-index: 2;
}

.process-visual img:nth-child(4) {
  --image-index: 3;
}

.process-visual img.active {
  opacity: 1;
  transform: translateY(calc((var(--image-index) - var(--process-index)) * 88%)) scale(1);
  filter: saturate(1.04) contrast(1.05) brightness(1);
}

.process-copy {
  position: relative;
  height: min(58vh, 520px);
  min-height: 430px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.process-copy article {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(calc((var(--copy-index) - var(--process-index)) * 88%));
  pointer-events: none;
  transition:
    opacity 640ms ease,
    transform 920ms cubic-bezier(0.18, 0.95, 0.14, 1);
}

.process-copy article:nth-child(1) {
  --copy-index: 0;
}

.process-copy article:nth-child(2) {
  --copy-index: 1;
}

.process-copy article:nth-child(3) {
  --copy-index: 2;
}

.process-copy article:nth-child(4) {
  --copy-index: 3;
}

.process-copy article.active {
  opacity: 1;
  transform: translateY(calc((var(--copy-index) - var(--process-index)) * 88%));
  pointer-events: auto;
}

.process-copy span {
  color: #fff;
  font-size: 17px;
  line-height: 23px;
  font-weight: 800;
  opacity: 0.72;
}

.process-copy h3 {
  margin-top: 12px;
  font-size: 25px;
  line-height: 31px;
  font-weight: 700;
}

.process-copy p {
  margin-top: 16px;
  color: #ffffffa3;
  font-size: 15px;
  line-height: 24px;
}

.services-showcase {
  min-height: calc(100svh - 84px);
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    radial-gradient(ellipse at 50% 0%, #ffffff0b, transparent 35%),
    #030303;
}

.services-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.service-tile {
  min-height: 336px;
  height: 336px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  background:
    linear-gradient(145deg, #ffffff12, #ffffff06 42%, #ffffff09),
    #090909;
  overflow: hidden;
  box-shadow: inset 0 1px 0 #ffffff10;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-tile:hover {
  border-color: #ffffff32;
  box-shadow: inset 0 1px 0 #ffffff18, 0 24px 70px #00000066;
  transform: translateY(-4px);
}

.service-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
  border-bottom: 1px solid #ffffff12;
  filter: saturate(1.02) contrast(1.04) brightness(0.92);
  transition: transform 420ms ease, filter 420ms ease;
}

.service-tile:hover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.06) brightness(1);
}

.service-tile div {
  flex: 1;
  padding: 18px;
}

.service-tile h3 {
  font-size: 19px;
  line-height: 26px;
  font-weight: 700;
}

.service-tile p {
  margin-top: 8px;
  color: #ffffff9c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.booking-panel {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #030303;
}

.booking-panel > .section-bg {
  display: none;
}

.booking-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(1) contrast(1.16) brightness(0.82);
}

.booking-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 32%, transparent, #030303a3 68%, #030303 100%),
    linear-gradient(#0303035c, #030303 96%);
}

.booking-shell {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.booking-shell h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.04;
  font-weight: 700;
}

.booking-shell p {
  max-width: 560px;
  color: #ffffffa3;
  font-size: 18px;
  line-height: 29px;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  color: #0a0a0a;
  background: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 800;
  box-shadow: 0 18px 45px #00000066, inset 0 1px 0 #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.booking-button:hover {
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 0 28px #ffffff38, 0 18px 45px #00000066;
  transform: translateY(-2px);
}

.booking-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #030303;
}

.booking-page-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(1) contrast(1.16) brightness(0.72);
}

.booking-page-shade {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 22%, transparent, #030303ad 64%, #030303 100%),
    linear-gradient(#03030361, #030303 96%);
}

.booking-main {
  position: relative;
  z-index: 1;
}

.booking-embed-section {
  min-height: calc(100svh - 74px);
  padding: 70px 0 88px;
}

.booking-embed-shell {
  max-width: 1040px;
}

.booking-embed-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 auto 38px;
  text-align: center;
}

.booking-embed-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.booking-embed-copy p {
  max-width: 610px;
  color: #ffffffad;
  font-size: 17px;
  line-height: 27px;
}

.booking-detail-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.booking-detail-list span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #ffffff1c;
  border-radius: 999px;
  background: #ffffff09;
  color: #ffffffe0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.booking-detail-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #ffffff80;
}

.booking-calendar-frame {
  width: 100%;
  min-height: 760px;
  overflow: visible;
  border: 1px solid #ffffff1f;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 32px 110px #00000099, 0 0 0 1px #ffffff0a;
  isolation: isolate;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 760px;
  min-height: 760px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}

.lightning-page {
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #020202;
}

.lightning-page .navbar {
  background: linear-gradient(#020202e0, #0202028f 78%, transparent);
}

.lightning-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: grayscale(1) contrast(1.22) brightness(0.68);
}

.lightning-shade {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 33%, #ffffff0c 33% 33.1%, transparent 33.1% 66%, #ffffff0c 66% 66.1%, transparent 66.1%),
    radial-gradient(ellipse at 50% 18%, #ffffff14, transparent 35%),
    radial-gradient(ellipse at 50% 72%, #ffffff0e, transparent 44%),
    linear-gradient(#02020263, #020202f2 86%, #020202 100%);
  pointer-events: none;
}

.about-main,
.pricing-main {
  position: relative;
  z-index: 1;
}

.about-onepage {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 18px 0 42px;
}

.about-image-placeholder {
  height: clamp(540px, 72svh, 680px);
  margin: 0;
  border: 1px solid #ffffff18;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #ffffff10, transparent 32%),
    radial-gradient(circle at 50% 18%, #ffffff14, transparent 42%),
    linear-gradient(#111, #030303);
  box-shadow: inset 0 1px 0 #ffffff12, 0 24px 80px #00000066;
  overflow: hidden;
}

.about-image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(0.9);
}

.about-copy {
  height: clamp(540px, 72svh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid #ffffff16;
  border-radius: 10px;
  background:
    linear-gradient(120deg, #ffffff12, #ffffff05 36%, #ffffff0d),
    #080808d9;
  box-shadow: inset 0 1px 0 #ffffff10, 0 24px 80px #00000066;
}

.about-copy h1 {
  max-width: 560px;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.about-copy p {
  max-width: 620px;
  margin-top: 14px;
  color: #ffffffa6;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.48;
  font-weight: 500;
}

.about-impact-copy {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.about-impact-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.45vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.about-impact-copy p {
  margin-top: 18px;
  color: #ffffffa0;
  font-size: clamp(14px, 1.04vw, 17px);
  line-height: 1.6;
}

.pricing-section {
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 0 18px;
}

.pricing-heading {
  max-width: 650px;
  margin: 0 auto 34px;
  text-align: center;
}

.pricing-heading h1 {
  font-family: inherit;
  font-size: clamp(42px, 4.35vw, 62px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #ffffff99;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  min-height: 418px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #ffffff15;
  border-radius: 12px;
  background: #030303de;
  box-shadow: inset 0 1px 0 #ffffff0b, 0 24px 80px #00000070;
}

.pricing-card-side {
  min-height: 402px;
  margin: 10px 0;
  padding: 20px;
}

.pricing-card-featured {
  position: relative;
  border-color: #d9d9d97a;
  background:
    radial-gradient(ellipse at 52% 100%, #d8d8d838, transparent 42%),
    linear-gradient(100deg, #efefef2b, #10100f 20%, #12110f 76%, #9b9b9b18),
    #080807;
  box-shadow:
    inset 0 1px 0 #ffffff22,
    0 0 0 1px #ffffff12,
    0 28px 90px #00000082,
    0 0 44px #f1f1f11a;
}

.pricing-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px #ffffff33);
}

.pricing-card h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.pricing-card-side h2 {
  font-size: 23px;
  line-height: 29px;
}

.pricing-description,
.pricing-billing {
  color: #ffffff92;
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
}

.pricing-description {
  margin-top: 8px;
}

.pricing-price {
  margin-top: 18px;
  color: #fff;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-card-side .pricing-price {
  font-size: 30px;
  line-height: 36px;
}

.pricing-price span {
  font-size: 28px;
}

.pricing-billing {
  margin-top: 6px;
}

.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin: 28px 0 22px;
  border-radius: 999px;
  color: #050505;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  box-shadow: 0 16px 36px #00000066;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pricing-button:hover {
  transform: translateY(-1px);
}

.pricing-button-light {
  background: #f8f8f8;
  box-shadow: inset 0 1px 0 #fff, 0 16px 36px #00000066;
}

.pricing-button-silver {
  background: linear-gradient(180deg, #ffffff, #d7d7d7 42%, #9f9f9f 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -12px 18px #6f6f6f24,
    0 0 26px #ffffff35,
    0 16px 36px #00000070;
}

.pricing-card h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.pricing-card li {
  position: relative;
  padding-left: 32px;
  color: #ffffff94;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(45deg, transparent 38%, #f8f8f8 38% 62%, transparent 62%),
    linear-gradient(135deg, transparent 38%, #bdbdbd 38% 62%, transparent 62%);
  clip-path: polygon(50% 0, 61% 24%, 87% 13%, 76% 39%, 100% 50%, 76% 61%, 87% 87%, 61% 76%, 50% 100%, 39% 76%, 13% 87%, 24% 61%, 0 50%, 24% 39%, 13% 13%, 39% 24%);
  filter: drop-shadow(0 0 8px #ffffff62);
}

@media (min-width: 992px) and (max-height: 780px) {
  .pricing-section {
    transform: scale(0.84);
    transform-origin: center;
  }
}

.reveal,
.stagger > *,
.founder-card,
.case-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.stagger > *.is-visible,
.founder-card.is-visible,
.case-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-title {
  max-width: 840px;
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0;
}

.page-title p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.page-eyebrow,
.faq-aside-label {
  color: #ffffff8f;
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founders {
  padding-top: 12px;
  padding-bottom: 14px;
  min-height: calc(100svh - 72px);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.founder-card {
  padding: 16px;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff1f, transparent 36%),
    linear-gradient(#181818, #050505 72%);
  box-shadow: inset 0 1px 0 #ffffff10;
}

.founder-card:hover {
  border-color: #ffffff30;
  box-shadow: inset 0 1px 0 #ffffff18, 0 24px 80px #00000066;
  transform: translateY(-4px);
}

.founder-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at 50% 35%, #ffffff12, transparent 56%),
    #080808;
  box-shadow: 0 18px 44px #00000066;
}

.founder-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.founder-meta h2 {
  margin: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.founder-meta span {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.founder-card p {
  margin-top: 10px;
  color: #ffffff9c;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

.linkedin-button {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  color: #0a0a0a;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 12px 30px #00000066, 0 0 24px #ffffff24;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.linkedin-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px #00000080, 0 0 32px #ffffff30;
}

.faq-page {
  padding-top: 88px;
  padding-bottom: 110px;
  min-height: calc(100vh - 64px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-page .page-title {
  max-width: 920px;
  margin-bottom: 70px;
  gap: 17px;
}

.faq-page .page-title h1 {
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.faq-page .page-title p {
  max-width: 650px;
  color: #ffffffa8;
  font-size: 18px;
  line-height: 29px;
}

.faq-aside {
  position: sticky;
  top: 88px;
  padding: 4px 0 0;
}

.faq-aside h2 {
  max-width: 360px;
  margin: 16px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.faq-aside p {
  max-width: 360px;
  margin: 18px 0 24px;
  color: #ffffff99;
  font-size: 16px;
  line-height: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff59;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  transition: gap 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  gap: 14px;
  border-color: #fff;
}

.faq-page .faq-wrap {
  margin-top: 0;
  gap: 0;
  border-top: 1px solid #ffffff24;
}

.faq-page details {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #ffffff24;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 180ms ease;
}

.faq-page details:hover,
.faq-page details[open] {
  background: #ffffff08;
  transform: none;
}

.faq-page summary {
  gap: 24px;
  padding: 24px 10px 24px 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}

.faq-page summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #ffffff94;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease;
}

.faq-page details[open] summary::after {
  color: #fff;
  transform: rotate(45deg);
}

.faq-page details p {
  max-width: 670px;
  padding: 0 54px 26px 0;
  color: #ffffff9c;
  font-size: 16px;
  line-height: 26px;
}

.faq-schedule {
  max-width: 1040px;
  margin: 128px auto 0;
  scroll-margin-top: 32px;
}

.faq-schedule-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 32px;
}

.faq-schedule-heading h2 {
  max-width: 650px;
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.faq-schedule-heading p {
  padding-bottom: 4px;
  color: #ffffff9c;
  font-size: 16px;
  line-height: 26px;
}

.case-scroll {
  position: relative;
  min-height: 100vh;
  padding-top: 18px;
  padding-bottom: 54px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 8%, #ffffff12, transparent 32%),
    radial-gradient(ellipse at 82% 58%, #ffffff0a, transparent 34%),
    linear-gradient(180deg, #050505 0%, #080808 46%, #030303 100%);
}

.case-scroll::before,
.case-scroll::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.case-scroll::before {
  content: none;
}

.case-scroll::after {
  inset: auto 0 0;
  height: 460px;
  background: radial-gradient(ellipse at 50% 100%, #ffffff0d, transparent 60%);
  opacity: 0.5;
}

.case-intro {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  scroll-snap-align: start;
  z-index: 1;
}

.case-intro span,
.case-copy > span {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 0 18px #ffffff8c;
}

.case-intro h1 {
  margin-top: 14px;
  max-width: 760px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 0 34px #ffffff1a;
}

.case-intro p {
  max-width: 560px;
  margin-top: 18px;
  color: #ffffffb0;
  font-size: 16px;
  line-height: 26px;
}

.case-progress {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.case-progress span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  color: #ffffff8a;
  background: #0b0b0bbd;
  backdrop-filter: blur(12px);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  box-shadow: inset 0 1px 0 #ffffff18, 0 0 28px #ffffff1c;
}

.case-panel {
  width: min(100% - 72px, 1180px);
  min-height: auto;
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: stretch;
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
}

.case-panel::before {
  content: none;
}

.case-panel-right::before {
  inset: auto auto 12% -8%;
}

@supports selector(body:has(.case-scroll)) {
  body:has(.case-scroll) {
    scroll-snap-type: y proximity;
  }
}

.case-panel-right {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.case-panel-right .case-visual {
  order: 2;
}

.case-panel-right .case-copy {
  order: 1;
}

.case-visual {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  min-height: 500px;
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid #ffffff24;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #ffffff12, #ffffff05 48%, #ffffff0b);
  box-shadow: 0 28px 80px #00000070;
  transform: none;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-panel-right .case-visual::before {
  transform: none;
}

.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ffffff2b;
  box-shadow:
    0 34px 95px #00000080,
    inset 0 1px 0 #ffffff1a;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.case-visual-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border: 1px solid #ffffff33;
  border-radius: 999px;
  color: #fff;
  background: #0b0b0bd9;
  backdrop-filter: blur(14px);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  box-shadow: 0 18px 40px #00000066;
}

.case-panel:hover .case-visual::before {
  transform: rotate(0deg) scale(1.015);
}

.case-panel:hover .case-visual img {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.04);
}

.case-copy {
  max-width: none;
  min-height: 500px;
  padding: clamp(24px, 3.4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ffffff10, #ffffff05 42%, transparent),
    #080808;
  box-shadow: inset 0 1px 0 #ffffff10, 0 28px 90px #00000066;
}

.case-copy h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.04;
  font-weight: 700;
}

.case-copy h3 {
  margin: 14px 0 0;
  color: #ffffffd9;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 500;
}

.case-copy p {
  margin-top: 16px;
  color: #ffffffa3;
  font-size: 15px;
  line-height: 25px;
}

.case-metrics {
  margin-top: 24px;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.case-metrics div {
  padding: 14px;
  border: 1px solid #ffffff17;
  border-radius: 10px;
  background: #ffffff0a;
}

.case-metrics strong {
  display: block;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 24px #ffffff3d;
}

.case-metrics span {
  display: block;
  margin-top: 6px;
  color: #ffffff8f;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

@supports (animation-timeline: view()) {
  .case-visual {
    animation: caseVisualDrift both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 52%;
  }

  .case-copy {
    animation: caseCopyDrift both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 46%;
  }
}

@keyframes caseVisualDrift {
  from {
    opacity: 0.5;
    transform: translateY(52px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes caseCopyDrift {
  from {
    opacity: 0.55;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageArrive {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .stagger > *,
  .founder-card,
  .case-card,
  .case-panel,
  .case-visual,
  .case-copy,
  .page {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .metric strong {
    transform: none;
  }

  .logo-loop {
    animation: none;
  }
}

.footer {
  position: relative;
  padding: 80px 0 30px;
}

.footer-inner {
  min-height: 391px;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  flex: none;
}

.newsletter-placeholder {
  display: grid;
  grid-template-columns: 114px 1fr;
  gap: 18px;
  align-items: center;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff0d;
}

.newsletter-placeholder .image-placeholder {
  min-height: 106px;
  border-radius: 12px;
  font-size: 10px;
}

.newsletter-placeholder strong {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.newsletter-placeholder form {
  height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
}

.newsletter-placeholder input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
}

.newsletter-placeholder input::placeholder {
  color: var(--muted);
}

.newsletter-placeholder button {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  position: relative;
}

.newsletter-placeholder button::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.footer-links {
  justify-self: end;
  width: 524px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.socials {
  display: flex;
  flex-direction: row !important;
  gap: 8px !important;
}

.socials i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff29;
  background: linear-gradient(#5e5e5e52, #12121252);
}

.footer-rule {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 80px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.56;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 991px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .mobile-nav-menu {
    display: grid;
    gap: 2px;
  }

  .hero h1,
  .hero .section-heading h2 {
    font-size: 52px;
    line-height: 60px;
  }

  .three-grid,
  .testimonial-board,
  .blog-grid,
  .footer-inner,
  .founders-grid,
  .faq-layout,
  .process-stage,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .automation-process {
    min-height: auto;
  }

  .booking-panel {
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }

  .process-shell {
    min-height: auto;
  }

  .process-stage {
    gap: 28px;
  }

  .process-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .process-tabs button {
    padding: 0 0 8px;
    text-align: center;
  }

  .process-tabs button::before {
    left: 50%;
    top: auto;
    bottom: 0;
    width: 22px;
    height: 3px;
    transform: translateX(-50%) scaleX(0.4);
  }

  .process-tabs button.active::before {
    transform: translateX(-50%) scaleX(1);
  }

  .process-visual {
    min-height: 420px;
  }

  .process-copy {
    min-height: 210px;
    text-align: center;
  }

  .process-copy article {
    align-items: center;
  }

  .services-grid {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-panel,
  .case-panel-right {
    width: min(100% - 48px, 720px);
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: center;
    padding: 58px 0;
  }

  .case-panel-right .case-visual,
  .case-panel-right .case-copy {
    order: initial;
  }

  .feature-mosaic,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .feature-tall,
  .feature-wide {
    grid-column: auto;
    grid-row: auto;
  }

  @media (min-width: 700px) {
    .automation-process {
      min-height: 100svh;
      padding: 0;
    }

    .process-shell {
      position: sticky;
      top: 0;
      min-height: 100svh;
      padding: 42px 0 46px;
    }

    .process-heading {
      margin-bottom: 24px;
    }

    .process-heading h2 {
      font-size: 30px;
      line-height: 36px;
    }

    .process-heading p {
      font-size: 14px;
      line-height: 21px;
    }

    .process-stage {
      width: min(100%, calc(100vw - 40px));
      grid-template-columns: minmax(96px, 118px) minmax(260px, 320px) minmax(150px, 190px);
      gap: 16px;
      align-items: center;
      justify-content: center;
    }

    .process-tabs {
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 14px;
    }

    .process-tabs button {
      padding: 0 0 0 16px;
      text-align: left;
      font-size: 13px;
      line-height: 18px;
    }

    .process-tabs button::before {
      left: 0;
      top: 3px;
      bottom: auto;
      width: 3px;
      height: 16px;
      transform: scaleY(0.4);
    }

    .process-tabs button.active::before {
      transform: scaleY(1);
    }

    .process-visual {
      height: min(50vh, 390px);
      min-height: 340px;
    }

    .process-copy {
      height: min(50vh, 390px);
      min-height: 340px;
      text-align: left;
    }

    .process-copy article {
      align-items: flex-start;
    }

    .process-copy span {
      font-size: 17px;
      line-height: 22px;
    }

    .process-copy h3 {
      font-size: 22px;
      line-height: 28px;
    }

    .process-copy p {
      font-size: 13px;
      line-height: 20px;
    }

    .case-panel,
    .case-panel-right {
      width: min(100% - 40px, 940px);
      min-height: 100svh;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 24px;
      align-items: stretch;
      padding: 70px 0;
    }

    .case-panel-right .case-visual {
      order: 2;
    }

    .case-panel-right .case-copy {
      order: 1;
    }

    .case-visual,
    .case-copy {
      min-height: min(58vh, 500px);
    }

    .case-copy {
      padding: 24px;
    }

    .case-copy h2 {
      font-size: clamp(26px, 3.7vw, 38px);
      line-height: 1.05;
    }

    .case-copy h3 {
      font-size: clamp(16px, 2vw, 20px);
    }

    .case-copy p {
      font-size: 13px;
      line-height: 21px;
    }
  }

  .testimonial-board {
    height: auto;
  }

  .testimonial-column.offset {
    padding-top: 0;
  }

  .fade-cover {
    display: none;
  }

  .footer-links {
    justify-self: stretch;
    width: 100%;
  }

  .page-title h1 {
    font-size: 46px;
    line-height: 54px;
  }

  .founders,
  .faq-page {
    padding-top: 76px;
  }

  .faq-aside {
    position: relative;
    top: auto;
  }

  .faq-page .page-title {
    margin-bottom: 52px;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-aside {
    max-width: 640px;
  }

  .faq-schedule {
    margin-top: 96px;
  }

  .faq-schedule-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-progress {
    display: none;
  }

  .booking-embed-section {
    min-height: auto;
    padding: 56px 0 68px;
  }

  .booking-embed-shell {
    max-width: 820px;
  }

  .booking-embed-copy {
    text-align: center;
    align-items: center;
    min-height: auto;
  }

  .booking-detail-list {
    margin-left: auto;
    margin-right: auto;
  }

  .booking-calendar-frame {
    min-height: 760px;
  }

  .calendly-inline-widget {
    height: 760px;
    min-height: 760px;
  }

  .about-onepage {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .about-image-placeholder,
  .about-copy {
    height: min(76svh, 620px);
  }

  .about-copy {
    padding: 22px;
  }

  .about-copy h1 {
    font-size: 26px;
    line-height: 30px;
  }

  .about-copy p {
    margin-top: 10px;
    font-size: 11.5px;
    line-height: 17px;
  }

  .about-impact-copy {
    margin-top: 0;
    padding-top: 0;
  }

  .about-impact-copy h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .about-impact-copy p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 18px;
  }

  .pricing-main {
    min-height: calc(100svh - 70px);
    display: grid;
    place-items: center;
  }

  .pricing-section {
    width: 1100px;
    min-height: auto;
    padding: 0;
    transform: scale(0.68);
    transform-origin: center;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-pad {
    padding: 80px 0;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
    line-height: 18px;
  }

  .hero-metrics {
    width: min(100%, 340px);
    gap: 8px;
  }

  .metric {
    min-width: 92px;
  }

  .metric strong {
    min-width: 62px;
    font-size: 24px;
    line-height: 30px;
  }

  .metric span {
    max-width: 88px;
    font-size: 8px;
    line-height: 11px;
  }

  .automation-process {
    padding: 72px 0 64px;
  }

  .process-heading {
    margin-bottom: 34px;
  }

  .process-visual {
    min-height: 300px;
  }

  .process-visual::before {
    inset: -10px;
    border-radius: 20px;
  }

  .process-visual img {
    border-radius: 14px;
  }

  .process-copy {
    min-height: 260px;
  }

  .process-copy h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .services-showcase {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .services-grid {
    gap: 14px;
    margin-top: 34px;
  }

  .service-tile {
    height: auto;
    min-height: auto;
  }

  .service-tile div {
    padding: 18px;
  }

  .booking-panel {
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }

  .booking-shell h2 {
    font-size: 42px;
    line-height: 46px;
  }

  .booking-shell p {
    font-size: 16px;
    line-height: 26px;
  }

  .booking-page {
    height: auto;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .booking-embed-section {
    padding: 44px 0 56px;
  }

  .booking-embed-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1;
  }

  .booking-embed-copy p {
    font-size: 15px;
    line-height: 24px;
  }

  .booking-calendar-frame {
    min-height: 1050px;
    border-radius: 16px;
  }

  .calendly-inline-widget {
    min-width: 0;
    height: 1050px;
    min-height: 1050px;
    border-radius: 16px;
  }

  .lightning-page {
    height: auto;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .about-onepage {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 32px 0 44px;
  }

  .about-image-placeholder,
  .about-copy {
    height: auto;
    min-height: 320px;
  }

  .about-impact-copy h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .about-impact-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .pricing-main {
    display: block;
  }

  .pricing-section {
    width: min(100% - 32px, 420px);
    min-height: auto;
    padding: 36px 0 44px;
    transform: none;
  }

  .pricing-heading {
    margin-bottom: 24px;
  }

  .pricing-heading h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .pricing-heading p {
    font-size: 14px;
    line-height: 22px;
  }

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

  .pricing-card,
  .pricing-card-side {
    min-height: auto;
    margin: 0;
  }

  .hero-shell,
  .hero {
    min-height: 760px;
  }

  .hero h1,
  .section-heading h2,
  .final-cta h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .intro-copy {
    font-size: 26px;
    line-height: 34px;
  }

  .stats-row {
    flex-direction: column;
  }

  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
  }

  .brand-ribbon {
    bottom: 28px;
  }

  .logo-set {
    gap: 34px;
    padding-right: 34px;
  }

  .logo-loop {
    animation-duration: 24s;
  }

  .logo-wordmark {
    font-size: 15px;
    line-height: 20px;
  }

  .story-spacer {
    min-height: 900px;
  }

  .footer-links,
  .footer-bottom {
    flex-direction: column;
  }

  .nav-cta {
    font-size: 12px;
  }

  .page-title h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .founder-card {
    padding: 20px;
  }

  .faq-page {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .faq-page .page-title {
    align-items: flex-start;
    margin-bottom: 46px;
    text-align: left;
  }

  .faq-page .page-title h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.98;
  }

  .faq-page .page-title p {
    font-size: 16px;
    line-height: 26px;
  }

  .faq-aside {
    padding: 0;
  }

  .faq-page summary {
    padding: 21px 4px 21px 0;
    font-size: 16px;
    line-height: 23px;
  }

  .founder-meta h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .founder-card p {
    font-size: 16px;
    line-height: 27px;
  }

  .faq-page details p {
    padding: 0 38px 22px 0;
    font-size: 15px;
    line-height: 24px;
  }

  .faq-schedule {
    margin-top: 82px;
  }

  .faq-schedule-heading h2 {
    font-size: 38px;
  }

  .faq-schedule-heading p {
    font-size: 15px;
    line-height: 24px;
  }

  .case-intro {
    width: min(100% - 32px, var(--container));
    min-height: 320px;
  }

  .case-intro h1 {
    font-size: 34px;
    line-height: 39px;
  }

  .case-intro p,
  .case-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .case-panel,
  .case-panel-right {
    width: min(100% - 32px, 560px);
    min-height: auto;
    padding: 46px 0;
  }

  .case-copy {
    padding: 20px;
  }

  .case-visual::before {
    inset: -10px;
    border-radius: 20px;
  }

  .case-visual img {
    border-radius: 14px;
  }

  .case-copy h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .case-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
