:root {
  --ink: #070707;
  --muted: #565656;
  --line: #d6d6d6;
  --nav: 64px;
  --blue: #2f76ff;
  --lime: #dfff28;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

a { text-decoration: none; }

.bs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 0 0 30px;
  border-bottom: 1px solid #e7e7e7;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand > span:last-child { font-weight: 800; }
.brand > span:last-child span { font-weight: 400; margin-left: 2px; }
.brand strong { font-weight: 800; }

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
  background: #050505;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.bs-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.98rem;
}

.bs-nav button {
  height: var(--nav);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.bs-nav .nav-link {
  height: var(--nav);
  display: inline-flex;
  align-items: center;
}

.nav-trigger.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #050505;
}

.bs-nav button span,
.profile-button i {
  width: 8px;
  height: 8px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-trigger.active span {
  transform: rotate(225deg) translateY(-2px);
}

.profile-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.profile-button span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 32%, #ddb08f 0 13%, transparent 14%),
    radial-gradient(circle at 50% 39%, #241610 0 28%, transparent 29%),
    radial-gradient(circle at 48% 120%, #966656 0 47%, #ddd3cb 48%);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  height: var(--nav);
}

.language-wrap {
  height: var(--nav);
  position: relative;
  display: grid;
  place-items: center;
}

.language-trigger {
  width: 58px;
  height: var(--nav);
  display: grid;
  place-items: center;
}

.globe {
  width: 19px;
  height: 19px;
  border: 1.7px solid #050505;
  border-radius: 50%;
  position: relative;
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
}

.globe::before {
  inset: 2px 5px;
  border-left: 1px solid #050505;
  border-right: 1px solid #050505;
  border-radius: 50%;
}

.globe::after {
  left: 1px;
  right: 1px;
  top: 7px;
  bottom: 7px;
  border-top: 1px solid #050505;
  border-bottom: 1px solid #050505;
}

.language-menu {
  position: absolute;
  right: -56px;
  top: var(--nav);
  width: 164px;
  padding: 18px 22px;
  display: grid;
  gap: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  z-index: 80;
}

.language-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu strong,
.language-menu span {
  font-size: 0.98rem;
  line-height: 1;
}

.login-link,
.start-button {
  height: var(--nav);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.login-link {
  width: 86px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.start-button {
  width: 180px;
  color: #fff;
  background: #050505;
  font-size: 1.02rem;
  transition: background 180ms ease;
}

.start-button:hover {
  background: var(--blue);
}

.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav);
  min-height: 520px;
  display: grid;
  grid-template-columns: 63% 37%;
  background: #fff;
  border-top: 1px solid #e4e8ef;
  box-shadow: 0 24px 70px rgba(0, 20, 50, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: none;
  z-index: 45;
}

body .mega.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.mega-left {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 54px 86px 0;
}

.menu-kicker {
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9e0e8;
  font-size: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
  row-gap: 28px;
  padding-top: 42px;
  align-content: start;
}

.menu-grid.compact {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.menu-item {
  min-height: 74px;
  text-align: left;
  display: grid;
  align-content: start;
  gap: 12px;
}

.menu-item strong {
  font-size: 1.1rem;
  line-height: 1.08;
}

.menu-item span {
  max-width: 230px;
  color: #6a6d76;
  font-size: 1rem;
  line-height: 1.34;
}

.menu-item.active strong,
.menu-item:hover strong,
.menu-item:focus-visible strong {
  color: #4020ff;
}

.menu-footer {
  min-height: 80px;
  margin: 0 -86px;
  padding: 0 86px;
  border-top: 1px solid #e4e8ef;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.menu-footer a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mega-right {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff, #e9f2ff);
}

.preview {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.preview.active {
  opacity: 1;
  transform: translateY(0);
}

.preview-card {
  width: min(72%, 560px);
  aspect-ratio: 1.42;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(34, 58, 92, 0.14);
}

.preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero {
  padding-top: 1px;
  background: #fff;
}

.hero-copy {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 70px;
  align-items: center;
  padding: 38px clamp(34px, 4.4vw, 88px) 54px;
}

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

.hero h1 {
  font-size: clamp(4.8rem, 7.4vw, 9.2rem);
  line-height: 1.14;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.hero-side {
  align-self: center;
  display: grid;
  gap: 42px;
  max-width: 390px;
  min-width: 0;
}

.hero-side p,
.section-split p,
.solution-copy p,
.beyond p,
.enterprise p,
.faq p,
.grind p {
  font-size: 1.18rem;
  line-height: 1.38;
}

.pill {
  width: fit-content;
  min-width: 218px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 30px;
  font-size: 1.08rem;
}

.pill.dark {
  color: #fff;
  background: #050505;
}

.pill.light {
  color: #111;
  background: #fff;
}

.hero-carousel {
  height: 578px;
  overflow: hidden;
  background: #aebdd0;
  cursor: grab;
}

.hero-carousel:active { cursor: grabbing; }

.hero-track {
  height: 100%;
  display: flex;
  align-items: stretch;
  width: max-content;
  transform: translate3d(var(--hero-x, 0px), 0, 0);
  transition: transform 540ms cubic-bezier(.2,.8,.2,1);
}

.hero-slide {
  flex: 0 0 auto;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide.wide { width: min(58vw, 1120px); min-width: 760px; }
.hero-slide.narrow { width: 420px; min-width: 420px; }

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

.hero-slide.lavender {
  display: grid;
  grid-template-rows: 1fr 170px;
  place-items: center;
  background: linear-gradient(#dcd3ff 0 67%, #a6b8cd 67%);
  border-left: 14px solid #dfff28;
}

.hero-slide.steel {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  background: #a8b8cc;
  border-left: 14px solid #dfff28;
}

.blog-card,
.calendar-card,
.event-card {
  width: 250px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 34px rgba(31, 40, 58, 0.18);
}

.blog-card img {
  height: 118px;
  border-radius: 5px;
  object-fit: cover;
}

.blog-card small,
.blog-card em {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-style: normal;
}

.blog-card strong {
  display: block;
  margin-top: 14px;
  color: #47506e;
  font-size: 1.02rem;
  line-height: 1.2;
}

.lines {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.lines span {
  height: 5px;
  border-radius: 99px;
  background: #dcdde4;
}

.checkout {
  width: 240px;
  height: 64px;
  color: #fff;
  background: #10151f;
  font-size: 1.22rem;
  font-weight: 700;
}

.editor-box,
.editor-selected {
  position: relative;
  outline: 2px solid #2680ff;
  outline-offset: 0;
}

.editor-box::before,
.editor-selected::before,
.editor-box::after,
.editor-selected::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #2680ff;
  border-radius: 50%;
  background: #fff;
}

.editor-box::before,
.editor-selected::before { left: -6px; top: -6px; }
.editor-box::after,
.editor-selected::after { right: -6px; bottom: -6px; }

.calendar-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.calendar-card span {
  display: block;
  color: #4b5361;
  font-size: 0.7rem;
  word-spacing: 12px;
}

.calendar-card p {
  margin-top: 12px;
  color: #656b75;
  font-size: 0.72rem;
  line-height: 2.15;
  word-spacing: 13px;
}

.calendar-card b {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #244a3a;
  background: #8ed9bd;
}

.event-card div {
  height: 124px;
  border-radius: 6px;
  background:
    linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
    url("../Images/business-fitness-luxe.png") center/cover;
}

.event-card strong {
  display: block;
  margin: 13px 0 12px;
  color: #333b52;
  font-size: 0.98rem;
}

.event-card > span {
  display: block;
  height: 5px;
  width: 82%;
  margin: 7px 0;
  border-radius: 99px;
  background: #d8dde4;
}

.event-card button {
  width: 100%;
  height: 35px;
  margin-top: 10px;
  border-radius: 999px;
  color: #fff;
  background: #2e523e;
}

.solutions {
  background: #fff;
}

.solution-intro {
  padding: 72px clamp(34px, 4.2vw, 84px) 70px;
}

.solution-intro h2 {
  max-width: 1160px;
  font-size: clamp(4.1rem, 5.3vw, 7.4rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.solution-tabs {
  max-width: 1180px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 62px;
}

.solution-tabs button {
  min-width: 100px;
  height: 44px;
  padding: 0 30px;
  border: 1px solid #8c8c8c;
  border-radius: 7px;
  font-size: 1.12rem;
  background: #fff;
  transition: color 160ms ease, background 160ms ease;
}

.solution-tabs button.active {
  color: #fff;
  background: #050505;
  border-color: #050505;
}

.solution-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  border-top: 1px solid #f0f0f0;
  background: #f7f7f7;
}

.solution-art {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: clamp(40px, 5vw, 92px);
  background: var(--solution-bg, #e7f7f1);
  transition: background 260ms ease;
}

.mock-browser {
  width: min(720px, 100%);
  min-height: 430px;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 48px rgba(30, 39, 62, 0.14);
  animation: panelIn 360ms cubic-bezier(.2,.8,.2,1);
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mock-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 0.72rem;
  background: var(--mock-top, #111);
  color: var(--mock-top-text, #fff);
}

.mock-body {
  min-height: 388px;
  position: relative;
  overflow: hidden;
}

.label {
  position: absolute;
  left: 26px;
  top: 70px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 0.78rem;
}

.select-box {
  position: absolute;
  z-index: 3;
  border: 2px solid #2680ff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.4) inset;
}

.solution-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(50px, 8vw, 150px) clamp(44px, 8vw, 128px);
  background: #fafafa;
}

.solution-arrows {
  position: absolute;
  top: 58px;
  right: 62px;
  display: flex;
  gap: 16px;
}

.circle-button {
  width: 43px;
  height: 43px;
  border: 1px solid #8e8e8e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: color 160ms ease, background 160ms ease;
}

.circle-button:hover {
  color: #fff;
  background: #111;
}

.solution-copy h3 {
  font-size: clamp(3rem, 3.8vw, 5.2rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.045em;
}

.solution-copy p {
  max-width: 560px;
  margin-top: 42px;
}

.solution-copy a,
.section-split a,
.beyond a,
.integrations a {
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  font-size: 1.08rem;
}

.ecomm .mock-body {
  background: linear-gradient(90deg, #030303 0 51%, #d9e2ed 51%);
}

.ecomm .product-copy {
  position: absolute;
  left: 34px;
  top: 116px;
  width: 305px;
  color: #fff;
}

.ecomm h4 {
  margin: 0 0 14px;
  font-size: 2.1rem;
  font-weight: 400;
}

.ecomm .earbud {
  position: absolute;
  right: 80px;
  top: 90px;
  width: 142px;
  height: 288px;
  border-radius: 74px;
  background:
    radial-gradient(circle at 48% 31%, #b9ff71 0 9%, #333 10% 18%, transparent 19%),
    linear-gradient(90deg, #111, #555, #171717);
  box-shadow: 0 0 0 62px rgba(0,0,0,.72), 0 24px 40px rgba(0,0,0,.24);
}

.booking .mock-body {
  background: #f5f0e8;
}

.booking .giant {
  position: absolute;
  left: 18px;
  top: 58px;
  color: #4d4f45;
  font-size: 4.75rem;
  line-height: .9;
  font-weight: 700;
}

.booking .photo,
.event .photo,
.restaurant .photo,
.hotel .photo,
.payment .photo,
.crm .photo,
.blog-demo .photo {
  position: absolute;
  background-size: cover;
  background-position: center;
}

.booking .photo {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 70%;
  background-image: url("../Images/business-hotel-luxe.png");
}

.event .mock-body {
  background: #d9ffe2;
}

.event .giant {
  position: absolute;
  left: 22px;
  top: 56px;
  font-size: 6.8rem;
  line-height: .8;
  letter-spacing: -0.08em;
}

.event .photo {
  right: 70px;
  bottom: 0;
  width: 260px;
  height: 310px;
  background:
    linear-gradient(120deg, rgba(209,223,239,.2), rgba(70,79,95,.35)),
    url("../Images/business-events-luxe.png") center/cover;
}

.restaurant .mock-body {
  background: #fffaf4;
}

.restaurant .photo {
  left: 24px;
  right: 24px;
  top: 70px;
  height: 220px;
  border-radius: 8px;
  background-image: url("../Images/business-restaurant-luxe.png");
}

.restaurant .menu-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 52%;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.restaurant .reserve {
  position: absolute;
  right: 42px;
  bottom: 35px;
  padding: 12px 24px;
  background: var(--lime);
}

.hotel .mock-body {
  background: #fbfbfb;
}

.hotel h4 {
  position: absolute;
  left: 70px;
  top: 48px;
  margin: 0;
  font-size: 1.55rem;
  font-weight: 400;
}

.hotel .search {
  position: absolute;
  left: 70px;
  right: 70px;
  top: 130px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 110px;
  gap: 18px;
  align-items: center;
  padding: 0 26px;
  border: 2px solid #2f76ff;
  background: #fff;
}

.hotel .photo {
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background-image: url("../Images/business-hotel-luxe.png");
}

.app .mock-body {
  display: flex;
  justify-content: center;
  gap: 58px;
  padding-top: 50px;
  background: #fff2e9;
}

.phone {
  width: 178px;
  height: 338px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 34px rgba(22, 32, 48, .14);
}

.phone .photo {
  position: static;
  height: 130px;
  background-image: url("../Images/business-fitness-luxe.png");
  background-size: cover;
}

.phone-content { padding: 18px; }

.phone-content strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.phone button {
  width: 100%;
  height: 34px;
  margin-top: 20px;
  border-radius: 999px;
  color: #fff;
  background: #050505;
}

.multi .mock-body {
  background: #eaf2ff;
}

.language-table {
  position: absolute;
  left: 66px;
  top: 64px;
  width: 620px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 30px rgba(27, 43, 65, .12);
}

.language-table div {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 30px;
  border-bottom: 1px solid #d8e3f1;
}

.language-table i {
  width: 64px;
  height: 6px;
  border-radius: 99px;
  background: #2f76ff;
}

.blog-demo .mock-body {
  background: #fff;
}

.blog-demo .photo {
  left: 26px;
  bottom: 0;
  width: 330px;
  height: 200px;
  background:
    linear-gradient(rgba(58, 105, 137, .16), rgba(58, 105, 137, .16)),
    url("../Images/product-seo.png") center/cover;
}

.blog-demo h4 {
  position: absolute;
  left: 26px;
  top: 70px;
  margin: 0;
  font-size: 1.6rem;
}

.members .mock-body {
  background: #e9f1ff;
}

.members .member-list {
  position: absolute;
  right: 0;
  top: 70px;
  width: 76%;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(30,43,70,.12);
}

.members .member-list div {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  min-height: 58px;
  padding: 0 30px;
  align-items: center;
  border-bottom: 1px solid #cbd9ee;
}

.members .portrait {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170px;
  height: 310px;
  background: url("../Images/business-fitness-luxe.png") center/cover;
}

.payment .mock-body {
  background: #fff;
}

.payment .photo {
  left: 0;
  top: 42px;
  width: 50%;
  bottom: 70px;
  background-image: url("../Images/business-store-luxe.png");
}

.payment .pay-box {
  position: absolute;
  right: 58px;
  top: 88px;
  width: 230px;
  padding: 20px;
  background: #fff;
}

.payment .pay-box div {
  height: 40px;
  border-bottom: 1px solid #ddd;
}

.crm .mock-body {
  background: #f6f6f6;
}

.crm h4 {
  position: absolute;
  left: 32px;
  top: 72px;
  margin: 0;
  font-size: 4.8rem;
  line-height: .85;
}

.crm .photo {
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 150px;
  background-image: url("../Images/product-design.png");
}

.crm .form-box {
  position: absolute;
  right: 36px;
  top: 74px;
  width: 170px;
  padding: 16px;
  color: #fff;
  background: #111;
}

.pricing .mock-body {
  padding: 50px 24px;
  color: #fff;
  background: #1c1c1c;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border: 1px solid #6c6c6c;
}

.price-grid div {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid #6c6c6c;
}

.price-grid strong {
  color: #65ff79;
  font-size: 2.2rem;
}

.integrations {
  color: #fff;
  background:
    radial-gradient(circle, rgba(255,255,255,.11) 1px, transparent 1.2px) 0 0/10px 10px,
    #101112;
}

.integrations > div:first-child {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  padding: 140px clamp(34px, 4.2vw, 84px) 120px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.integrations h2,
.section-split h2,
.beyond h2,
.enterprise h2,
.grind h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(3.8rem, 5.1vw, 7rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.integrations p {
  font-size: 1.26rem;
  line-height: 1.35;
}

.logo-row {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  text-align: center;
  font-size: 1.72rem;
}

.beyond {
  display: grid;
  grid-template-columns: .82fr 1fr;
  min-height: 860px;
}

.beyond-copy {
  display: grid;
  align-content: start;
  gap: 88px;
  padding: 120px clamp(34px, 4.2vw, 84px);
}

.beyond-copy article {
  padding-top: 38px;
  border-top: 1px solid #ddd;
}

.beyond h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.checkout-panel {
  display: grid;
  place-items: start center;
  padding-top: 90px;
  background: linear-gradient(135deg, #fbffed, #c7dcff);
}

.receipt {
  width: 410px;
  padding: 34px;
  border: 12px solid rgba(255,255,255,.62);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(59, 85, 130, .18);
}

.receipt > div:first-child,
.line-item,
.total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e6e6;
}

.product-thumb,
.cross-sell span {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffba57, #f2d3a1);
}

.receipt a {
  display: block;
  margin-top: 18px;
  text-decoration: underline;
}

.total {
  margin-top: 28px;
  padding-bottom: 28px;
  font-size: 1.32rem;
}

.cross-sell {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
}

.cross-sell button {
  grid-column: 2;
  height: 33px;
  border: 1px solid #777;
}

.checkout-panel pre {
  width: 100%;
  align-self: end;
  margin: 74px 0 0;
  padding: 38px 70px;
  color: #d7e4ee;
  background: #071827;
  font-size: 0.98rem;
  line-height: 1.5;
  overflow: hidden;
}

.enterprise {
  padding: 60px;
  background: #e7eeee;
}

.enterprise-card {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 280px minmax(520px, .8fr);
  gap: 56px;
  align-items: center;
  padding: clamp(48px, 5vw, 88px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle, rgba(255,255,255,.14) 1px, transparent 1.3px) 0 0/10px 10px,
    #294447;
  overflow: hidden;
}

.enterprise-copy {
  display: grid;
  gap: 28px;
}

.enterprise-copy p { max-width: 540px; }
.enterprise-copy a:not(.pill) { text-decoration: underline; }

.phone-ui {
  min-height: 470px;
  padding: 30px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 16px;
  color: #333;
  background: #f5f5f5;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.bank-card {
  height: 110px;
  margin-top: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #49c06b, #7be078);
}

.chart {
  height: 130px;
  margin-top: 22px;
  border-radius: 8px;
  background: linear-gradient(#fff, #f4f4f4);
}

.bank-ui {
  min-height: 520px;
  padding: 38px;
  border: 2px solid rgba(255,255,255,.27);
  border-radius: 16px;
  color: #111;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.bank-ui strong {
  font-size: 4.2rem;
}

.bank-ui div {
  height: 330px;
  margin-top: 38px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(223,239,255,.3), rgba(223,239,255,.3)),
    url("../Images/enterprise-organizations.png") center/cover;
}

.bank-ui button {
  margin-top: -82px;
  margin-left: 42px;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  background: #050505;
}

.templates {
  overflow: hidden;
  background: #fff;
}

.section-split {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 90px;
  align-items: center;
  padding: 80px clamp(34px, 4.2vw, 84px);
}

.template-rail {
  min-height: 650px;
  display: flex;
  gap: 104px;
  align-items: center;
  padding: 110px clamp(34px, 4.2vw, 84px);
  overflow-x: auto;
  background: #d9e7f4;
}

.template-card {
  flex: 0 0 auto;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(25, 41, 60, .08);
}

.template-card.xl { width: 820px; height: 420px; }
.template-card.wide { width: 720px; height: 360px; }
.template-card.slim { width: 210px; height: 420px; }

.template-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 180ms ease, transform 260ms ease;
}

.template-card:hover::before {
  filter: brightness(.48);
  transform: scale(1.02);
}

.template-card span {
  position: relative;
  z-index: 2;
  top: 50%;
  left: 42%;
  margin-right: 34px;
  color: #fff;
  opacity: 0;
  border-bottom: 1px solid currentColor;
  transition: opacity 160ms ease;
}

.template-card:hover span { opacity: 1; }

.beauty::before { background-image: url("../Images/business-fitness-luxe.png"); }
.realty::before { background-image: url("../Images/product-business.png"); }
.oyster::before { background-image: url("../Images/business-restaurant-luxe.png"); }
.blog::before { background-image: url("../Images/resource-blog.png"); }
.results::before { background-image: url("../Images/showcase-architecture.png"); }
.store::before { background-image: url("../Images/business-store-luxe.png"); }

.grind {
  padding-top: 120px;
  background:
    radial-gradient(circle, rgba(0,0,0,.12) 1px, transparent 1.1px) 0 0/10px 10px,
    #fff;
}

.grind h2 {
  padding: 0 clamp(34px, 4.2vw, 84px) 96px;
}

.grind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}

.grind-grid article {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 105px;
  padding: 42px;
  border-right: 1px solid #777;
}

.grind-grid h3 {
  font-size: 1.48rem;
  font-weight: 400;
}

.faq {
  padding: 118px clamp(34px, 4.2vw, 78px) 70px;
  background: #fff;
}

.faq h2 {
  margin-bottom: 62px;
}

.faq-list {
  border-top: 1px solid #111;
}

.faq-list button {
  width: 100%;
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 26px 14px 26px 0;
  border-bottom: 1px solid #444;
  text-align: left;
}

.faq-list span {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.faq-list i {
  font-style: normal;
  font-size: 2rem;
}

.faq-list p {
  grid-column: 1 / -1;
  max-width: 850px;
  max-height: 0;
  overflow: hidden;
  color: #4d4d4d;
  transition: max-height 220ms ease;
}

.faq-list button.open p {
  max-height: 120px;
}

.faq-list button.open i {
  transform: rotate(45deg);
}

.final-cta {
  background:
    radial-gradient(circle, rgba(0,0,0,.12) 1px, transparent 1.1px) 0 0/10px 10px,
    #fff;
}

.final-cta h2 {
  padding: 130px clamp(34px, 4.2vw, 84px) 120px;
}

.final-cta a {
  min-height: 238px;
  display: grid;
  grid-template-columns: 1fr 238px;
  align-items: center;
  padding-left: clamp(34px, 4.2vw, 84px);
  font-size: clamp(4.5rem, 7vw, 9rem);
  line-height: 1;
  letter-spacing: -0.055em;
  background: var(--lime);
}

.final-cta span {
  height: 100%;
  display: grid;
  place-items: center;
  color: #111;
  background: #050505;
}

.final-cta span::before {
  content: "";
  position: absolute;
}

.final-cta span {
  position: relative;
}

.final-cta span {
  font-size: 4.8rem;
}

.final-cta span::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}

.final-cta span {
  isolation: isolate;
}

.final-cta span { z-index: 1; }

.bs-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 80px;
  padding: 82px clamp(34px, 5vw, 100px) 110px;
  color: #d5d5d5;
  background: #111;
}

.bs-footer p {
  max-width: 260px;
  margin-top: 28px;
  line-height: 1.35;
}

.bs-footer nav {
  display: grid;
  align-content: start;
  gap: 15px;
}

.bs-footer strong {
  margin-bottom: 18px;
  color: #fff;
  font-size: .82rem;
}

.bs-footer a {
  color: #d5d5d5;
}

@media (max-width: 1100px) {
  .bs-header {
    grid-template-columns: auto 1fr auto;
  }

  .bs-nav {
    justify-content: center;
    gap: 18px;
  }

  .language-trigger {
    width: 46px;
  }

  .login-link {
    width: 72px;
  }

  .start-button {
    width: 150px;
  }

  .hero-copy,
  .solution-stage,
  .integrations > div:first-child,
  .beyond,
  .section-split,
  .enterprise-card,
  .bs-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-side {
    max-width: 560px;
  }

  .solution-copy {
    min-height: 480px;
  }

  .enterprise-card {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  :root { --nav: 58px; }

  .bs-header {
    padding: 0 16px;
  }

  .bs-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .solution-intro h2,
  .integrations h2,
  .section-split h2,
  .beyond h2,
  .enterprise h2,
  .grind h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(3.4rem, 14vw, 5rem);
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 13vw, 3.75rem);
    line-height: 1.18;
    letter-spacing: -0.065em;
  }

  .hero-copy,
  .solution-intro,
  .faq,
  .beyond-copy,
  .section-split,
  .enterprise {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy {
    gap: 38px;
    width: 100%;
    overflow: hidden;
  }

  .hero-side,
  .hero-side p {
    width: min(100%, 300px);
    max-width: 300px;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero-carousel {
    height: 440px;
  }

  .hero-slide.wide {
    min-width: 86vw;
    width: 86vw;
  }

  .hero-slide.narrow {
    min-width: 76vw;
    width: 76vw;
  }

  .solution-tabs {
    gap: 10px;
  }

  .solution-tabs button {
    min-width: 0;
    padding: 0 16px;
    font-size: .98rem;
  }

  .solution-stage,
  .solution-art {
    min-height: auto;
  }

  .solution-arrows {
    top: 28px;
    right: 24px;
  }

  .mock-browser {
    width: min(720px, 92vw);
    min-height: 320px;
  }

  .mock-body {
    min-height: 280px;
  }

  .logo-row,
  .grind-grid {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta a {
    min-height: 150px;
    grid-template-columns: 1fr 120px;
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .final-cta span {
    font-size: 3rem;
  }

  .final-cta span::after {
    width: 86px;
    height: 86px;
  }
}

/* Shared generated BUGENCE brand mark. */
.brand-mark,
.bugence-logo::before,
.logo::before {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  display: inline-block !important;
  border-radius: 0 !important;
  background: url("../Images/bugence-logo-mark.png") center / cover no-repeat !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10) !important;
  overflow: hidden !important;
}

.brand-mark::after,
.bugence-logo::after,
.logo::after {
  display: none !important;
  content: none !important;
}

.bugence-logo,
.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.bugence-logo::before,
.logo::before {
  content: "" !important;
}
