:root {
  --blue: #1687f8;
  --blue-dark: #2563eb;
  --ink: #111827;
  --muted: #667085;
  --line: #e7eaf0;
  --soft: #f7f9fc;
  --green: #21b66f;
  --container: min(1100px, calc(100vw - 40px));
  --shadow: 0 18px 45px rgba(38, 54, 92, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.site-container {
  width: var(--container);
  margin: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus {
  top: 16px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-logo {
  width: 140px;
  aspect-ratio: 350 / 75;
  display: block;
  background: linear-gradient(90deg, #2d8cff 0 23.5%, #0c1530 23.5% 100%);
  -webkit-mask: url("../assets/beonline-logo-official-white.png") center / 168% auto no-repeat;
  mask: url("../assets/beonline-logo-official-white.png") center / 168% auto no-repeat;
  transition: width .2s ease;
}
.brand.brand-white .brand-logo {
  background: #fff;
}
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  transition: padding .2s ease;
}
.site-header.is-scrolled {
  padding: 8px 0;
}
.nav-shell {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #e7eaf0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(34, 46, 83, 0.05);
  transition: height .2s ease, box-shadow .2s ease;
}
.is-scrolled .nav-shell {
  height: 42px;
  box-shadow: 0 10px 28px rgba(34, 46, 83, 0.09);
}
.is-scrolled .brand-logo {
  width: 120px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
.main-nav a {
  color: #475467;
  font-size: 11px;
  font-weight: 600;
}
.main-nav a.active { color: #2479e8; }
.main-nav i {
  margin-left: 4px;
  font-size: 7px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 26px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.nav-actions > a:first-child {
  font-size: 10px;
  font-weight: 600;
}
.small-button,
.primary-button,
.white-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.small-button,
.primary-button {
  border: 1px solid rgba(23, 65, 176, 0.38);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #4058d9 0%, #1b7ff0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 22px rgba(40, 79, 186, 0.22);
}
.small-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 14px 28px rgba(40, 79, 186, 0.28);
}
.small-button:active,
.primary-button:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 6px 14px rgba(40, 79, 186, 0.2);
}
.small-button:focus-visible,
.primary-button:focus-visible,
.white-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}
.small-button i,
.primary-button i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 9px;
  transition: transform 0.2s, background 0.2s;
}
.small-button:hover i,
.primary-button:hover i {
  background: rgba(255, 255, 255, 0.21);
  transform: translateX(2px);
}
.nav-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 26px;
}
.hero.chat-open { padding-bottom: 546px; }
.hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 4px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: #3f8ef1;
  font-size: 9px;
  font-weight: 700;
}
.eyebrow i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #54c88c;
  font-size: 7px;
}
.hero h1 {
  margin: 0;
  font: 800 clamp(44px, 5vw, 66px)/0.98 "Manrope";
  letter-spacing: -0.065em;
}
.hero h1 em {
  color: #168bf7;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.hero-copy > p {
  max-width: 470px;
  margin: 22px auto;
  color: #667085;
  font-size: 15px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.primary-button {
  min-height: 46px;
  padding: 0 19px;
  border-radius: 13px;
}
.primary-button:has(i) {
  padding: 0 11px 0 19px;
}
.circle-play {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-left: 6px;
  border: 1px solid #dfe3ea;
  border-radius: 50%;
  color: #1b87f5;
  background: #fff;
  font-size: 9px;
}
.hero-actions > span {
  color: #667085;
  font-size: 9px;
  font-weight: 600;
}
.hero-actions-illustrated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 32px);
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-actions-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-cta-illustrated {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  min-width: min(300px, 100%);
  padding: 14px 12px 14px 30px;
  border: 2px solid #16225c;
  border-radius: 999px;
  background: #fdfdfb;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 14px 28px rgba(22, 34, 92, 0.12);
}
.hero-cta-illustrated:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(22, 34, 92, 0.18);
}
.hero-cta-illustrated:active {
  transform: translateY(0);
}
.hero-cta-illustrated:focus-visible {
  outline: 3px solid rgba(22, 34, 92, 0.3);
  outline-offset: 4px;
}
.hero-cta-illustrated::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid rgba(22, 34, 92, 0.32);
  border-radius: inherit;
  pointer-events: none;
}
.hero-assistant {
  position: absolute;
  z-index: 8;
  top: var(--assistant-top, 342px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 44px) scale(.97);
  transform-origin: 50% 0;
  transition: opacity .22s ease, visibility .22s step-end, transform .22s ease;
}
.hero-assistant.is-open {
  visibility: visible;
  pointer-events: auto;
  animation: hero-assistant-enter .5s cubic-bezier(.18,.82,.26,1) forwards;
}
.hero-assistant::before {
  content: none;
  position: absolute;
  z-index: 0;
  inset: 7px;
  border: 1px solid rgba(44, 93, 215, .38);
  border-radius: 21px;
  pointer-events: none;
}
.hero-assistant-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 102px;
  padding: 18px 28px;
  border-bottom: 2px solid #c6d1ef;
  background: linear-gradient(130deg, #edf2ff 0%, #fff 75%);
}
.hero-assistant-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid #162a86;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #3159e9, #4a8eff);
  box-shadow: 4px 4px 0 #c9d4ff;
  font-size: 22px;
}
.hero-assistant-mark i { font-size: 0; }
.hero-assistant-mark i::before { content: "\f4ad"; font: 22px "Font Awesome 6 Free"; font-weight: 900; }
.hero-assistant-header div { display: grid; gap: 3px; }
.hero-assistant-header b { color: #172252; font: 800 24px "Manrope", sans-serif; letter-spacing: -.035em; }
.hero-assistant-header small { color: #71809a; font-size: 15px; }
.hero-assistant-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border: 2px solid #2a438f;
  border-radius: 50%;
  color: #65718a;
  background: #fff;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
  font-size: 18px;
}
.hero-assistant-close:hover { color: #172252; background: #e9efff; }
.hero-assistant-body { position: relative; z-index: 1; display: grid; gap: 22px; padding: 28px; }
.hero-assistant-body > p { margin: 0; color: #172252; font: 800 30px/1.12 "Manrope", sans-serif; letter-spacing: -.045em; }
.hero-assistant-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-assistant-options a { min-height: 82px; display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 0 20px; border: 1.5px solid #7890cf; border-radius: 14px; color: #172252; background: linear-gradient(135deg, #fff 0%, #f5f8ff 100%); box-shadow: 3px 3px 0 rgba(207, 219, 251, .7); font-size: 18px; font-weight: 800; text-decoration: none; transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease; }
.hero-assistant-options a i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: #315de7; background: #edf2ff; font-size: 22px; }
.hero-assistant-options a::after { content: "›"; color: #78849a; font: 400 35px/1 "DM Sans", sans-serif; }
.hero-assistant-options a:hover { transform: translate(-2px, -2px); border-color: #2947ad; color: #244edf; background: #fff; box-shadow: 5px 5px 0 #c7d4ff; }
.hero-assistant-form { position: relative; display: flex; align-items: center; min-height: 70px; padding: 0 8px 0 20px; border: 2px solid #315de7; border-radius: 15px; background: #fff; box-shadow: 3px 3px 0 #d4deff; transition: border-color .18s ease, box-shadow .18s ease; }
.hero-assistant-form:focus-within { border-color: #162a86; box-shadow: 4px 4px 0 #bac9fb, 0 0 0 3px rgba(83, 116, 234, .12); }
.hero-assistant-form input { min-width: 0; flex: 1; border: 0; outline: 0; color: #243050; background: transparent; font: 500 18px "DM Sans", sans-serif; }
.hero-assistant-form input::placeholder { color: #8995a9; }
.hero-assistant-form button { width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid #162a86; border-radius: 13px; color: #fff; background: linear-gradient(135deg, #315de7, #4b8cff); box-shadow: 3px 3px 0 #b8c9ff; cursor: pointer; font-size: 19px; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.hero-assistant-form button:hover { background: #214ad0; transform: translate(-1px, -2px); box-shadow: 5px 5px 0 #b8c9ff; }
.hero-assistant-note { display: flex; align-items: center; gap: 10px; margin: 0 -28px; padding: 18px 28px; border-top: 2px solid #c6d1ef; color: #596b90; background: linear-gradient(90deg, #f4f7ff, #fff); font-size: 15px; }
.hero-assistant-note::before { content: "\f132"; color: #667999; font: 19px "Font Awesome 6 Free"; font-weight: 900; }
.hero.chat-open .scene-connectors,
.hero.chat-open .scene-dot { opacity: .08; }
.hero.chat-open .layer-laptop { transform: translate3d(calc(var(--px) - 210px), calc(var(--py) + 258px + var(--assistant-laptop-y, 0px)), 0) rotate(-14deg); }
.hero.chat-open .layer-chip { transform: translate3d(calc(var(--px) - 138px), calc(var(--py) + 20px), 0) rotate(-3deg); }
.hero.chat-open .layer-documents { transform: translate3d(calc(var(--px) - 142px), calc(var(--py) + 132px), 0) rotate(-5deg); }
.hero.chat-open .layer-servers { transform: translate3d(calc(var(--px) + 150px), calc(var(--py) + 225px), 0) rotate(5deg); }
.hero.chat-open .layer-cloud { transform: translate3d(calc(var(--px) + 88px), calc(var(--py) - 72px), 0) rotate(5deg); }
.hero.chat-open .layer-database { transform: translate3d(calc(var(--px) + 126px), calc(var(--py) - 18px), 0) rotate(5deg); }
.hero.chat-open .asset-layer { transition: transform .68s cubic-bezier(.2,.8,.2,1); }
@keyframes hero-assistant-enter { from { opacity: 0; transform: translate(-50%, 44px) scale(.97); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }
.hero-cta-label {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.03em;
  color: #16225c;
  white-space: nowrap;
}
.hero-cta-icon {
  position: relative;
  flex: 0 0 auto;
  width: clamp(40px, 4.8vw, 50px);
  height: clamp(40px, 4.8vw, 50px);
  display: grid;
  place-items: center;
  border: 2px solid #16225c;
  border-radius: 14px;
  background: #fff;
  color: #16225c;
  font-size: clamp(14px, 1.7vw, 18px);
}
.hero-cta-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid #16225c;
  border-radius: inherit;
  background: #ded2fb;
  transform: translate(7px, 7px);
  z-index: -1;
}
@media (max-width: 620px) {
  .hero-actions-illustrated {
    margin-top: 22px;
  }
  .hero-cta-illustrated {
    gap: 12px;
    padding: 12px 10px 12px 22px;
  }
  .hero-assistant { width: calc(100vw - 28px); }
  .hero-assistant-options { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-assistant {
    position: relative;
    top: auto;
    left: auto;
    width: min(570px, calc(100vw - 32px));
    margin: 0 auto 4px;
    transform: translateY(32px) scale(.98);
  }
  .hero-assistant:not(.is-open) { display: none; }
  .hero-assistant.is-open { animation-name: hero-assistant-enter-mobile; }
  .hero.chat-open .hero-illustration { margin-top: 14px; }
  .hero.chat-open .layer-laptop,
  .hero.chat-open .layer-chip,
  .hero.chat-open .layer-documents { transform: translate3d(calc(var(--px) - 46px), calc(var(--py) + 42px), 0) rotate(-3deg); }
  .hero.chat-open .layer-servers,
  .hero.chat-open .layer-cloud,
  .hero.chat-open .layer-database { transform: translate3d(calc(var(--px) + 46px), calc(var(--py) + 36px), 0) rotate(3deg); }
}
@keyframes hero-assistant-enter-mobile { from { opacity: 0; transform: translateY(32px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-assistant,
  .hero-assistant.is-open,
  .hero.chat-open .asset-layer { animation: none; transition: none; }
  .hero-assistant.is-open { opacity: 1; transform: translate(-50%, 0); }
  .hero.chat-open .asset-layer { transform: translate3d(var(--px), var(--py), 0); }
}
@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .hero-assistant.is-open { transform: none; }
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.42;
}
.blob-left {
  width: 250px;
  height: 250px;
  left: -130px;
  top: 70px;
  background: #ffc9f2;
}
.blob-right {
  width: 330px;
  height: 330px;
  right: -160px;
  top: 110px;
  background: #bcecff;
}
.hero-illustration {
  position: relative;
  width: min(840px, 92vw);
  min-height: 500px;
  margin: -2px auto 0;
}
.hero-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.scene-connectors {
  position: absolute;
  inset: 3% 2%;
  width: 96%;
  height: 94%;
  overflow: visible;
  fill: none;
  stroke: #8aa0ed;
  stroke-width: 2;
  stroke-dasharray: 5 7;
  opacity: 0.38;
}
.scene-connectors circle {
  fill: #fff;
  stroke: #516edf;
  stroke-dasharray: none;
}
.asset-layer {
  --px: 0px;
  --py: 0px;
  position: absolute;
  z-index: 2;
  transform: translate3d(var(--px), var(--py), 0);
  transition: transform 0.18s ease-out;
  pointer-events: none;
}
.asset-layer img {
  width: 100%;
  filter: drop-shadow(0 18px 20px rgba(41, 70, 145, 0.11));
  animation: asset-float 5.5s ease-in-out infinite;
}
.layer-servers {
  width: 60%;
  left: 23%;
  top: 7%;
  z-index: 3;
}
.layer-cloud {
  width: 35%;
  right: -1%;
  top: -6%;
}
.layer-cloud img {
  animation-duration: 6.8s;
  animation-delay: -1.6s;
}
.layer-laptop {
  width: 48%;
  aspect-ratio: 1;
  left: -4%;
  bottom: -5%;
  z-index: 4;
}
.layer-laptop img {
  animation-duration: 6.2s;
  animation-delay: -3s;
}
.layer-database {
  width: 32%;
  right: 3%;
  bottom: -7%;
  z-index: 4;
}
.layer-database img {
  animation-duration: 5.8s;
  animation-delay: -2.1s;
}
.layer-chip {
  width: 24%;
  left: -1%;
  top: 10%;
}
.layer-chip img {
  animation-duration: 7.2s;
  animation-delay: -4.1s;
}
.layer-documents {
  width: 25%;
  left: -4%;
  top: 42%;
}
.layer-documents img {
  animation-duration: 6.5s;
  animation-delay: -2.7s;
}
.scene-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #4d68db;
  border-radius: 50%;
  animation: dot-pulse 2.6s ease-in-out infinite;
}
.dot-one { left: 17%; top: 28%; }
.dot-two { right: 9%; top: 47%; animation-delay: -0.8s; }
.dot-three { left: 43%; bottom: 3%; animation-delay: -1.5s; }
@keyframes asset-float {
  50% { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes dot-pulse {
  50% { transform: scale(1.5); opacity: 0.4; }
}
.offer-strip {
  border-block: 1px solid #e7edf5;
  background: #f6faff;
}
.offer-strip > div {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  color: #526074;
  font-size: 9px;
}
.offer-strip i {
  margin-right: 6px;
  color: #2d8cf4;
}
.offer-strip a {
  color: #2685ee;
  font-weight: 700;
}
.section {
  padding: 100px 0;
}
.section-heading.centered {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-heading > span {
  color: #2888ef;
  font-size: 9px;
  font-weight: 700;
}
.section-heading h2 {
  margin: 9px 0 10px;
  font: 800 clamp(29px, 3.2vw, 40px)/1.1 "Manrope";
  letter-spacing: -0.045em;
}
.section-heading p {
  margin: 0;
  color: #778096;
  font-size: 11px;
  line-height: 1.65;
}
.billing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -16px 0 24px;
  color: #687286;
  font-size: 9px;
}
.billing-switch button {
  width: 34px;
  height: 19px;
  padding: 2px;
  border: 0;
  border-radius: 20px;
  background: #268af3;
  cursor: pointer;
}
.billing-switch button i {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.billing-switch.annual button i {
  transform: translateX(15px);
}
.billing-switch b {
  color: #20aa69;
  font-size: 7px;
}
.pricing-toolbar {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: -9px auto 18px;
}
.plan-categories {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid #dce5f1;
  border-radius: 14px;
  background: rgba(244, 247, 252, .92);
  scrollbar-width: none;
}
.plan-categories::-webkit-scrollbar { display: none; }
.plan-categories button {
  min-width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  color: #657087;
  background: transparent;
  font: 700 11px "DM Sans";
  cursor: pointer;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}
.plan-categories button i {
  color: #7b88a0;
  font-size: 11px;
  transition: color .16s ease;
}
.plan-categories button:hover {
  color: #20304d;
  background: rgba(255,255,255,.72);
}
.plan-categories button[aria-selected="true"] {
  color: #fff;
  background: #2f79ed;
  box-shadow: 0 5px 13px rgba(38, 104, 219, .22);
}
.plan-categories button[aria-selected="true"] i { color: #fff; }
.plan-categories button:active { transform: translateY(1px); }
.pricing-period {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #778197;
  font-size: 9px;
  font-weight: 700;
}
.pricing-period > span {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pricing-toolbar .billing-switch { margin: 0; }
.pricing-toolbar .billing-switch[hidden] { display: none; }
.project-price-mode {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #d9e4f3;
  border-radius: 10px;
  color: #235fc0;
  background: #eef5ff;
  font-size: 10px;
}
.project-price-mode[hidden] { display: none; }
.plan-grid {
  transition: opacity .14s ease, transform .14s ease;
}
.plan-grid.is-switching {
  opacity: 0;
  transform: translateY(5px);
}
.plan-quote {
  min-height: 49px;
  display: flex;
  align-items: center;
  margin: 2px 0 5px;
  color: #101a2d;
  font: 800 19px/1.08 "Manrope";
  letter-spacing: -.025em;
}
.plans {
  scroll-margin-top: 88px;
  background: #fff;
}
.laptop-sticky {
  position: relative;
}
.laptop-turn-visual,
.laptop-glow,
.laptop-scroll-cue,
.laptop-keyboard-hotspots {
  display: none;
}
.pricing-screen-scroll {
  width: var(--container);
  margin: auto;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-card {
  position: relative;
  min-height: 610px;
  padding: 7px 7px 58px;
  border: 1px solid #dfe3e9;
  border-radius: 22px;
  background: #f6f7f9;
  box-shadow: 0 10px 30px rgba(42, 55, 91, 0.05);
  transition: 0.2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.plan-card.lilac {
  border-color: #dfe3e9;
  background: #f6f7f9;
}
.plan-card.blue-card {
  border-color: #dfe3e9;
  background: #f6f7f9;
}
.plan-card.yellow {
  border-color: #dfe3e9;
  background: #f6f7f9;
}
.plan-card.mint {
  border-color: #dfe3e9;
  background: #f6f7f9;
}
.plan-top {
  min-height: 225px;
  padding: 17px 16px 13px;
  border: 1.5px solid #323a49;
  border-radius: 16px;
}
.lilac .plan-top { background: #eeebff; }
.blue-card .plan-top { background: #e8f4ff; }
.yellow .plan-top { background: #fffbd7; }
.mint .plan-top { background: #e2f8ed; }
.plan-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.plan-heading small {
  padding: 4px 6px;
  border-radius: 5px;
  color: #1f2937;
  background: rgba(255,255,255,0.82);
  font-size: 9px;
  font-weight: 800;
}
.plan-label {
  font: 800 18px "Manrope";
}
.plan-top > p {
  min-height: 30px;
  margin: 7px 0 12px;
  color: #71798c;
  font-size: 10px;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 3px;
}
.plan-price b {
  display: inline-block;
  min-width: 3ch;
  font: 800 34px "Manrope";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  transition:
    color 0.18s,
    transform 0.18s;
}
.plan-price b.is-counting {
  color: #176fd1;
  transform: translateY(-1px);
}
.plan-price b:before {
  content: "RON ";
  font: 600 7px "DM Sans";
  letter-spacing: 0;
}
.plan-price span {
  padding-bottom: 7px;
  color: #5f687b;
  font-size: 11px;
  line-height: 1.2;
}
.plan-top > em {
  display: block;
  margin-bottom: 12px;
  color: #7c8393;
  font-size: 9px;
  font-style: normal;
}
.plan-top > a {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 20px;
  color: #394156;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8);
  transition: color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}
.plan-card.lilac .plan-top > a:hover { background: #ddd7ff; color: #292153; }
.plan-card.blue-card .plan-top > a:hover { background: #d4eaff; color: #163d67; }
.plan-card.yellow .plan-top > a:hover { background: #f1eaa8; color: #4e4814; }
.plan-card.mint .plan-top > a:hover { background: #ccebdc; color: #164f38; }
.plan-card .plan-top > a:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 5px rgba(37, 49, 79, .14);
  filter: saturate(1.08) brightness(.96);
}
.plan-card .plan-top > a:focus-visible,
.more-features:focus-visible,
.billing-switch button:focus-visible,
.plan-categories button:focus-visible {
  outline: 2px solid #247ff0;
  outline-offset: 2px;
}
.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 17px 13px 0;
  margin: 0;
  list-style: none;
  color: #596174;
  font-size: 11px;
}
.plan-card li:before {
  content: "✓";
  margin-right: 7px;
  color: #28b873;
  font-weight: 800;
}
.more-features {
  position: absolute;
  inset: auto 13px 12px;
  width: calc(100% - 26px);
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  color: #767e90;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}
.more-features:hover {
  color: #29344a;
  background: #e7ebf2;
}
.more-features:active {
  transform: translateY(1px);
  background: #dce2ec;
  box-shadow: inset 0 2px 5px rgba(37, 49, 79, .12);
}
.more-features i {
  float: right;
}
@media (min-width: 1400px) and (min-height: 850px) and (prefers-reduced-motion: no-preference) {
  .hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-start;
    padding: 48px 0 16px;
  }
  .hero .site-container {
    width: min(1320px, calc(100vw - 96px));
  }
  .hero-grid {
    min-height: calc(100vh - 146px);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(470px, 1fr);
    gap: 0;
  }
  .hero h1 {
    font-size: clamp(60px, 4.1vw, 76px);
  }
  .hero-copy > p {
    max-width: 520px;
    font-size: 16px;
  }
  .hero-illustration {
    width: min(900px, 72vw);
    min-height: min(620px, calc(100vh - 350px));
  }
  .laptop-pricing-journey {
    --flight-left: 0px;
    --flight-top: 0px;
    --flight-width: 0px;
    --flight-height: 0px;
    --composition-opacity: 1;
    --frame-start-opacity: 1;
    --frame-front-opacity: 0;
    --pricing-opacity: 0;
    --pricing-y: 12px;
    --cue-opacity: 1;
    height: 110vh;
    padding: 0 !important;
    background:
      radial-gradient(circle at 50% 42%, rgba(218, 238, 255, 0.7), transparent 36%),
      linear-gradient(180deg, #fff 0%, #f7fbff 50%, #fff 100%);
  }
  body.laptop-journey-enabled .layer-laptop img {
    opacity: 0;
  }
  .laptop-pricing-journey .laptop-sticky {
    position: static;
    height: 100%;
    overflow: visible;
    isolation: isolate;
  }
  .laptop-pricing-journey .laptop-glow {
    position: fixed;
    z-index: 20;
    inset: 6% 8%;
    display: block;
    border-radius: 50%;
    opacity: var(--glow-opacity, 0.22);
    background: radial-gradient(circle, rgba(118, 190, 255, 0.32), rgba(170, 142, 248, 0.12) 45%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
  }
  .laptop-pricing-journey .laptop-composition {
    position: fixed;
    z-index: 30;
    left: var(--flight-left);
    top: var(--flight-top);
    width: var(--flight-width);
    height: var(--flight-height);
    opacity: var(--composition-opacity);
    transform-origin: 50% 50%;
    will-change: left, top, width, height, opacity;
  }
  .laptop-pricing-journey .laptop-turn-visual {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    pointer-events: none;
  }
  .laptop-pricing-journey .laptop-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(38, 63, 126, 0.13));
    transition: opacity 90ms linear;
    will-change: opacity;
  }
  .laptop-pricing-journey .laptop-frame-start { opacity: var(--frame-start-opacity); }
  .laptop-pricing-journey .laptop-frame-front { opacity: var(--frame-front-opacity); }
  .laptop-pricing-journey .pricing-screen {
    position: absolute;
    z-index: 4;
    left: 15.55%;
    top: 8.5%;
    width: 68.9%;
    height: 58.15%;
    overflow: hidden;
    border: 1px solid rgba(45, 93, 190, 0.16);
    border-radius: 10px;
    opacity: var(--pricing-opacity);
    background: rgba(252, 254, 255, 0.96);
    box-shadow: inset 0 0 35px rgba(50, 139, 239, 0.06);
    transform: translateY(var(--pricing-y));
    pointer-events: none;
    will-change: opacity, transform;
  }
  .laptop-pricing-journey.pricing-ready .pricing-screen {
    pointer-events: auto;
  }
  .laptop-pricing-journey .laptop-keyboard-hotspots {
    position: absolute;
    z-index: 5;
    left: 14.32%;
    top: 72.17%;
    width: 71.35%;
    height: 11%;
    display: grid;
    grid-template-rows: 18fr 5fr 19fr 8fr 28fr 9fr 23fr 1fr;
    opacity: var(--frame-front-opacity);
    pointer-events: none;
  }
  .laptop-pricing-journey.pricing-ready .laptop-keyboard-hotspots {
    pointer-events: auto;
  }
  .laptop-key-row {
    display: grid;
    grid-template-columns: var(--key-columns);
    column-gap: .64%;
  }
  .laptop-key-row-1 { grid-row: 1; padding-left: 2.75%; padding-right: 3.35%; }
  .laptop-key-row-2 { grid-row: 3; padding-left: 2.37%; padding-right: 2.28%; }
  .laptop-key-row-3 { grid-row: 5; padding-left: .82%; padding-right: 1.09%; }
  .laptop-key-row-4 { grid-row: 7; padding-right: .18%; }
  .laptop-key {
    display: block;
    min-width: 0;
    margin-block: 1px;
    border-radius: 3px;
    background: transparent;
    cursor: default;
    transition: background .1s ease, box-shadow .1s ease, transform .1s ease;
  }
  .laptop-key:hover {
    background: rgba(31, 73, 169, .13);
    box-shadow: inset 0 2px 3px rgba(20, 48, 116, .16), 0 0 0 1px rgba(28, 72, 171, .12);
    transform: translateY(1px);
  }
  .laptop-key:active {
    background: rgba(24, 59, 143, .24);
    box-shadow: inset 0 3px 5px rgba(13, 37, 94, .24), 0 0 0 1px rgba(18, 54, 139, .2);
    transform: translateY(2px) scale(.985);
  }
  .laptop-pricing-journey .pricing-screen-scroll {
    width: auto;
    height: 100%;
    margin: 0;
    padding: 16px 18px 6px;
  }
  .laptop-pricing-journey .section-heading > span {
    font-size: 11px;
  }
  .laptop-pricing-journey .section-heading h2 {
    margin: 3px 0;
    font-size: 31px;
    letter-spacing: -0.035em;
  }
  .laptop-pricing-journey .section-heading p {
    font-size: 14px;
    line-height: 1.4;
  }
  .laptop-pricing-journey .pricing-toolbar {
    width: auto;
    gap: 10px;
    margin: 5px 0 10px;
  }
  .laptop-pricing-journey .plan-categories {
    border-radius: 12px;
  }
  .laptop-pricing-journey .plan-categories button {
    min-height: 34px;
    gap: 6px;
    padding: 0 10px;
    font-size: 11px;
  }
  .laptop-pricing-journey .pricing-period > span {
    display: none;
  }
  .laptop-pricing-journey .billing-switch {
    margin: 0;
    font-size: 12px;
  }
  .laptop-pricing-journey .billing-switch b {
    font-size: 10px;
  }
  .laptop-pricing-journey .plan-grid {
    gap: 12px;
  }
  .laptop-pricing-journey .plan-card {
    min-height: 420px;
    padding: 6px 6px 45px;
    border-radius: 15px;
    box-shadow: 0 7px 18px rgba(42, 55, 91, 0.06);
  }
  .laptop-pricing-journey .plan-card:hover {
    transform: translateY(-2px);
  }
  .laptop-pricing-journey .plan-top {
    min-height: 174px;
    padding: 12px 11px 9px;
    border-width: 1px;
    border-radius: 11px;
  }
  .laptop-pricing-journey .plan-label {
    font-size: 19px;
  }
  .laptop-pricing-journey .plan-heading small {
    padding: 3px 6px;
    font-size: 8px;
  }
  .laptop-pricing-journey .plan-top > p {
    min-height: 20px;
    margin: 5px 0 7px;
    font-size: 11px;
  }
  .laptop-pricing-journey .plan-price b {
    font-size: 35px;
  }
  .laptop-pricing-journey .plan-price b::before {
    font-size: 7px;
  }
  .laptop-pricing-journey .plan-price span {
    padding-bottom: 6px;
    font-size: 11px;
  }
  .laptop-pricing-journey .plan-top > em {
    margin-bottom: 8px;
    font-size: 9px;
  }
  .laptop-pricing-journey .plan-top > a {
    min-height: 32px;
    font-size: 11px;
  }
  .laptop-pricing-journey .plan-quote {
    min-height: 47px;
    font-size: 18px;
  }
  .laptop-pricing-journey .plan-card ul {
    gap: 6px;
    padding: 12px 9px 0;
    font-size: 13px;
    line-height: 1.3;
  }
  .laptop-pricing-journey .more-features {
    inset: auto 10px 9px;
    width: calc(100% - 20px);
    min-height: 31px;
    padding: 0 10px;
    font-size: 11px;
  }
  .laptop-pricing-journey .laptop-scroll-cue {
    position: fixed;
    z-index: 36;
    left: 50%;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(75, 105, 172, 0.14);
    border-radius: 20px;
    opacity: var(--cue-opacity);
    color: #69758b;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .laptop-pricing-journey .laptop-scroll-cue i {
    color: #267fee;
    animation: cue-down 1.6s ease-in-out infinite;
  }
}
@keyframes cue-down {
  50% { transform: translateY(3px); }
}
.platform {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  min-height: 240px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: 0.2s;
}
.service-card:nth-child(3n) {
  border-right: 0;
}
.service-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.service-card:hover {
  background: #fafcff;
}
.service-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
}
.lilac-icon {
  color: #756de4;
  background: #efedff;
}
.gray-icon {
  color: #6e7482;
  background: #f0f1f4;
}
.blue-icon {
  color: #3189e8;
  background: #e9f5ff;
}
.yellow-icon {
  color: #aa8b18;
  background: #fff8d8;
}
.mint-icon {
  color: #259d66;
  background: #e8f8f0;
}
.service-card h3 {
  margin: 20px 0 8px;
  font: 700 14px "Manrope";
}
.service-card p {
  min-height: 43px;
  margin: 0;
  color: #7d8495;
  font-size: 9px;
  line-height: 1.6;
}
.service-card b {
  display: inline-block;
  margin-top: 20px;
  font-size: 8px;
}
.service-card b i {
  margin-left: 5px;
  font-size: 7px;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  color: #677085;
  font-size: 11px;
}
.trust-stars {
  color: #20b76e;
  letter-spacing: 2px;
}
.success {
  background: #fff;
}
.speed-feature {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #40a9f7, #5bb8f5);
}
.speed-feature > div:first-child {
  padding: 43px;
}
.white-tag {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 20px;
  color: #2889ef;
  background: #fff;
  font-size: 7px;
  font-weight: 700;
}
.speed-feature h3 {
  max-width: 460px;
  margin: 17px 0 11px;
  font: 800 25px/1.15 "Manrope";
  letter-spacing: -0.035em;
}
.speed-feature p {
  max-width: 460px;
  color: #e9f6ff;
  font-size: 10px;
  line-height: 1.6;
}
.speed-feature ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 22px;
  list-style: none;
  font-size: 8px;
}
.speed-feature li:before {
  content: "✓";
  margin-right: 7px;
  font-weight: 800;
}
.white-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 11px;
  color: #1682ec;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 65, 135, 0.1);
}
.white-button:hover {
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(17, 65, 135, 0.16);
  transform: translateY(-2px);
}
.deploy-visual {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.36)
  );
}
.runner-visual {
  min-height: 100%;
  overflow: hidden;
  background: #ccecff;
}
.runner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.deploy-visual:before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.code-window {
  position: relative;
  z-index: 2;
  width: 285px;
  padding-bottom: 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #d9e7f4;
  background: #18253a;
  box-shadow: 0 22px 45px rgba(24, 54, 92, 0.25);
  transform: rotate(-2deg);
}
.code-window > div {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid #324056;
}
.code-window > div i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7b82;
}
.code-window > div i:nth-child(2) {
  background: #ffc756;
}
.code-window > div i:nth-child(3) {
  background: #5edb95;
}
.code-window > div span {
  margin-left: 6px;
  color: #8390a2;
  font-size: 7px;
}
.code-window p {
  margin: 0 !important;
  padding: 9px 15px 0 !important;
  color: #d9e7f4 !important;
  font:
    8px ui-monospace,
    monospace;
}
.code-window p em {
  color: #5bdda0;
  font-style: normal;
}
.code-window p small {
  float: right;
  color: #8291a7;
}
.code-window > b {
  display: block;
  margin: 10px 12px 0;
  padding: 8px;
  border-radius: 6px;
  color: #69e5a7;
  background: rgba(65, 208, 139, 0.12);
  font-size: 8px;
}
.code-window > b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #57df9b;
}
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 22px;
}
.benefit-row article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.benefit-row i {
  color: #3692ed;
}
.benefit-row h3 {
  margin: 9px 0 6px;
  font: 700 12px "Manrope";
}
.benefit-row p {
  margin: 0;
  color: #808799;
  font-size: 8px;
  line-height: 1.55;
}
.ecosystem {
  background: #fff;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 12px;
}
.quote-card {
  grid-row: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #8d74ee, #a892ef);
}
.quote-person {
  display: grid;
  place-items: end center;
  min-height: 350px;
  overflow: hidden;
  background: #d7cdfd;
}
.quote-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
}
.quote-card > div:last-child {
  padding: 35px 25px;
}
.quote-card > div:last-child > i {
  font-size: 20px;
  color: #dcd2ff;
}
.quote-card p {
  font: 600 17px/1.5 "Manrope";
}
.quote-card span {
  display: grid;
  margin-top: 28px;
}
.quote-card small {
  margin-top: 3px;
  color: #e9e4ff;
  font-size: 7px;
}
.review-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 12px;
  background: #f5f6f8;
}
.stars {
  color: #ffb420;
  font-size: 10px;
  letter-spacing: 2px;
}
.review-card p {
  min-height: 64px;
  color: #60687a;
  font-size: 9px;
  line-height: 1.6;
}
.review-card span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #646c7e;
  font-size: 8px;
}
.review-card span i {
  font-size: 22px;
  color: #a7adba;
}
.selected-work {
  overflow: hidden;
  background: #f6f9fd;
}
.work-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.work-section-head .section-heading {
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.work-section-head .section-heading p { max-width: 640px; }
.work-all-link {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid #d6e0ed;
  border-radius: 10px;
  color: #2b3c58;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: color .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.work-all-link:hover {
  color: #1d6fe4;
  border-color: #a9c8f3;
  box-shadow: 0 9px 22px rgba(39, 77, 132, .09);
  transform: translateY(-1px);
}
.work-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 18px;
}
.work-case {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  color: #101827;
  background: #fff;
  box-shadow: 0 12px 32px rgba(37, 60, 101, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.work-case:hover {
  border-color: #b9d0ef;
  box-shadow: 0 20px 44px rgba(37, 60, 101, .12);
  transform: translateY(-4px);
}
.work-case-featured {
  grid-row: span 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.work-browser {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-bottom: 1px solid rgba(49, 78, 126, .1);
  background: #eef3fb;
}
.work-case-featured .work-browser { min-height: 490px; height: 100%; }
.work-browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  color: #77839a;
  background: rgba(255,255,255,.88);
  font-size: 8px;
}
.work-browser-bar > span { display: flex; gap: 4px; }
.work-browser-bar i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #ccd4e0;
}
.work-browser-bar b {
  min-width: 120px;
  padding: 4px 12px;
  border-radius: 8px;
  background: #f2f5f9;
  font-weight: 600;
  text-align: center;
}
.work-case-copy { padding: 20px 22px 22px; }
.work-case-featured .work-case-copy { padding: 25px 27px 28px; }
.work-case-copy > span,
.portfolio-card-copy > span {
  color: #2d7fe9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.work-case-copy h3,
.portfolio-card-copy h3 {
  margin: 6px 0;
  font: 800 22px "Manrope";
  letter-spacing: -.03em;
}
.work-case-copy p,
.portfolio-card-copy p {
  margin: 0;
  color: #6b7589;
  font-size: 12px;
  line-height: 1.55;
}
.work-case-copy b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #263750;
  font-size: 11px;
}
.work-case:hover .work-case-copy b { color: #2079ea; }
.work-service-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid #d7e3f3;
  border-radius: 16px;
  background: linear-gradient(105deg, #edf5ff, #f8fbff);
}
.work-service-note > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #2779ec;
  background: #fff;
  box-shadow: 0 7px 18px rgba(39, 96, 177, .1);
}
.work-service-note b { font: 700 14px "Manrope"; }
.work-service-note p { margin: 4px 0 0; color: #6c788d; font-size: 11px; }
.work-service-note a {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 9px;
  color: #fff;
  background: #2f73e8;
  font-size: 11px;
  font-weight: 700;
}

/* Example project screenshots: code-native, accessible concept visuals. */
.demo-store,
.demo-booking,
.demo-dashboard,
.demo-restaurant,
.demo-architecture,
.demo-mobile {
  height: calc(100% - 34px);
}
.demo-store {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 20px;
  color: #263024;
  background: #e9eadf;
}
.demo-store header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #485047;
  font-size: 8px;
}
.demo-store header strong { font: 800 10px "Manrope"; letter-spacing: .12em; }
.demo-store header button { padding: 6px 9px; border: 1px solid #b7bbaa; border-radius: 20px; color: #485047; background: transparent; font-size: 7px; }
.demo-store-hero {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 20px;
}
.demo-store-hero small { color: #7b826f; font-size: 7px; letter-spacing: .12em; }
.demo-store-hero h3 { max-width: 290px; margin: 8px 0; font: 700 31px/1.08 "Manrope"; letter-spacing: -.045em; }
.demo-store-hero p { max-width: 240px; color: #707969; font-size: 9px; }
.demo-store-hero b { display: inline-block; margin-top: 12px; padding-bottom: 3px; border-bottom: 1px solid #55604f; font-size: 8px; }
.demo-chair { position: relative; width: 190px; height: 220px; display: block; justify-self: center; }
.demo-chair::before { content: ""; position: absolute; inset: 24px 26px 54px; border-radius: 58px 58px 24px 24px; background: linear-gradient(145deg, #c8805e, #a95c3e); box-shadow: -17px 18px 30px rgba(94, 66, 48, .18); }
.demo-chair::after { content: ""; position: absolute; left: 35px; right: 35px; bottom: 37px; height: 54px; border-radius: 8px 8px 18px 18px; background: #b76b49; transform: perspective(160px) rotateX(18deg); }
.demo-chair i::before,
.demo-chair i::after { content: ""; position: absolute; bottom: 0; width: 6px; height: 68px; border-radius: 4px; background: #5a493f; }
.demo-chair i::before { left: 49px; transform: rotate(5deg); }
.demo-chair i::after { right: 49px; transform: rotate(-5deg); }
.demo-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.demo-products span { height: 55px; border-radius: 5px; background: rgba(255,255,255,.46); }
.demo-products span:nth-child(2) { background: #d9d2c1; }
.demo-products span:nth-child(3) { background: #cbd5c4; }
.demo-booking { display: grid; grid-template-columns: 62px 1fr; color: #2e3b50; background: #edf6ff; }
.demo-booking aside,
.demo-dashboard aside { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 16px 8px; background: #fff; }
.demo-booking aside strong { color: #2e6fe8; font: 800 11px "Manrope"; }
.demo-booking aside strong span { color: #45c19c; }
.demo-booking aside i,
.demo-dashboard aside i { width: 22px; height: 5px; border-radius: 8px; background: #dce5f3; }
.demo-booking main { padding: 24px 22px; }
.demo-booking main small,
.demo-dashboard main small { color: #4380df; font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.demo-booking main h3 { margin: 4px 0; font: 800 22px "Manrope"; }
.demo-booking main p { margin: 0; color: #8290a5; font-size: 8px; }
.demo-calendar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin: 18px 0 14px; }
.demo-calendar b { grid-column: 1/-1; margin-bottom: 3px; font-size: 7px; }
.demo-calendar span { height: 28px; display: grid; place-items: center; border-radius: 7px; background: #fff; font-size: 7px; }
.demo-calendar span.active { color: #fff; background: #377bea; }
.demo-booking main button { width: 100%; padding: 8px; border: 0; border-radius: 7px; color: #fff; background: #2f73e8; font-size: 7px; }
.demo-dashboard { display: grid; grid-template-columns: 48px 1fr; color: #1e2940; background: #f2f5fa; }
.demo-dashboard aside { background: #172238; }
.demo-dashboard aside strong { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: #3d78f0; font-size: 8px; }
.demo-dashboard aside i { width: 18px; background: #344158; }
.demo-dashboard main { padding: 18px; }
.demo-dashboard main header { display: flex; align-items: center; justify-content: space-between; }
.demo-dashboard main h3 { margin: 2px 0; font: 800 17px "Manrope"; }
.demo-dashboard main header button { padding: 6px 8px; border: 0; border-radius: 7px; color: #fff; background: #316fe5; font-size: 6px; }
.demo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 12px 0; }
.demo-metrics span { padding: 8px; border-radius: 7px; background: #fff; }
.demo-metrics small { display: block; color: #8a95a8 !important; font-size: 5px !important; }
.demo-metrics b { font: 800 13px "Manrope"; }
.demo-chart { height: 58px; display: flex; align-items: end; gap: 5px; padding: 9px; border-radius: 8px; background: #fff; }
.demo-chart i { flex: 1; border-radius: 3px 3px 0 0; background: #71a6f6; }
.demo-chart i:nth-child(1) { height: 30%; }.demo-chart i:nth-child(2) { height: 55%; }.demo-chart i:nth-child(3) { height: 42%; }.demo-chart i:nth-child(4) { height: 74%; }.demo-chart i:nth-child(5) { height: 60%; }.demo-chart i:nth-child(6) { height: 88%; background: #4b7ae8; }

.portfolio-page { background: #fff; }
.portfolio-hero { padding: 110px 0 66px; background: linear-gradient(180deg, #f7faff 0, #fff 100%); }
.portfolio-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; }
.portfolio-hero span { color: #2f80ed; font-size: 11px; font-weight: 800; }
.portfolio-hero h1 { max-width: 780px; margin: 10px 0 16px; font: 800 clamp(44px, 5vw, 72px)/1.02 "Manrope"; letter-spacing: -.055em; }
.portfolio-hero p { max-width: 620px; margin: 0; color: #667286; font-size: 15px; line-height: 1.6; }
.portfolio-hero-aside { padding: 22px; border: 1px solid #dce5f1; border-radius: 18px; background: #fff; box-shadow: 0 14px 34px rgba(37, 62, 105, .07); }
.portfolio-hero-aside b { display: block; margin-bottom: 8px; font: 700 15px "Manrope"; }
.portfolio-hero-aside p { font-size: 11px; }
.portfolio-hero-aside a { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: #2878e9; font-size: 11px; font-weight: 800; }
.portfolio-gallery-section { padding-top: 32px; }
.work-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.work-filters button { min-height: 38px; padding: 0 14px; border: 1px solid #d8e1ed; border-radius: 10px; color: #647086; background: #fff; font: 700 11px "DM Sans"; cursor: pointer; }
.work-filters button[aria-pressed="true"] { color: #fff; border-color: #2f73e8; background: #2f73e8; box-shadow: 0 6px 14px rgba(47,115,232,.2); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.portfolio-card { min-width: 0; overflow: hidden; border: 1px solid #dbe4f0; border-radius: 20px; background: #fff; box-shadow: 0 12px 32px rgba(37,60,101,.055); transition: transform .2s ease, box-shadow .2s ease; }
.portfolio-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(37,60,101,.11); }
.portfolio-card[hidden] { display: none; }
.portfolio-card .work-browser { min-height: 350px; }
.portfolio-card .work-browser-store { min-height: 430px; }
.portfolio-card-copy { padding: 22px 24px 24px; }
.portfolio-card-copy footer { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.portfolio-card-copy footer span { padding: 5px 8px; border-radius: 20px; color: #607088; background: #f1f5fa; font-size: 8px; font-weight: 700; }
.portfolio-project-image { min-height: 350px; background: #edf3fb; }
.portfolio-project-image img { display: block; width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.work-case-featured .portfolio-project-image { min-height: 490px; }
.portfolio-fallback-visual { min-height: 350px; display: grid; place-content: center; justify-items: center; gap: 9px; padding: 30px; text-align: center; background: radial-gradient(circle at 50% 28%,#e6efff,transparent 42%),linear-gradient(145deg,#f7f9ff,#eaf2ff); }
.portfolio-fallback-visual span { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid #cbd9f0; border-radius: 18px; color: #3470e6; background: rgba(255,255,255,.8); box-shadow: 0 12px 28px rgba(48,91,170,.12); font-size: 22px; }
.portfolio-fallback-visual small { color: #6680aa; font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.portfolio-fallback-visual strong { max-width: 320px; color: #17243d; font: 700 26px/1.15 Manrope, sans-serif; }
.portfolio-project-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: #2367df; font-size: 10px; font-weight: 700; text-decoration: none; }
.portfolio-project-link:hover { color: #154db4; }
.portfolio-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; margin-top: 70px; padding: 34px; border-radius: 22px; color: #fff; background: #263b57; }
.portfolio-cta h2 { margin: 0 0 7px; font: 800 28px "Manrope"; letter-spacing: -.035em; }
.portfolio-cta p { margin: 0; color: #cbd6e4; font-size: 12px; }
.portfolio-cta a { min-width: max-content; padding: 12px 16px; border-radius: 10px; color: #17375e; background: #fff; font-size: 11px; font-weight: 800; }

.demo-restaurant { display: grid; grid-template-columns: .85fr 1.15fr; background: #f3eadc; }
.demo-restaurant > div:first-child { display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.demo-restaurant small { color: #a15d3d; font-size: 7px; font-weight: 800; }
.demo-restaurant h3 { margin: 8px 0; font: 700 25px/1.05 "Manrope"; color: #49372d; }
.demo-restaurant p { color: #866f60; font-size: 8px; line-height: 1.5; }
.demo-restaurant b { width: max-content; margin-top: 10px; padding: 7px 10px; border-radius: 20px; color: #fff; background: #95563a; font-size: 7px; }
.demo-food { position: relative; min-height: 100%; background: radial-gradient(circle at 50% 44%, #f2c76f 0 18%, #d66d45 19% 31%, #f5e7cf 32% 43%, #b66b44 44% 45%, transparent 46%), linear-gradient(145deg,#d5a47a,#9e5c3d); }
.demo-food::after { content: ""; position: absolute; inset: 12% 10%; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.demo-architecture { display: grid; grid-template-columns: 1.3fr .7fr; background: #e6e1d7; }
.demo-building { position: relative; overflow: hidden; background: linear-gradient(155deg, #d2d8dc 0 38%, #8f9ba2 39% 41%, #c09c7c 42% 100%); }
.demo-building::before { content: ""; position: absolute; left: 19%; right: 13%; bottom: 0; height: 74%; background: repeating-linear-gradient(90deg, #d6c1a8 0 22px, #394753 23px 35px); clip-path: polygon(10% 0,100% 17%,92% 100%,0 100%); }
.demo-architecture > div:last-child { display: flex; flex-direction: column; justify-content: end; padding: 25px; }
.demo-architecture small { color: #927556; font-size: 7px; font-weight: 800; }
.demo-architecture h3 { margin: 7px 0; font: 700 23px/1.05 "Manrope"; color: #3f413e; }
.demo-architecture p { color: #76766f; font-size: 8px; line-height: 1.5; }
.demo-mobile { display: grid; place-items: center; background: linear-gradient(145deg, #c9c2ff, #8e7be8); }
.demo-phone { width: 128px; height: 240px; padding: 9px; border: 4px solid #1d2540; border-radius: 28px; background: #fff; box-shadow: 18px 22px 40px rgba(36,27,83,.25); transform: rotate(4deg); }
.demo-phone > i { width: 37px; height: 5px; display: block; margin: 0 auto 11px; border-radius: 10px; background: #1e2740; }
.demo-phone header { padding: 10px; border-radius: 14px; color: #fff; background: #5747c8; }
.demo-phone header small { display: block; color: #d9d4ff; font-size: 5px; }
.demo-phone header b { font: 800 15px "Manrope"; }
.demo-phone main { display: grid; gap: 7px; padding-top: 10px; }
.demo-phone main span { height: 34px; border-radius: 9px; background: #f0f2f8; }
.demo-phone main span:first-child { height: 55px; background: linear-gradient(90deg,#edeaff 45%,#f6f6fa 45%); }
.support-section {
  padding-top: 30px;
}
.support-feature {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border-radius: 16px;
  background: #2d4057;
}
.support-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #26384c;
}
.support-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.support-circle {
  position: relative;
  z-index: 2;
  width: 185px;
  height: 185px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.support-circle i {
  font-size: 90px;
}
.support-wave {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.support-wave.one {
  width: 280px;
  height: 280px;
}
.support-wave.two {
  width: 380px;
  height: 380px;
}
.support-panel {
  margin: 25px;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
}
.support-panel > span {
  color: #368be9;
  font-size: 8px;
  font-weight: 700;
}
.support-panel h2 {
  margin: 9px 0 18px;
  font: 800 24px/1.15 "Manrope";
  letter-spacing: -0.035em;
}
.support-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}
.support-panel li {
  display: flex;
  gap: 9px;
}
.support-panel li > i {
  margin-top: 2px;
  color: #2d93ee;
}
.support-panel li span {
  display: grid;
}
.support-panel li b {
  font-size: 9px;
}
.support-panel li small {
  margin-top: 2px;
  color: #838a99;
  font-size: 7px;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.promo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 28px;
  border-radius: 14px;
}
.security-promo {
  color: #09365a;
  background: linear-gradient(135deg, #72c8ff, #a8dcff);
}
.performance-promo {
  color: #38206f;
  background: linear-gradient(135deg, #b9a1ff, #d2c3ff);
}
.promo-card > i {
  margin-bottom: 18px;
  font-size: 32px;
}
.promo-card h3 {
  max-width: 390px;
  margin: 0 0 15px;
  font: 800 21px/1.15 "Manrope";
  letter-spacing: -0.03em;
}
.promo-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 11px;
}
.promo-card li::before {
  content: "•";
  margin-right: 7px;
}
.promo-word {
  position: absolute;
  right: 20px;
  top: 15px;
  color: rgba(255, 255, 255, 0.38);
  font: 800 38px "Manrope";
  letter-spacing: -0.05em;
}
.resources {
  padding-top: 70px;
}
.resource-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.resource-main {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.resource-main:hover {
  border-color: #cfdcf2;
  box-shadow: 0 18px 42px rgba(35, 55, 94, 0.1);
  transform: translateY(-3px);
}
.resource-main:focus-visible {
  outline: 3px solid rgba(22, 135, 248, 0.25);
  outline-offset: 3px;
}
.resource-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #71c0ff;
  background: linear-gradient(145deg, #101827, #1f3650);
}
.resource-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.resource-main:hover .resource-image img {
  transform: scale(1.025);
}
.resource-image i {
  font-size: 75px;
}
.resource-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 22px 22px;
}
.resource-copy > span,
.resource-list small {
  color: #2e8eec;
  font-size: 7px;
  font-weight: 700;
}
.resource-copy h3 {
  margin: 8px 0;
  font: 700 16px/1.35 "Manrope";
}
.resource-copy p {
  margin: 0 0 18px;
  color: #7b8393;
  font-size: 9px;
}
.resource-copy > b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 8px;
}
.resource-list {
  display: grid;
  gap: 10px;
}
.resource-list > a {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.thumb {
  height: 75px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 23px;
}
.purple-thumb {
  color: #715de4;
  background: #eeeaff;
}
.yellow-thumb {
  color: #aa8c18;
  background: #fff6cf;
}
.blue-thumb {
  color: #267fdf;
  background: #e8f4ff;
}
.resource-list > a > span:last-child {
  display: grid;
  gap: 5px;
}
.resource-list b {
  font-size: 10px;
  line-height: 1.4;
}
.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 45px;
}
.closing-grid article {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8fbff;
}
.closing-grid h3 {
  margin: 0 0 6px;
  font: 700 14px "Manrope";
}
.closing-grid p {
  color: #7e8697;
  font-size: 8px;
}
.closing-grid a {
  color: #2a87ea;
  font-size: 8px;
  font-weight: 700;
}
.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid var(--line);
}
.site-footer .brand {
  width: max-content;
}
.site-footer .brand-logo {
  width: 150px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-grid p {
  max-width: 270px;
  margin: 5px 0 0;
  color: #7e8595;
  font-size: 14px;
  line-height: 1.55;
}
.footer-grid b {
  margin-bottom: 7px;
  font-size: 14px;
}
.footer-grid > div:not(:first-child) a {
  color: #70788b;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.2s;
}
.footer-grid > div:not(:first-child) a:hover {
  color: var(--blue-dark);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #7f8797;
  font-size: 12px;
  line-height: 1.4;
}
.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 22px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 12px);
  padding: 11px 15px;
  border-radius: 9px;
  color: #fff;
  background: #111827;
  font-size: 9px;
  transition: 0.2s;
}
.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.hero-illustration.reveal {
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}

/* Comfortable type scale for desktop and wide displays. */
.main-nav a,
.nav-actions > a:first-child,
.small-button,
.primary-button,
.white-button {
  font-size: 13px;
}
.eyebrow,
.hero-actions > span,
.offer-strip > div,
.section-heading > span,
.billing-switch {
  font-size: 12px;
}
.section-heading p {
  font-size: 14px;
}
.plan-card > p,
.plan-card > a,
.plan-card ul,
.more-features {
  font-size: 11px;
}
.plan-price b::before,
.plan-price span,
.recommended {
  font-size: 9px;
}
.service-card h3 {
  font-size: 17px;
}
.service-card p,
.service-card b {
  font-size: 12px;
}
.speed-feature p,
.speed-feature ul,
.benefit-row p,
.review-card p,
.review-card span,
.support-panel > span,
.support-panel li b,
.support-panel li small,
  .resource-copy > span,
.resource-list small,
  .resource-copy p,
  .resource-copy > b,
.closing-grid p,
.closing-grid a {
  font-size: 11px;
}
.benefit-row h3 {
  font-size: 15px;
}
.code-window p,
.code-window > b,
.code-window > div span {
  font-size: 10px !important;
}
.review-card p {
  font-size: 12px;
}
.resource-copy h3 {
  font-size: 19px;
}
.resource-list b {
  font-size: 13px;
}
.closing-grid h3 {
  font-size: 17px;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-illustration {
    max-width: 620px;
    margin: auto;
  }
  .plan-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-toolbar {
    grid-template-columns: 1fr;
  }
  .pricing-period {
    justify-content: center;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .service-card:nth-child(2n) {
    border-right: 0;
  }
  .service-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote-card {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .support-feature {
    grid-template-columns: 1fr 1fr;
  }
  .work-section-head {
    align-items: start;
    flex-direction: column;
  }
  .work-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .work-case-featured {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .work-case-featured .work-browser { min-height: 430px; height: auto; }
  .portfolio-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 28px);
  }
  .site-header {
    padding: 10px 0;
  }
  .nav-shell {
    height: 46px;
  }
  .nav-toggle {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-left: auto;
    border: 0;
    border-radius: 8px;
    color: #617085;
    background: #f3f5f8;
  }
  .nav-actions {
    display: none;
  }
  .main-nav.open {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 66px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open a {
    padding: 11px;
  }
  .hero {
    padding: 60px 0 35px;
  }
  .hero-grid {
    gap: 25px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-illustration {
    min-height: 400px;
    margin-inline: -6px;
  }
  .layer-laptop { left: 1%; width: 46%; }
  .layer-chip { left: 1%; }
  .layer-documents { left: 0; }
  .offer-strip > div {
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
    font-size: 10px;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .pricing-toolbar {
    margin-top: -4px;
  }
  .plan-categories {
    justify-content: flex-start;
  }
  .plan-categories button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
  .pricing-period > span {
    display: none;
  }
  .plan-grid,
  .service-grid,
  .benefit-row,
  .ecosystem-grid,
  .resource-grid,
  .closing-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: 610px;
  }
  .work-showcase { grid-template-columns: 1fr; }
  .work-case-featured { grid-column: auto; }
  .work-case-featured .work-browser,
  .work-browser,
  .portfolio-card .work-browser { min-height: 310px; }
  .work-service-note { grid-template-columns: auto 1fr; }
  .work-service-note a { grid-column: 1/-1; justify-content: center; }
  .portfolio-hero { padding: 82px 0 50px; }
  .portfolio-hero h1 { font-size: 42px; }
  .portfolio-cta { grid-template-columns: 1fr; padding: 26px; }
  .portfolio-cta a { text-align: center; }
  .demo-store-hero { grid-template-columns: 1fr 1fr; min-height: 200px; }
  .demo-store-hero h3 { font-size: 23px; }
  .demo-chair { width: 120px; height: 170px; }
  .demo-chair::before { inset: 20px 18px 43px; }
  .demo-chair::after { left: 24px; right: 24px; bottom: 30px; }
  .demo-chair i::before { left: 34px; height: 52px; }
  .demo-chair i::after { right: 34px; height: 52px; }
  .service-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .service-card:last-child {
    border-bottom: 0 !important;
  }
  .speed-feature {
    grid-template-columns: 1fr;
  }
  .speed-feature > div:first-child {
    padding: 30px 24px;
  }
  .deploy-visual {
    min-height: 280px;
  }
  .benefit-row {
    gap: 8px;
  }
  .quote-card {
    grid-template-columns: 1fr;
  }
  .quote-person {
    display: none;
  }
  .review-card {
    min-height: 150px;
  }
  .support-feature {
    grid-template-columns: 1fr;
  }
  .support-art {
    min-height: 250px;
  }
  .support-panel {
    margin: 14px;
  }
  .resource-list > a {
    grid-template-columns: 105px 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Content-led company and legal pages */
.content-page { background: #f8fafc; }
.content-page .site-header { background: rgba(255,255,255,.94); }
.content-page .main-nav a.active { color: var(--blue); }
.content-page .main-nav a.active::after { width: 100%; }
.content-hero { position: relative; overflow: hidden; padding: 118px 0 74px; border-bottom: 1px solid #e7ebf1; background: radial-gradient(circle at 15% 25%, rgba(238,220,255,.72), transparent 29%), radial-gradient(circle at 84% 30%, rgba(215,241,255,.72), transparent 28%), #fff; }
.content-hero::after { content: ""; position: absolute; left: 50%; bottom: -150px; width: 620px; height: 280px; transform: translateX(-50%); border-radius: 50%; background: rgba(227,237,255,.52); filter: blur(70px); }
.content-hero-inner { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.content-hero-inner > span,.about-hero-grid > div:first-child > span { display: block; margin-bottom: 16px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.content-hero h1 { max-width: 820px; margin: 0 auto; color: #101827; font-family: Manrope,sans-serif; font-size: clamp(46px,6vw,76px); line-height: 1; letter-spacing: -.055em; }
.content-hero p { max-width: 610px; margin: 22px auto 0; color: #68758a; font-size: 18px; line-height: 1.65; }
.privacy-hero { background: radial-gradient(circle at 17% 25%, rgba(220,236,255,.82), transparent 30%), radial-gradient(circle at 84% 30%, rgba(225,219,255,.65), transparent 28%), #fff; }
.legal-content-section { padding-top: 64px; }
.legal-layout { display: grid; grid-template-columns: 235px minmax(0,850px); justify-content: center; align-items: start; gap: 54px; }
.legal-index { position: sticky; top: 96px; display: grid; gap: 3px; padding: 18px; border: 1px solid #e2e7ef; border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 16px 36px rgba(33,49,78,.06); }
.legal-index b { margin: 2px 10px 10px; color: #111827; font-family: Manrope,sans-serif; font-size: 14px; }
.legal-index a { padding: 9px 10px; border-radius: 8px; color: #69758a; font-size: 12px; font-weight: 650; line-height: 1.35; }
.legal-index a:hover { color: #2855d7; background: #edf2ff; }
.legal-article { min-width: 0; }
.legal-section { scroll-margin-top: 100px; margin-bottom: 18px; padding: 38px 42px; border: 1px solid #e1e6ee; border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(28,43,69,.035); }
.legal-number { display: inline-grid; place-items: center; width: 36px; height: 30px; margin-bottom: 16px; border-radius: 9px; color: #315fe4; background: #edf2ff; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.legal-section h2 { margin: 0 0 22px; color: #111827; font-family: Manrope,sans-serif; font-size: 29px; line-height: 1.18; letter-spacing: -.035em; }
.legal-section h3 { margin: 28px 0 12px; color: #263348; font-family: Manrope,sans-serif; font-size: 17px; }
.legal-section p { margin: 0 0 16px; color: #59677c; font-size: 15px; line-height: 1.8; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section p > b { color: #25334a; }
.legal-section a { color: #315ddc; font-weight: 700; text-decoration: underline; text-decoration-color: #c8d5fb; text-underline-offset: 3px; }
.legal-definitions { display: grid; gap: 10px; margin: 22px 0 0; }
.legal-definitions > div { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 17px 18px; border-radius: 11px; background: #f7f9fc; }
.legal-definitions dt { color: #172136; font-size: 13px; font-weight: 800; }
.legal-definitions dd { margin: 0; color: #607086; font-size: 14px; line-height: 1.65; }
.legal-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.legal-list li { position: relative; padding: 12px 15px 12px 39px; border-radius: 10px; color: #59677c; background: #f7f9fc; font-size: 14px; line-height: 1.6; }
.legal-list li::before { content: "✓"; position: absolute; left: 15px; top: 12px; color: #15a467; font-weight: 800; }
.legal-list.numbered { counter-reset: privacy-step; }
.legal-list.numbered li { counter-increment: privacy-step; }
.legal-list.numbered li::before { content: counter(privacy-step); top: 11px; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 6px; color: #315edc; background: #e9efff; font-size: 10px; }
.footer-bottom a { transition: color .18s; }
.footer-bottom a:hover { color: var(--blue); }
.footer-legal-badges {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}
.footer-legal-badges img {
  display: block;
  height: 26px;
  width: auto;
  opacity: .85;
  transition: opacity .18s;
}
.footer-legal-badges a:hover img {
  opacity: 1;
}

.about-page { background: #fff; }
.about-hero { position: relative; overflow: hidden; padding: 116px 0 96px; background: radial-gradient(circle at 72% 34%, rgba(210,239,255,.82), transparent 28%), radial-gradient(circle at 21% 10%, rgba(239,222,255,.75), transparent 26%), #fff; }
.about-hero::after { content: ""; position: absolute; inset: auto -12% -56% 40%; height: 520px; border-radius: 50%; background: rgba(221,233,255,.62); filter: blur(85px); }
.about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .7fr; align-items: center; gap: 96px; }
.about-hero h1 { max-width: 760px; margin: 0; color: #101827; font-family: Manrope,sans-serif; font-size: clamp(52px,6.2vw,82px); line-height: .99; letter-spacing: -.062em; }
.about-hero-grid > div:first-child > p { max-width: 660px; margin: 25px 0 30px; color: #657287; font-size: 18px; line-height: 1.7; }
.about-signal { position: relative; padding: 36px; border: 1px solid rgba(205,217,235,.92); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 28px 70px rgba(35,53,88,.13); backdrop-filter: blur(18px); }
.about-signal > span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 42px; border-radius: 16px; color: #fff; background: linear-gradient(145deg,#4d7ff2,#7256dd); font-size: 22px; box-shadow: 0 12px 25px rgba(68,90,207,.24); }
.about-signal strong { display: block; color: #111827; font-family: Manrope,sans-serif; font-size: 37px; letter-spacing: -.045em; }
.about-signal p { margin: 10px 0 24px; color: #68758a; font-size: 14px; line-height: 1.65; }
.about-signal div { display: flex; flex-wrap: wrap; gap: 7px; }
.about-signal div b { padding: 7px 10px; border-radius: 999px; color: #52637a; background: #f0f4fa; font-size: 10px; }
.about-intro { padding-bottom: 86px; }
.about-intro-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 105px; align-items: start; }
.about-intro .section-heading h2 { max-width: 520px; margin-bottom: 0; font-size: 48px; }
.about-prose { padding-top: 32px; }
.about-prose p { margin: 0 0 22px; color: #526178; font-size: 20px; line-height: 1.7; }
.about-principles { border-top: 1px solid #edf0f4; background: #f8fafc; }
.about-principle-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 48px; border: 1px solid #e1e6ed; border-radius: 18px; background: #fff; overflow: hidden; }
.about-principle-grid article { min-height: 305px; padding: 35px; border-right: 1px solid #e5e9ef; }
.about-principle-grid article:last-child { border-right: 0; }
.about-principle-grid article > span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 45px; border-radius: 13px; color: #315fe5; background: #edf2ff; font-size: 18px; }
.about-principle-grid article:nth-child(2) > span { color: #7a5b22; background: #fff5d8; }
.about-principle-grid article:nth-child(3) > span { color: #138257; background: #e9f8f1; }
.about-principle-grid h3 { margin: 0 0 12px; font-family: Manrope,sans-serif; font-size: 19px; }
.about-principle-grid p { margin: 0; color: #657287; font-size: 14px; line-height: 1.7; }
.about-purpose { background: #111d30; }
.about-purpose-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 90px; align-items: start; }
.about-purpose-lead > span { color: #73a8ff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-purpose-lead h2 { margin: 14px 0 18px; color: #fff; font-family: Manrope,sans-serif; font-size: 45px; line-height: 1.12; letter-spacing: -.04em; }
.about-purpose-lead p { margin: 0; color: #aebbd0; font-size: 16px; line-height: 1.7; }
.about-purpose-list { display: grid; }
.about-purpose-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.about-purpose-list article:first-child { padding-top: 0; }
.about-purpose-list article > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(126,169,246,.35); border-radius: 12px; color: #7eacf7; font-size: 11px; font-weight: 800; }
.about-purpose-list h3 { margin: 0 0 7px; color: #fff; font-family: Manrope,sans-serif; font-size: 18px; }
.about-purpose-list p { margin: 0; color: #aebbd0; font-size: 14px; line-height: 1.65; }
.about-contact { padding-top: 88px; }
.about-contact-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; padding: 42px 48px; border: 1px solid #dbe3ef; border-radius: 20px; background: linear-gradient(115deg,#eff4ff,#fff 48%,#f5edff); box-shadow: 0 20px 48px rgba(37,54,87,.08); }
.about-contact-card > div:first-child > span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-contact-card h2 { margin: 7px 0 5px; font-family: Manrope,sans-serif; font-size: 34px; letter-spacing: -.04em; }
.about-contact-card p { margin: 0; color: #677489; }
.about-contact-actions { display: flex; gap: 10px; }
.about-contact-actions a { min-width: 205px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid #d9e1ed; border-radius: 12px; background: rgba(255,255,255,.84); }
.about-contact-actions a:hover { border-color: #aebee0; transform: translateY(-2px); }
.about-contact-actions a > i { color: #315fe4; }
.about-contact-actions span { display: grid; gap: 3px; }
.about-contact-actions small { color: #7f899a; font-size: 10px; }
.about-contact-actions b { color: #202b3e; font-size: 12px; }

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-index { position: static; grid-template-columns: repeat(2,1fr); }
  .legal-index b { grid-column: 1/-1; }
  .about-hero-grid,.about-intro-grid,.about-purpose-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-signal { max-width: 520px; }
  .about-principle-grid { grid-template-columns: 1fr; }
  .about-principle-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #e5e9ef; }
  .about-principle-grid article:last-child { border-bottom: 0; }
  .about-principle-grid article > span { margin-bottom: 25px; }
  .about-contact-card { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .content-hero { padding: 88px 0 54px; }
  .content-hero h1 { font-size: 43px; }
  .content-hero p { font-size: 16px; }
  .legal-content-section { padding-top: 35px; }
  .legal-index { display: flex; overflow-x: auto; padding: 9px; }
  .legal-index b { display: none; }
  .legal-index a { flex: none; }
  .legal-section { padding: 27px 22px; border-radius: 14px; }
  .legal-section h2 { font-size: 24px; }
  .legal-section p { font-size: 14px; }
  .legal-definitions > div { grid-template-columns: 1fr; gap: 7px; }
  .about-hero { padding: 88px 0 66px; }
  .about-hero h1 { font-size: 46px; }
  .about-hero-grid > div:first-child > p { font-size: 16px; }
  .about-signal { padding: 27px; }
  .about-intro .section-heading h2,.about-purpose-lead h2 { font-size: 36px; }
  .about-prose p { font-size: 17px; }
  .about-principle-grid article { padding: 27px; }
  .about-contact-card { padding: 28px 22px; }
  .about-contact-actions { flex-direction: column; }
  .about-contact-actions a { min-width: 0; }
}

/* Resource Center */
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.resource-center-page [hidden],.resource-article-page [hidden] { display: none!important; }
.content-nav .main-nav a.active { color: var(--blue); }
.resource-center-page,.resource-article-page { color: #111827; background: #fff; }
.resource-center-hero { position: relative; overflow: hidden; padding: 132px 0 64px; border-bottom: 1px solid #e7ebf1; background: radial-gradient(circle at 15% 14%,rgba(236,220,255,.75),transparent 27%),radial-gradient(circle at 86% 28%,rgba(208,239,255,.78),transparent 28%),#fff; }
.resource-center-hero::after { content: ""; position: absolute; inset: auto 22% -180px; height: 300px; border-radius: 50%; background: rgba(225,237,255,.64); filter: blur(70px); }
.resource-center-hero .site-container { position: relative; z-index: 1; text-align: center; }
.resource-center-hero .site-container>span { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.resource-center-hero h1 { max-width: 820px; margin: 15px auto 0; font-family: Manrope,sans-serif; font-size: clamp(48px,6.2vw,78px); line-height: 1; letter-spacing: -.06em; }
.resource-center-hero p { margin: 21px auto 30px; color: #68758a; font-size: 18px; }
.resource-search { max-width: 670px; min-height: 58px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; margin: 0 auto; padding: 0 17px; border: 1px solid #dce3ed; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 20px 50px rgba(36,53,87,.1); text-align: left; }
.resource-search>i { color: #3c66df; }
.resource-search input { width: 100%; border: 0; outline: 0; color: #172135; background: transparent; font: 500 15px "DM Sans",sans-serif; }
.resource-search input::placeholder { color: #939cad; }
.resource-search kbd { padding: 4px 8px; border: 1px solid #dfe4eb; border-bottom-width: 2px; border-radius: 7px; color: #818b9d; background: #f8fafc; font-size: 11px; }
.resource-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 21px; }
.resource-filters button { min-height: 36px; padding: 0 14px; border: 1px solid #dce3ec; border-radius: 999px; color: #647087; background: rgba(255,255,255,.82); font: 700 12px "DM Sans",sans-serif; cursor: pointer; transition: .18s ease; }
.resource-filters button:hover,.resource-filters button.active { color: #fff; border-color: #3265e9; background: #3265e9; box-shadow: 0 8px 20px rgba(50,101,233,.2); }
.resource-center-content { padding-top: 72px; }
.resource-featured { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 430px; overflow: hidden; border: 1px solid #dfe5ed; border-radius: 22px; background: #fff; box-shadow: 0 25px 65px rgba(37,54,87,.09); }
.resource-featured-image { min-height: 430px; overflow: hidden; background: #12243a; }
.resource-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.resource-featured>div:last-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 54px; }
.resource-featured small,.resource-card-content small { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.resource-featured h2 { margin: 14px 0 16px; font-family: Manrope,sans-serif; font-size: 39px; line-height: 1.13; letter-spacing: -.045em; }
.resource-featured p { margin: 0 0 28px; color: #637087; font-size: 16px; line-height: 1.7; }
.resource-center-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.resource-center-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #e0e5ed; border-radius: 18px; color: inherit; background: #fff; transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.resource-center-card:hover { transform: translateY(-4px); border-color: #bdcbea; box-shadow: 0 18px 42px rgba(38,54,83,.1); }
.resource-card-visual { min-height: 155px; display: grid; place-items: center; color: #5f52d9; background: linear-gradient(135deg,#f0eaff,#e6e2ff); font-size: 38px; }
.resource-card-visual.blue { color: #2773df; background: linear-gradient(135deg,#e8f2ff,#dff0ff); }
.resource-card-visual.yellow { color: #ad8315; background: linear-gradient(135deg,#fff7d6,#fff0b8); }
.resource-card-visual.mint { color: #138360; background: linear-gradient(135deg,#e6f8f1,#d7f3e8); }
.resource-card-content { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 26px; }
.resource-card-content strong { margin: 10px 0 9px; font-family: Manrope,sans-serif; font-size: 20px; line-height: 1.28; letter-spacing: -.025em; }
.resource-card-content p { margin: 0 0 22px; color: #69768a; font-size: 14px; line-height: 1.65; }
.resource-card-content b { margin-top: auto; color: #24324a; font-size: 12px; }
.resource-card-content b i { margin-left: 5px; color: var(--blue); transition: transform .18s; }
.resource-center-card:hover b i { transform: translateX(3px); }
.resource-no-results { padding: 70px 20px; text-align: center; }
.resource-no-results>i { color: #7890c9; font-size: 32px; }
.resource-no-results h2 { margin: 17px 0 8px; font: 700 26px Manrope,sans-serif; }
.resource-no-results p { margin: 0; color: #6e7a8d; }
.resources-all-link { display: flex; justify-content: center; margin: 30px 0 0; }
.resources-all-link a { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 0 18px; border: 1px solid #d7dfeb; border-radius: 10px; color: #2b56c9; background: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 9px 24px rgba(38,56,90,.06); }
.resources-all-link a:hover { border-color: #aebee0; transform: translateY(-2px); }
.article-hero { position: relative; overflow: hidden; padding: 126px 0 72px; border-bottom: 1px solid #e7ebf1; background: radial-gradient(circle at 86% 18%,rgba(209,238,255,.74),transparent 29%),radial-gradient(circle at 12% 60%,rgba(238,220,255,.66),transparent 28%),#fff; }
.article-hero-inner { position: relative; z-index: 1; max-width: 980px; }
.article-hero nav { display: flex; align-items: center; gap: 9px; margin-bottom: 40px; color: #8290a5; font-size: 12px; }
.article-hero nav a:hover { color: var(--blue); }
.article-hero nav i { font-size: 7px; }
.article-category { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: #315fda; background: #edf2ff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.article-hero h1 { max-width: 920px; margin: 18px 0; font-family: Manrope,sans-serif; font-size: clamp(44px,5.4vw,72px); line-height: 1.03; letter-spacing: -.058em; }
.article-hero>div>p { max-width: 760px; margin: 0; color: #657287; font-size: 19px; line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #758195; font-size: 12px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta i { color: #436bd7; }
.article-layout { display: grid; grid-template-columns: 235px minmax(0,790px); justify-content: center; align-items: start; gap: 60px; padding-top: 64px; padding-bottom: 86px; }
.article-toc { position: sticky; top: 95px; display: grid; gap: 13px; padding: 20px; border: 1px solid #e0e6ef; border-radius: 16px; background: #fff; box-shadow: 0 16px 38px rgba(35,51,80,.06); }
.article-toc>b { margin: 1px 8px 5px; font: 700 14px Manrope,sans-serif; }
.article-toc nav { display: grid; gap: 3px; }
.article-toc nav a { display: grid; grid-template-columns: 24px 1fr; gap: 7px; padding: 8px; border-radius: 8px; color: #69768a; font-size: 11px; line-height: 1.35; }
.article-toc nav a:hover { color: #2858d9; background: #eef3ff; }
.article-toc nav span { color: #a0a8b6; font-size: 9px; font-weight: 800; }
.article-back { display: flex; align-items: center; gap: 8px; margin: 4px 8px 0; padding-top: 14px; border-top: 1px solid #e8ecf2; color: #315edc; font-size: 11px; font-weight: 800; }
.article-main { min-width: 0; }
.article-prose { color: #4d5c72; font-size: 17px; line-height: 1.82; }
.article-prose h2 { scroll-margin-top: 105px; margin: 58px 0 18px; color: #121b2a; font: 750 32px/1.2 Manrope,sans-serif; letter-spacing: -.035em; }
.article-prose h2:first-child { margin-top: 0; }
.article-prose h3 { scroll-margin-top: 105px; margin: 35px 0 14px; color: #253349; font: 700 21px/1.3 Manrope,sans-serif; }
.article-prose p { margin: 0 0 21px; }
.article-prose strong { color: #223149; }
.article-prose a { color: #315fdc; text-decoration: underline; text-decoration-color: #c5d4fb; text-underline-offset: 3px; }
.article-prose ul,.article-prose ol { display: grid; gap: 10px; margin: 0 0 25px; padding-left: 24px; }
.article-prose li { padding-left: 5px; }
.article-prose li::marker { color: #2b65e4; font-weight: 800; }
.article-prose blockquote { margin: 30px 0; padding: 22px 24px; border-left: 4px solid #4b70e6; border-radius: 0 13px 13px 0; color: #34435b; background: #f1f5ff; font-size: 17px; font-weight: 650; }
.article-prose code { padding: 2px 6px; border-radius: 5px; color: #2954c8; background: #edf2ff; font-size: .88em; }
.article-prose pre { overflow-x: auto; margin: 28px 0; padding: 23px; border-radius: 14px; color: #d6e4ff; background: #122139; box-shadow: 0 18px 35px rgba(15,29,51,.15); }
.article-prose pre code { padding: 0; color: inherit; background: transparent; font-size: 13px; line-height: 1.7; }
.article-cta { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 22px; margin-top: 62px; padding: 30px; border: 1px solid #d8e1ef; border-radius: 18px; background: linear-gradient(115deg,#edf3ff,#fff 48%,#f2ebff); box-shadow: 0 18px 42px rgba(38,55,88,.08); }
.article-cta>span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(145deg,#367cf2,#6856dc); font-size: 19px; }
.article-cta small { color: #4168d5; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.article-cta h2 { margin: 5px 0 4px; font: 700 21px Manrope,sans-serif; }
.article-cta p { margin: 0; color: #6b7789; font-size: 13px; line-height: 1.55; }
.article-cta .primary-button { white-space: nowrap; }
.article-related { border-top: 1px solid #e8ecf2; background: #f8fafc; }
.article-related .section-heading h2 { margin-bottom: 0; }
.article-related .resource-center-card.compact .resource-card-visual { min-height: 120px; }

@media (max-width: 980px) {
  .resource-featured { grid-template-columns: 1fr; }
  .resource-featured-image { min-height: 330px; }
  .resource-center-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-toc { position: static; }
  .article-toc nav { grid-template-columns: 1fr 1fr; }
  .article-cta { grid-template-columns: auto 1fr; }
  .article-cta .primary-button { grid-column: 1/-1; justify-self: start; }
}
@media (max-width: 700px) {
  .resource-center-hero { padding: 98px 0 48px; }
  .resource-center-hero h1 { font-size: 45px; }
  .resource-center-hero p { font-size: 16px; }
  .resource-search { min-height: 54px; }
  .resource-search kbd { display: none; }
  .resource-featured-image { min-height: 230px; }
  .resource-featured>div:last-child { padding: 30px 24px; }
  .resource-featured h2 { font-size: 29px; }
  .resource-center-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 98px 0 54px; }
  .article-hero nav { overflow: hidden; margin-bottom: 28px; white-space: nowrap; }
  .article-hero h1 { font-size: 42px; }
  .article-hero>div>p { font-size: 16px; }
  .article-meta { gap: 10px 16px; }
  .article-layout { padding-top: 35px; padding-bottom: 58px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .article-prose { font-size: 16px; }
  .article-prose h2 { margin-top: 45px; font-size: 27px; }
  .article-prose h3 { font-size: 19px; }
  .article-cta { grid-template-columns: 1fr; padding: 25px 22px; }
  .article-cta .primary-button { grid-column: auto; }
}

/* Search-intent sections and dedicated service pages */
.seo-intent-section {
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  background: radial-gradient(circle at 12% 20%, rgba(232, 217, 255, .48), transparent 28%), #f8faff;
}
.seo-intent-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 70px; }
.seo-intent-grid > .section-heading { margin: 0; }
.seo-intent-grid > .section-heading p { max-width: 520px; }
.seo-intent-grid .secondary-button { margin-top: 24px; }
.seo-intent-cards { display: grid; gap: 12px; }
.seo-intent-cards article { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 20px; border: 1px solid #e0e6ef; border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 10px 28px rgba(38,54,92,.05); }
.seo-intent-cards article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: #3768df; background: #edf3ff; }
.seo-intent-cards article:nth-child(2) > span { color: #7658d7; background: #f1edff; }
.seo-intent-cards article:nth-child(3) > span { color: #16895b; background: #e9f8f1; }
.seo-intent-cards h3 { margin: 1px 0 5px; font: 700 17px Manrope,sans-serif; }
.seo-intent-cards p { margin: 0 0 9px; color: #69768a; font-size: 13px; line-height: 1.55; }
.seo-intent-cards a { color: #315dd5; font-size: 12px; font-weight: 800; }
.seo-intent-cards a i { margin-left: 5px; }

.seo-faq { border-top: 1px solid #e8ecf2; background: #f8fafc; }
.seo-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 65px; }
.seo-faq-grid > .section-heading { position: sticky; top: 105px; margin: 0; }
.seo-faq-grid .secondary-button { margin-top: 22px; }
.seo-faq-list { overflow: hidden; border: 1px solid #dde4ee; border-radius: 16px; background: #fff; box-shadow: 0 16px 38px rgba(35,51,80,.06); }
.seo-faq-list details { border-bottom: 1px solid #e7ebf1; }
.seo-faq-list details:last-child { border-bottom: 0; }
.seo-faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 21px; color: #1c273a; font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.seo-faq-list summary::-webkit-details-marker { display: none; }
.seo-faq-list summary i { color: #5370ca; font-size: 12px; transition: transform .18s; }
.seo-faq-list details[open] summary i { transform: rotate(45deg); }
.seo-faq-list details p { margin: -5px 0 0; padding: 0 52px 21px 21px; color: #66748a; font-size: 14px; line-height: 1.68; }

.service-page-hero { position: relative; overflow: hidden; padding: 128px 0 82px; text-align: center; background: radial-gradient(circle at 15% 35%,rgba(238,219,255,.72),transparent 27%),radial-gradient(circle at 86% 25%,rgba(211,239,255,.78),transparent 29%),#fff; }
.service-page-hero::after { content: ""; width: 620px; height: 260px; position: absolute; z-index: 0; right: 50%; bottom: -210px; border-radius: 50%; background: rgba(58,119,244,.08); transform: translateX(50%); filter: blur(24px); }
.service-page-hero > .site-container { position: relative; z-index: 1; max-width: 920px; }
.service-page-hero nav { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 35px; color: #7d899c; font-size: 12px; }
.service-page-hero nav a:hover { color: var(--blue); }
.service-page-hero nav i { font-size: 7px; }
.service-page-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 16px; border: 1px solid #dce6f5; border-radius: 18px; color: #3471e7; background: rgba(255,255,255,.86); box-shadow: 0 15px 35px rgba(45,73,126,.12); font-size: 23px; }
.service-page-hero small { color: #3471e7; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-page-hero h1 { max-width: 900px; margin: 14px auto 18px; font: 750 clamp(44px,5.4vw,70px)/1.04 Manrope,sans-serif; letter-spacing: -.055em; }
.service-page-hero p { max-width: 730px; margin: 0 auto; color: #637187; font-size: 18px; line-height: 1.68; }
.service-page-hero > div > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 29px; }

/* Pricing configurator (service pages) */
.service-page-pricing { background: #f8fafc; border-top: 1px solid #e8ecf2; }
.pricing-configurator { max-width: 620px; margin: 34px auto 0; }
.pricing-config-loading,.pricing-config-fallback { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 40px 20px; color: #66748a; font-size: 14px; text-align: center; }
.pricing-config-fallback i { font-size: 22px; color: #e0a33a; }
.pricing-config-shell { border: 1px solid #dde4ee; border-radius: 18px; background: #fff; box-shadow: 0 18px 44px rgba(35,51,80,.07); overflow: hidden; }
.pricing-config-toggle { display: flex; gap: 6px; padding: 16px 16px 0; }
.pricing-config-toggle button { flex: 1; padding: 10px 12px; border: 1px solid #dde4ee; border-radius: 11px; background: #f5f7fb; color: #4a5568; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .18s; }
.pricing-config-toggle button[aria-selected="true"] { border-color: #3268ee; background: #eef3ff; color: #244fc8; }
.pricing-config-toggle b { color: #18a665; }
.pricing-config-slider-wrap { padding: 18px 20px 4px; }
.pricing-config-slider-wrap input[type="range"] { width: 100%; accent-color: #3268ee; cursor: pointer; }
.pricing-config-steps { display: flex; justify-content: space-between; gap: 6px; margin-top: 10px; }
.pricing-config-steps button { flex: 1; padding: 8px 4px; border: 1px solid transparent; border-radius: 9px; background: transparent; color: #7a8699; font-size: 11px; font-weight: 700; cursor: pointer; transition: all .18s; }
.pricing-config-steps button.active { border-color: #cbd9f5; background: #eef3ff; color: #244fc8; }
.pricing-config-panel { padding: 8px 24px 26px; }
.pricing-config-head { text-align: center; }
.pricing-config-badge { display: inline-block; margin-bottom: 8px; padding: 3px 11px; border-radius: 999px; background: #eef3ff; color: #3268ee; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.pricing-config-head h3 { margin: 0; color: #101827; font-family: Manrope,sans-serif; font-size: 24px; }
.pricing-config-head p { margin: 6px 0 0; color: #66748a; font-size: 13px; }
.pricing-config-amount { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 8px; margin: 18px 0; }
.pricing-config-amount strong { color: #101827; font-family: Manrope,sans-serif; font-size: 38px; letter-spacing: -.03em; }
.pricing-config-amount span { color: #7a8699; font-size: 13px; }
.pricing-config-amount .pricing-config-save { width: 100%; text-align: center; color: #18a665; font-size: 12px; font-style: normal; font-weight: 700; }
.pricing-config-contact { font-size: 24px !important; }
.pricing-config-features { display: grid; gap: 9px; margin: 0 0 22px; padding: 20px 0 0; border-top: 1px solid #eef1f6; list-style: none; }
.pricing-config-features li { display: flex; align-items: center; gap: 10px; color: #45536a; font-size: 13px; }
.pricing-config-features i { color: #18a665; font-size: 12px; }
.pricing-config-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.pricing-config-actions > * { flex: 1; min-width: 160px; justify-content: center; }
.pricing-config-add { cursor: pointer; }
.pricing-config-cta { justify-content: center; }

/* Anonymous marketing cart */
.beonline-cart-button { position: fixed; z-index: 70; right: 22px; bottom: 22px; width: 56px; height: 56px; display: none; align-items: center; justify-content: center; border: none; border-radius: 50%; background: #3268ee; color: #fff; font-size: 19px; cursor: pointer; box-shadow: 0 12px 30px rgba(50,104,238,.4); }
.beonline-cart-button:hover { background: #244fc8; }
.beonline-cart-count { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; display: grid; place-items: center; padding: 0 6px; border-radius: 999px; background: #101827; color: #fff; font-size: 11px; font-weight: 800; }
.beonline-cart-backdrop { position: fixed; inset: 0; z-index: 79; background: rgba(16,24,39,.42); opacity: 0; pointer-events: none; transition: opacity .2s; }
.beonline-cart-backdrop.show { opacity: 1; pointer-events: auto; }
.beonline-cart-drawer { position: fixed; z-index: 80; top: 0; right: 0; width: min(380px,92vw); height: 100%; display: flex; flex-direction: column; background: #fff; box-shadow: -18px 0 44px rgba(16,24,39,.16); transform: translateX(100%); transition: transform .24s ease; }
.beonline-cart-drawer.open { transform: translateX(0); }
.beonline-cart-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 22px 22px 16px; border-bottom: 1px solid #eef1f6; }
.beonline-cart-head small { color: #3268ee; font-size: 11px; font-weight: 800; letter-spacing: .05em; }
.beonline-cart-head h2 { margin: 4px 0 0; color: #101827; font-family: Manrope,sans-serif; font-size: 21px; }
.beonline-cart-close { border: none; background: #f3f5f9; width: 34px; height: 34px; border-radius: 9px; color: #45536a; cursor: pointer; }
.beonline-cart-items { flex: 1; overflow-y: auto; padding: 12px 16px; }
.beonline-cart-items article { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid #eef1f6; border-radius: 12px; margin-bottom: 10px; }
.beonline-cart-items article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #eef3ff; color: #3268ee; }
.beonline-cart-items article > div { flex: 1; min-width: 0; }
.beonline-cart-items b { display: block; color: #1c273a; font-size: 14px; }
.beonline-cart-items small { color: #7a8699; font-size: 12px; }
.beonline-cart-remove { border: none; background: transparent; color: #b3271e; cursor: pointer; padding: 6px; }
.beonline-cart-foot { padding: 16px 20px 22px; border-top: 1px solid #eef1f6; }
.beonline-cart-foot p { margin: 0 0 12px; color: #66748a; font-size: 12px; }
.beonline-cart-foot .beonline-cart-checkout { width: 100%; justify-content: center; cursor: pointer; border: none; }
.beonline-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 40px; text-align: center; }
.beonline-cart-empty span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #f3f5f9; color: #9aa6b8; font-size: 20px; }
.beonline-cart-empty b { color: #1c273a; }
.beonline-cart-empty p { margin: 0; color: #7a8699; font-size: 13px; }
@media (max-width: 620px) {
  .pricing-config-steps button b { font-size: 10px; }
  .pricing-config-amount strong { font-size: 32px; }
}

.service-page-features { background: #fff; }
.service-page-features .section-heading { max-width: 660px; }
.service-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 38px; }
.service-feature-grid article { min-height: 205px; padding: 25px; border: 1px solid #e0e5ed; border-radius: 15px; background: #fff; transition: transform .2s,box-shadow .2s; }
.service-feature-grid article:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(35,51,80,.08); }
.service-feature-grid article > span { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 12px; color: #3768df; background: #edf3ff; }
.service-feature-grid article:nth-child(3n+2) > span { color: #775cda; background: #f1edff; }
.service-feature-grid article:nth-child(3n+3) > span { color: #148a59; background: #e8f8f0; }
.service-feature-grid h2 { margin: 0 0 8px; font: 700 17px Manrope,sans-serif; }
.service-feature-grid p { margin: 0; color: #69768a; font-size: 13px; line-height: 1.62; }

.service-page-depth { border-top: 1px solid #e8ecf2; background: #f8fafc; }
.service-page-depth-grid { display: grid; grid-template-columns: minmax(0,760px) 300px; justify-content: center; align-items: start; gap: 65px; }
.service-page-prose { color: #4f5e73; font-size: 16px; line-height: 1.8; }
.service-page-prose section + section { margin-top: 52px; padding-top: 48px; border-top: 1px solid #e0e5ed; }
.service-page-prose h2 { margin: 0 0 18px; color: #172135; font: 750 31px/1.2 Manrope,sans-serif; letter-spacing: -.035em; }
.service-page-prose p { margin: 0 0 18px; }
.service-page-depth aside { position: sticky; top: 105px; padding: 26px; border: 1px solid #dbe3ef; border-radius: 17px; background: linear-gradient(145deg,#edf3ff,#fff 55%,#f0eaff); box-shadow: 0 18px 38px rgba(35,51,80,.08); }
.service-page-depth aside > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; color: #fff; background: linear-gradient(145deg,#3478f2,#6758d9); }
.service-page-depth aside h2 { margin: 0 0 9px; font: 700 21px/1.25 Manrope,sans-serif; }
.service-page-depth aside p { margin: 0 0 20px; color: #67748a; font-size: 13px; line-height: 1.65; }
.service-page-depth aside .primary-button { width: 100%; justify-content: center; }
.service-page-faq { border-top: 1px solid #e7ebf1; background: #fff; }

@media (max-width: 900px) {
  .seo-intent-grid,.seo-faq-grid,.service-page-depth-grid { grid-template-columns: 1fr; gap: 38px; }
  .seo-faq-grid > .section-heading,.service-page-depth aside { position: static; }
  .service-feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .seo-intent-cards article { grid-template-columns: 42px 1fr; padding: 17px; }
  .seo-intent-cards article > span { width: 42px; height: 42px; }
  .seo-faq-list summary { min-height: 64px; padding: 16px 17px; font-size: 14px; }
  .seo-faq-list details p { padding: 0 40px 19px 17px; font-size: 13px; }
  .service-page-hero { padding: 102px 0 58px; }
  .service-page-hero h1 { font-size: 42px; }
  .service-page-hero p { font-size: 16px; }
  .service-page-hero > div > div { flex-direction: column; }
  .service-page-hero .primary-button,.service-page-hero .secondary-button { width: 100%; justify-content: center; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature-grid article { min-height: auto; }
  .service-page-prose h2 { font-size: 26px; }
}
