:root {
  --font-heading: "Sora", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-primary: var(--font-body);
  --bg-main: #f3f8f5;
  --bg-elevated: #ffffff;
  --bg-surface: #eef5f1;
  --bg-soft: #f6f8fa;
  --text-main: #112027;
  --text-secondary: #566b76;
  --text-dark: #0f141d;
  --line-soft: rgba(15, 33, 45, 0.1);
  --line-strong: rgba(15, 33, 45, 0.2);
  --accent-platform-start: #8ce3c3;
  --accent-platform-end: #d5e790;
  --accent-platform-solid: #7cdab8;
  --accent-scan: #8b5cf6;
  --accent-view: #34a4ff;
  --shadow-soft: 0 10px 32px rgba(18, 35, 45, 0.12);
  --shadow-card: 0 18px 40px rgba(16, 36, 48, 0.12);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.bs-shell {
  width: min(var(--shell-width), 100% - 48px);
  margin: 0 auto;
}

.section-container {
  width: 100%;
}

.content-container {
  width: min(var(--shell-width), 100% - 48px);
  margin: 0 auto;
}

.white-section-container {
  background: #ffffff;
  color: #1b1b1b;
}

.common-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 19px);
}

.header-text {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

.bold-text {
  font-weight: 700;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bs-section {
  padding: 90px 0;
}

.bs-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(242, 249, 245, 0.95));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.bs-section-header {
  max-width: 760px;
  margin-bottom: 34px;
  animation: rise-in 0.65s ease both;
}

.bs-overline {
  margin: 0;
  color: #2a7f5f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.bs-section-title {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(29px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.bs-section-description {
  margin: 15px 0 0;
  font-size: clamp(16px, 1.9vw, 20px);
  color: var(--text-secondary);
}

@media screen and (max-width: 740px) {
  .bs-section {
    padding: 66px 0;
  }
  .bs-section-header {
    text-align: center;
  }
  .bs-section-description {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .bs-shell,
  .content-container {
    width: calc(100% - 28px);
  }
}
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.header-container.active {
  background: rgba(246, 252, 249, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 28px rgba(16, 34, 45, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-content {
  display: flex;
  align-items: center;
}

.header-logo {
  width: min(43vw, 220px);
}

.header-navigation {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #1f3139;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-navigation > * {
  flex: 0 0 auto;
}

.header-link:hover {
  background: rgba(17, 38, 52, 0.08);
}

.header-link-subtle {
  border: 1px solid rgba(17, 38, 52, 0.2);
}

.header-link-primary {
  color: #123125;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--accent-platform-start), var(--accent-platform-end));
}

.header-link-primary:hover {
  color: #123125;
  background: linear-gradient(90deg, #95e9ca, #deee9c);
}

.language-dropdown {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.language-toggle {
  border-radius: 999px;
  border: 1px solid rgba(17, 38, 52, 0.2);
  background: transparent;
  color: #111111;
  min-height: 42px;
  min-width: 96px;
  padding: 0 36px 0 14px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.language-toggle::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-60%) rotate(45deg);
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  pointer-events: none;
}

.language-toggle:hover,
.language-dropdown.open .language-toggle {
  background: rgba(17, 38, 52, 0.08);
  border-color: rgba(17, 38, 52, 0.32);
}

.language-toggle:focus-visible {
  outline: 2px solid rgba(17, 38, 52, 0.28);
  outline-offset: 2px;
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 38, 52, 0.2);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(16, 34, 45, 0.18);
  padding: 6px;
  display: none;
  z-index: 220;
}

.language-dropdown.open .language-dropdown-menu {
  display: grid;
  gap: 2px;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  min-height: 32px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #22343e;
}

.language-option:hover {
  background: rgba(17, 38, 52, 0.08);
}

.language-option.active {
  background: rgba(124, 218, 184, 0.22);
  color: #153b2d;
}

.header-mobile-language {
  display: none;
  align-items: center;
  flex: 0 0 auto;
}

@media screen and (max-width: 900px) {
  .header-navigation {
    display: none;
  }
  .header-mobile-language {
    display: inline-flex;
    margin-left: auto;
  }
}
.bs-main {
  position: relative;
  overflow: hidden;
  background: radial-gradient(2100px 1260px at 88% -8%, rgba(140, 227, 195, 0.36), transparent 58%), radial-gradient(1600px 925px at 10% 0%, rgba(154, 206, 255, 0.2), transparent 60%), linear-gradient(180deg, #f7fbf9 0%, #eff6f2 48%, #f8fbfa 100%);
}

.bs-hero-section {
  position: relative;
  padding: 132px 0 74px;
}

.bs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.bs-orb-top {
  width: 630px;
  height: 630px;
  top: -310px;
  right: -260px;
  background: radial-gradient(circle, rgba(124, 218, 184, 0.36) 0%, rgba(124, 218, 184, 0) 70%);
}

.bs-orb-bottom {
  width: 735px;
  height: 735px;
  bottom: -430px;
  left: -310px;
  background: radial-gradient(circle, rgba(213, 231, 144, 0.3) 0%, rgba(213, 231, 144, 0) 66%);
}

.bs-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.bs-hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 13ch;
  text-wrap: balance;
}

.bs-hero-description {
  margin: 24px 0 0;
  max-width: 58ch;
  color: var(--text-secondary);
  font-size: clamp(17px, 2vw, 21px);
}

.bs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.bs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.bs-button-primary {
  color: #123125;
  background: linear-gradient(90deg, var(--accent-platform-start) 0%, var(--accent-platform-end) 100%);
  box-shadow: 0 10px 26px rgba(124, 218, 184, 0.3);
}

.bs-button-primary:hover {
  box-shadow: 0 12px 30px rgba(124, 218, 184, 0.34);
}

.bs-button-secondary {
  color: #22343e;
  border-color: rgba(18, 37, 49, 0.2);
  background: rgba(255, 255, 255, 0.75);
}

.bs-button-secondary:hover {
  background: rgb(255, 255, 255);
  border-color: rgba(18, 37, 49, 0.32);
}

.bs-button-tertiary {
  width: 100%;
  margin-top: auto;
  color: #1b2d35;
  border-color: rgba(114, 193, 164, 0.45);
  background: rgba(124, 218, 184, 0.16);
}

.bs-button-tertiary:hover {
  border-color: rgba(98, 178, 150, 0.66);
  background: rgba(124, 218, 184, 0.24);
}

.bs-metric-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bs-metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 128px;
  border: 1px solid rgba(17, 36, 48, 0.13);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.75);
}

.bs-metric-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bs-metric-icon {
  width: 30px;
  height: 30px;
  color: #2a8f69;
  flex-shrink: 0;
}

.bs-metric-icon-accent {
  color: #2a8f69;
}

.bs-metric-value {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.01em;
}

.bs-metric-label {
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 13px;
}

.bs-metric-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  border-radius: 999px;
  border: 1px solid rgba(17, 38, 52, 0.22);
  background: rgba(17, 38, 52, 0.08);
  color: #33464f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  text-transform: uppercase;
}

.bs-hero-showcase {
  position: relative;
  display: grid;
  gap: 16px;
}

.bs-preview-card,
.bs-snippet-card {
  border: 1px solid rgba(17, 38, 52, 0.14);
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bs-preview-card {
  position: relative;
  margin-top: 10px;
}

.bs-video-frame {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(246, 252, 250, 0.82);
}

.spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(18, 37, 49, 0.12);
  border-top-color: rgb(116, 200, 167);
  animation: spin 1s linear infinite;
}

.bs-snippet-card {
  padding: 16px;
}

.bs-snippet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bs-snippet-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 17px;
}

.bs-chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(116, 200, 167, 0.56);
  color: #1f6b51;
  background: rgba(124, 218, 184, 0.18);
  font-size: 12px;
  padding: 4px 10px;
}

.bs-code-snippet-wrap {
  margin: 12px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  border: 1px solid rgba(17, 38, 52, 0.1);
  border-radius: var(--radius-sm);
  background: #f3f8f5;
  overflow: hidden;
}

.bs-code-snippet-area {
  width: 100%;
  min-height: 100px;
  border: 0;
  background: transparent;
  padding: 12px;
  font-family: "SF Mono", "Roboto Mono", "Menlo", monospace;
  font-size: 12px;
  line-height: 1.5;
  color: #254556;
  overflow: auto;
  scrollbar-gutter: stable;
  resize: none;
}

.bs-code-snippet-area:focus {
  outline: none;
}

.bs-copy-button {
  width: 46px;
  min-height: 100%;
  border: 0;
  border-left: 1px solid rgba(17, 38, 52, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: #1f6b51;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bs-copy-button:hover {
  background: #ffffff;
}

.bs-copy-button:focus-visible {
  outline: 2px solid rgba(42, 143, 105, 0.5);
  outline-offset: 2px;
}

.bs-copy-button svg {
  width: 18px;
  height: 18px;
}

.bs-copy-button.copied {
  background: rgba(124, 218, 184, 0.24);
}

.bs-copy-status {
  display: none;
  margin: 2px 0 10px auto;
  min-height: 24px;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 143, 105, 0.28);
  background: rgba(124, 218, 184, 0.18);
  font-size: 12px;
  font-weight: 700;
  color: #1f6b51;
  text-align: right;
}

.bs-copy-status.is-visible {
  display: inline-block;
}

.bs-copy-status.error {
  border-color: rgba(165, 55, 55, 0.28);
  background: rgba(229, 106, 106, 0.14);
  color: #a53737;
}

.bs-snippet-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.bs-hero-content,
.bs-hero-showcase {
  animation: rise-in 0.65s ease both;
}

.bs-hero-showcase {
  animation-delay: 0.08s;
}

@media screen and (max-width: 1080px) {
  .bs-hero-grid {
    grid-template-columns: 1fr;
  }
  .bs-hero-title {
    max-width: none;
  }
}
@media screen and (max-width: 740px) {
  .bs-hero-section {
    padding-top: 116px;
  }
  .bs-metric-grid {
    grid-template-columns: 1fr;
  }
  .bs-hero-content,
  .bs-metric-item {
    text-align: center;
  }
  .bs-hero-title,
  .bs-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .bs-metric-head {
    justify-content: center;
  }
  .bs-metric-chip {
    align-self: center;
  }
  .bs-hero-actions {
    width: 100%;
    justify-content: center;
  }
  .bs-button {
    width: 100%;
  }
}
.bs-what-is-grid {
  align-items: start;
}

@media screen and (min-width: 1081px) {
  .bs-what-is-grid {
    grid-template-columns: 40% minmax(0, 60%);
  }
}
.bs-what-is-media {
  margin-top: 38px;
}

.bs-what-is-embed-card {
  border: 1px solid rgba(17, 38, 52, 0.14);
  background: #eef5f1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bs-what-is-actions {
  margin-top: 24px;
}

.bs-what-is-content {
  max-width: none;
  margin-bottom: 0;
}

.bs-what-is-body {
  margin-top: 14px;
  max-width: 86ch;
}

#what-is-blendspace .bs-section-description {
  margin-top: 0;
}

#what-is-blendspace .bs-section-description + .bs-section-description {
  margin-top: 12px;
}

.bs-support-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bs-support-link {
  display: inline;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(82, 102, 114, 0.45);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.bs-support-link:hover {
  color: #2a3f4b;
  text-decoration-color: rgba(42, 63, 75, 0.72);
}

@media screen and (max-width: 740px) {
  .bs-what-is-body {
    text-align: center;
  }
  .bs-support-links {
    justify-content: center;
  }
  .bs-what-is-actions {
    justify-content: center;
  }
}
@media screen and (max-width: 1080px) {
  .bs-what-is-content {
    order: 1;
  }
  .bs-what-is-media {
    order: 2;
    margin-top: 8px;
  }
}
.bs-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "upload or turnkey" "processing processing processing" "publish publish publish";
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.bs-workflow-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(17, 38, 52, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  position: relative;
  min-height: 204px;
  animation: rise-in 0.65s ease both;
}

.bs-workflow-step-upload {
  grid-area: upload;
}

.bs-workflow-step-turnkey {
  grid-area: turnkey;
}

.bs-workflow-step-upload,
.bs-workflow-step-turnkey {
  max-width: 300px;
  width: 100%;
}

.bs-workflow-step-upload {
  justify-self: end;
}

.bs-workflow-step-turnkey {
  justify-self: start;
}

.bs-workflow-step-processing {
  grid-area: processing;
}

.bs-workflow-step-publish {
  grid-area: publish;
}

.bs-workflow-step-processing,
.bs-workflow-step-publish {
  width: min(100%, 460px);
  justify-self: center;
}

.bs-workflow-or {
  grid-area: or;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 28px;
}

.bs-workflow-or::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(17, 38, 52, 0.13);
  transform: translateX(-50%);
}

.bs-workflow-or-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 38, 52, 0.13);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.bs-workflow-step:nth-child(2) {
  animation-delay: 0.08s;
}

.bs-workflow-step:nth-child(3) {
  animation-delay: 0.13s;
}

.bs-workflow-step h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: -0.015em;
}

.bs-workflow-step p {
  margin: 0;
  color: var(--text-secondary);
}

.bs-workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 15px;
  background: linear-gradient(90deg, var(--accent-platform-start) 0%, var(--accent-platform-end) 100%);
  color: #0f141d;
}

.bs-workflow-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 740px) {
  .bs-workflow-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "upload" "or" "turnkey" "processing" "publish";
  }
  .bs-workflow-step-upload,
  .bs-workflow-step-turnkey {
    max-width: none;
    justify-self: stretch;
  }
  .bs-workflow-or {
    min-height: 28px;
  }
  .bs-workflow-or::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
  }
  .bs-workflow-cta .bs-button {
    width: 100%;
  }
}
.bs-app-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(17, 38, 52, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  min-height: 300px;
  animation: rise-in 0.65s ease both;
}

.bs-app-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: -0.015em;
}

.bs-app-card p {
  margin: 0;
  color: var(--text-secondary);
}

.bs-app-card .bs-app-status {
  width: fit-content;
  margin: 2px 0 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 38, 52, 0.22);
  background: rgba(17, 38, 52, 0.08);
  color: #2f3f48;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#apps.bs-section-alt {
  border-top: 0;
  border-bottom: 0;
}

#apps .bs-shell {
  position: relative;
  overflow: visible;
}

.bs-apps-device {
  position: absolute;
  top: -370px;
  right: -64px;
  width: clamp(280px, 29vw, 390px);
  z-index: 0;
  pointer-events: none;
}

.bs-apps-device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(10, 18, 26, 0.18));
}

#apps .bs-section-header,
#apps .bs-app-grid {
  position: relative;
  z-index: 1;
}

.bs-apps-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

.bs-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bs-app-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.bs-app-badge-platform {
  border-color: rgba(114, 193, 164, 0.4);
  color: #2b7e5f;
  background: rgba(124, 218, 184, 0.14);
}

.bs-app-badge-scan {
  border-color: rgba(139, 92, 246, 0.3);
  color: #6849c7;
  background: rgba(139, 92, 246, 0.1);
}

.bs-app-badge-view {
  border-color: rgba(52, 164, 255, 0.35);
  color: #256db7;
  background: rgba(52, 164, 255, 0.12);
}

.bs-app-card-platform {
  border-color: rgba(114, 193, 164, 0.5);
}

.bs-app-card-scan {
  border-color: rgba(139, 92, 246, 0.28);
}

.bs-app-card-view {
  border-color: rgba(52, 164, 255, 0.32);
}

.bs-app-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bs-app-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}

.bs-app-list li::before {
  content: "";
  margin-top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent-platform-start), var(--accent-platform-end));
  flex-shrink: 0;
}

.bs-app-card:nth-child(2) {
  animation-delay: 0.08s;
}

.bs-app-card:nth-child(3) {
  animation-delay: 0.13s;
}

@media screen and (max-width: 1080px) {
  .bs-apps-device {
    display: none;
  }
  .bs-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 740px) {
  .bs-app-grid {
    grid-template-columns: 1fr;
  }
  .bs-app-card {
    padding: 18px;
    text-align: left;
  }
  .bs-app-list li {
    justify-content: flex-start;
    text-align: left;
  }
  .bs-apps-cta .bs-button {
    width: 100%;
  }
}
.bs-plan {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(17, 38, 52, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  min-height: 430px;
  animation: rise-in 0.65s ease both;
}

.bs-plan h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: -0.015em;
}

.bs-plan p {
  margin: 0;
  color: var(--text-secondary);
}

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

.bs-pricing-billing {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(17, 38, 52, 0.18);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 4px;
}

.bs-pricing-billing-hint {
  margin: -8px 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: #2f4a58;
}

.bs-pricing-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bs-pricing-contact-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.bs-pricing-billing-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #22343e;
  min-height: 34px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bs-pricing-billing-button.active {
  color: #123125;
  background: linear-gradient(90deg, var(--accent-platform-start), var(--accent-platform-end));
}

.bs-plan-featured {
  border-color: rgba(114, 193, 164, 0.58);
  transform: translateY(-4px);
  background: linear-gradient(175deg, rgba(124, 218, 184, 0.16), rgba(255, 255, 255, 0.95));
}

.bs-plan-price {
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  color: #16242d;
  letter-spacing: -0.03em;
}

.bs-plan-price-value {
  font-size: inherit;
  color: inherit;
}

.bs-plan-price-period {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
}

.bs-plan-save {
  width: fit-content;
  margin-top: -6px;
  font-size: 13px;
  font-weight: 700;
  color: #173126;
  background: linear-gradient(90deg, var(--accent-platform-start), var(--accent-platform-end));
  border-radius: 999px;
  padding: 4px 10px;
}

.bs-plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bs-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}

.bs-check {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(124, 218, 184, 0.2);
  border: 1px solid rgba(114, 193, 164, 0.55);
  flex-shrink: 0;
}

.bs-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #2b7e5f;
  border-bottom: 2px solid #2b7e5f;
  transform: rotate(40deg);
}

.bs-plan:nth-child(2) {
  animation-delay: 0.08s;
}

.bs-plan:nth-child(3) {
  animation-delay: 0.13s;
}

@media screen and (max-width: 1080px) {
  .bs-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bs-plan-featured {
    transform: none;
  }
}
@media screen and (max-width: 740px) {
  .bs-pricing-billing {
    display: flex;
    margin: 0 auto 20px;
    width: fit-content;
  }
  .bs-pricing-grid {
    grid-template-columns: 1fr;
  }
  .bs-pricing-billing-hint {
    margin: -8px 0 18px;
    text-align: center;
  }
  .bs-plan {
    padding: 18px;
    text-align: left;
  }
  .bs-plan-features li {
    justify-content: flex-start;
    text-align: left;
  }
  .bs-pricing-contact-text {
    text-align: center;
  }
}
.footer-container {
  padding: 40px 0 34px;
  border-top: 1px solid var(--line-soft);
  background: #f9fcfa;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 41px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-subtitle {
  margin: 12px 0 0;
  color: var(--text-secondary);
}

.footer-email {
  margin-top: 8px;
  display: inline-flex;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  background: linear-gradient(90deg, #2a8f69, #8aad2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-copyright-container {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-link {
  text-decoration: none;
  color: #1f3139;
}

.footer-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .footer-main {
    flex-direction: column;
  }
}
@media screen and (max-width: 740px) {
  .footer-copyright-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.eshop-hint-container {
  padding-top: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.eshop-hint-text {
  text-align: left;
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}

.eshop-hint-qr {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 6px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.eshop-container {
  padding: 92px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
  gap: 92px;
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  background-color: rgb(245, 245, 245);
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-sizing: border-box;
}

.tile-title {
  font-family: var(--font-primary);
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .eshop-container {
    padding: 32px;
    gap: 48px;
  }
}
@media screen and (max-width: 500px) {
  .eshop-container {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 64px;
    gap: 48px;
  }
  .tile-container {
    padding: 24px;
    width: 100%;
    max-width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */