@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito-latin-ext-wght-normal.v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}:root {
  --color-primary: #0f766e;
  --color-primary-dark: #115e59;
  --color-primary-active: #134e4a;
  --color-primary-soft: #ccfbf1;
  --color-primary-very-soft: #f0fdfa;
  --color-accent-cyan: #0f766e;
  --color-accent-cyan-soft: #f0fdfa;
  --color-success: #16a34a;
  --color-success-soft: #eaf7ef;
  --color-warning: #f59e0b;
  --color-warning-soft: #fff7df;
  --color-error: #dc2626;
  --color-error-soft: #fef2f2;
  --color-ink: #1e293b;
  --color-ink-soft: #1e293b;
  --color-text: #475569;
  --color-muted: #64748b;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-soft: #f8fafc;
  --color-line: #e2e8f0;
  --color-line-strong: #cbd5e1;
  --color-logo-joy: #2c3e50;
  --font-sans: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-container-max: 1320px;
  --site-shell-max: var(--site-container-max);
  --site-content-max: var(--site-shell-max);
  --container-max: var(--site-content-max);
  --page-gutter-desktop: 32px;
  --page-gutter-tablet: 24px;
  --page-gutter-mobile: 20px;
  --page-gutter-narrow: 16px;
  --page-gutter-current: var(--page-gutter-desktop);
  --site-gutter: var(--page-gutter-current);
  --container: var(--site-content-max);
  --container-narrow: 800px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 16px 44px rgba(15, 23, 42, 0.12);
  --transition: 180ms ease;
  --section-heading-title-size: 42px;
  --section-heading-title-weight: 760;
  --section-heading-title-line-height: 1.12;
  --section-heading-text-size: 17px;
  --section-heading-text-line-height: 1.6;
  --section-heading-text-max: 900px;
  --header-height: 76px;
  --z-header: 50;
  --z-menu: 60;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}body {
  margin: 0;
  min-width: 320px;
  padding-top: var(--header-height);
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}body.menu-open {
  overflow: hidden;
}.site-shell {
  width: 100%;
  min-height: 100vh;
}
img,
svg {
  display: block;
  max-width: 100%;
}img {
  height: auto;
}button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}button,
summary {
  cursor: pointer;
}a {
  color: inherit;
  text-decoration: none;
}p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}h1,
h2,
h3,
h4 {
  color: var(--color-ink);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}h1 {
  font-size: 56px;
}h2 {
  font-size: 38px;
}h3 {
  font-size: 20px;
}::selection {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.34);
  outline-offset: 3px;
}.container,
.site-content-width {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-content-max));
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}.site-layout-boundary,
.layout-boundary,
.site-header,
.site-footer,
.breadcrumbs-shell,
.page-hero,
.home-hero,
.section,
.final-cta,
.product-story-hero,
.legal-hero,
.auth-bridge,
.not-found {
  width: 100%;
  padding-inline: 0;
}.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition);
}.skip-link:focus {
  transform: translateY(0);
}.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
}.button:hover {
  transform: translateY(-1px);
}.button--primary,
.button--header {
  background: var(--color-primary);
  color: #fff;
}.button--primary:hover,
.button--header:hover {
  background: var(--color-primary-dark);
}.button--primary:active,
.button--header:active {
  background: var(--color-primary-active);
}.button--secondary {
  border-color: var(--color-line-strong);
  background: #fff;
  color: var(--color-ink);
}.button--secondary:hover {
  border-color: var(--color-ink);
}.button--light {
  border-color: rgba(255, 255, 255, 0.26);
  background: #fff;
  color: var(--color-ink);
}.button--text {
  min-height: 40px;
  padding-inline: 0;
  border: 0;
  color: var(--color-primary);
}.button--text:hover {
  color: var(--color-primary-dark);
}.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}.button-row--center {
  justify-content: center;
}.site-header {
  position: fixed;
  top: 0;
  right: auto;
  left: 0;
  z-index: var(--z-header);
  width: 100%;
  max-width: none;
  height: var(--header-height);
  transform: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.66);
  background: rgba(255, 255, 255, 0.965);
  backdrop-filter: blur(12px);
  will-change: border-color, background-color, box-shadow, backdrop-filter;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}.site-header.is-scrolled {
  border-color: var(--color-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}.site-logo img {
  width: 34px;
  height: 34px;
}.site-header .site-logo {
  gap: 12px;
  font-size: 22px;
}.site-header .site-logo img {
  width: 32px;
  height: 32px;
}.site-header .site-logo__text {
  align-items: center;
}.site-logo__text {
  display: inline-flex;
  align-items: baseline;
}.site-logo__text span:first-child {
  color: var(--color-logo-joy);
}.site-logo__text span:last-child {
  color: var(--color-primary);
}.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
}.nav-link,
.nav-menu > summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-radius: var(--radius-md);
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  white-space: nowrap;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}.nav-menu > summary::-webkit-details-marker,
.mobile-menu summary::-webkit-details-marker {
  display: none;
}.nav-link:hover,
.nav-link.is-current,
.nav-menu.is-current > summary,
.nav-menu > summary:hover,
.nav-menu[open] > summary {
  background: rgba(240, 253, 250, 0.46);
  color: var(--color-primary);
  box-shadow: inset 0 -2px 0 rgba(15, 118, 110, 0.22);
}.nav-menu {
  position: relative;
}.nav-menu > summary .icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}.nav-menu[open] > summary .icon {
  transform: rotate(180deg);
}.nav-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 20px;
  width: 680px;
  max-height: min(76vh, 720px);
  overflow-y: auto;
  padding: 18px;
  transform: translateX(-50%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 60px rgba(30, 41, 59, 0.11);
  animation: nav-panel-in 160ms ease;
}@keyframes nav-panel-in {from {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}.nav-menu__panel::before {
  position: absolute;
  top: -11px;
  left: 0;
  width: 100%;
  height: 11px;
  content: "";
}.nav-menu--product .nav-menu__panel,
.nav-menu--mega .nav-menu__panel {
  width: min(760px, calc(100vw - 48px));
}
.nav-menu--product .nav-menu__panel {
  align-items: start;
  left: 0;
  transform: none;
  animation: nav-product-panel-in 160ms ease;
}
@keyframes nav-product-panel-in {from {
    opacity: 0;
    transform: translateY(-4px);
  }to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-menu--features .nav-menu__panel {
  left: 50%;
  width: min(1120px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) 232px;
  gap: 24px;
  align-items: start;
}
.nav-menu--features {
  position: static;
}
.nav-menu--solutions .nav-menu__panel {
  width: min(980px, calc(100vw - 48px));
}
.nav-menu--wide .nav-menu__panel {
  width: min(620px, calc(100vw - 48px));
}.nav-menu--templates .nav-menu__panel {
  width: min(980px, calc(100vw - 48px));
}
.nav-menu__content {
  min-width: 0;
}.nav-menu__item,
.nav-menu__simple,
.nav-menu__group-link,
.nav-menu__group-all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background-color var(--transition);
}.nav-menu__item:hover,
.nav-menu__simple:hover,
.nav-menu__group-link:hover,
.nav-menu__group-all:hover,
.nav-groups a:hover {
  background: #f8fafc;
  color: var(--color-primary);
}.nav-menu__item span,
.nav-menu__simple span,
.nav-menu__group-link span,
.nav-menu__group-all span {
  display: grid;
  min-width: 0;
  gap: 3px;
}.nav-menu__item b,
.nav-menu__simple b,
.nav-menu__group-link b,
.nav-menu__group-all,
.nav-groups a {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}.nav-menu__item:hover b,
.nav-menu__simple:hover b,
.nav-menu__group-link:hover b,
.nav-menu__group-all:hover {
  color: var(--color-primary);
}.nav-menu__item small,
.nav-menu__group-link small {
  color: #52627a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}.nav-menu__item > .icon,
.nav-menu__simple > .icon,
.nav-menu__group-link > .icon,
.nav-menu__group-all > .icon,
.nav-groups a .icon {
  display: none;
}.nav-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 0;
}.nav-menu--features .nav-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}.nav-menu--features .nav-menu__promo {
  align-self: start;
  min-height: 0;
  justify-content: flex-start;
}.nav-menu--features .nav-menu__mini-preview {
  margin-bottom: 16px;
}
.nav-menu--solutions .nav-groups,
.nav-menu--templates .nav-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nav-menu--product .nav-groups {
  grid-template-columns: minmax(0, 1fr);
}
.nav-menu--product .nav-groups > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}
.nav-menu--product .nav-menu__label {
  grid-column: 1 / -1;
}
.nav-groups > div {
  display: grid;
  align-content: start;
  gap: 4px;
}.nav-menu__label {
  padding: 3px 10px 10px;
  color: #6f7f93;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.nav-groups a {
  color: var(--color-ink);
}.nav-menu__top-link {
  display: flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}.nav-menu__group-all {
  margin-top: 4px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}.nav-menu__cta {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}.nav-menu__cta:hover {
  background: var(--color-primary-soft);
}.nav-menu__promo {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(240, 253, 250, 0.74), rgba(255, 255, 255, 0.96)),
    #fff;
}.nav-menu__mini-preview {
  display: grid;
  width: 100%;
  gap: 8px;
  margin-bottom: auto;
  padding: 13px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
}.nav-menu__mini-preview span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dbe4ee;
}.nav-menu__mini-preview span:first-child {
  width: 54%;
  background: var(--color-primary-soft);
}.nav-menu__mini-preview span:nth-child(2) {
  width: 82%;
}.nav-menu__mini-preview span:nth-child(3) {
  width: 68%;
}.nav-menu__promo strong {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 17px;
  line-height: 1.25;
}.nav-menu__promo p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}.nav-menu__promo a {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}.header-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}.header-login:hover {
  color: #0F766E;
}.button--header {
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}.mobile-header-cta {
  display: none;
}.mobile-menu-toggle,
.mobile-menu {
  display: none;
}.breadcrumbs {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 12px;
}.breadcrumbs a:hover {
  color: var(--color-primary);
}.section {
  padding-block: var(--space-24);
}.section--soft {
  background: var(--color-soft);
}.section--ink {
  background: var(--color-ink);
  color: #e2e8f0;
}.section--ink h2,
.section--ink h3,
.section--ink .section-heading h2 {
  color: #fff;
}.section--ink .section-heading > p:last-child {
  color: #cbd5e1;
}.section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}.section-heading--center {
  margin-inline: auto;
  text-align: center;
}.section-heading h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: var(--section-heading-title-size);
  line-height: var(--section-heading-title-line-height);
}.section-heading--center h2 {
  margin-inline: auto;
}.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: var(--section-heading-text-size);
  line-height: var(--section-heading-text-line-height);
}.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}.section-heading-row .section-heading {
  margin-bottom: 0;
}.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
}.page-hero--with-image {
  background-position: center;
  background-size: cover;
}.page-hero--image-event-wedding {
  background-image: url("/assets/images/event-wedding.webp");
}.page-hero--image-event-birthday {
  background-image: url("/assets/images/event-birthday.webp");
}.page-hero--image-event-graduation {
  background-image: url("/assets/images/event-graduation.webp");
}.page-hero--image-event-conference {
  background-image: url("/assets/images/event-conference.webp");
}.page-hero--with-image::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  content: "";
}.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--site-content-max);
  padding-block: 88px 94px;
  text-align: center;
}.page-hero h1 {
  margin-bottom: 22px;
}.page-hero__lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #485063;
  font-size: 19px;
  line-height: 1.7;
}.page-hero .button-row {
  justify-content: center;
}.home-hero {
  position: relative;
  min-height: 636px;
  contain: paint;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background: #fff;
}.home-hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}.home-hero__picture {
  position: absolute;
  inset: 0;
}.home-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  opacity: 0;
  filter: saturate(1.04) contrast(1.06) brightness(0.97) blur(0.08px);
  transform: scale(1.035);
  animation: hero-crossfade 72s infinite;
}.home-hero__slide--wedding,
.home-hero__slide--engagement {
  filter: saturate(1.06) contrast(1.07) brightness(0.97) blur(0.08px);
}.home-hero__slide--wedding {
  animation-name: hero-crossfade-first;
}.home-hero__slide--birthday {
  filter: saturate(1.04) contrast(1.06) brightness(0.96) blur(0.08px);
}.home-hero__slide--corporate,
.home-hero__slide--conference {
  filter: saturate(1.03) contrast(1.07) brightness(0.96) blur(0.08px);
}.home-hero__slide--graduation {
  filter: saturate(1.05) contrast(1.07) brightness(0.96) blur(0.08px);
}.home-hero__slide--engagement {
  animation-delay: 9.984s;
}.home-hero__slide--birthday {
  animation-delay: 21.984s;
}.home-hero__slide--corporate {
  animation-delay: 33.984s;
}.home-hero__slide--conference {
  animation-delay: 45.984s;
}.home-hero__slide--graduation {
  animation-delay: 57.984s;
}@keyframes hero-crossfade {0% {
    opacity: 0;
    transform: scale(1.035);
  }2.8%,
16.6% {
    opacity: 0.86;
  }19.4%,
100% {
    opacity: 0;
    transform: scale(1.075);
  }
}@keyframes hero-crossfade-first {0% {
    opacity: 0.86;
    transform: scale(1.041);
  }13.8% {
    opacity: 0.86;
    transform: scale(1.069);
  }16.6%,
97.2% {
    opacity: 0;
    transform: scale(1.075);
  }100% {
    opacity: 0.86;
    transform: scale(1.041);
  }
}@media (prefers-reduced-motion: reduce) {.home-hero__slide {
    animation: none;
    opacity: 0;
    transform: none;
  }.home-hero__slide--wedding {
    opacity: 1;
  }
}.home-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.46) 32%, rgba(255, 255, 255, 0.1) 56%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.04) 66%, rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.42) 100%);
}.home-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86) 92%);
  content: "";
  pointer-events: none;
}.home-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 28px;
}.home-hero__copy {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}.home-hero__copy::before {
  position: absolute;
  z-index: -1;
  inset: -24px -38px -18px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16) 66%, rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}.home-hero h1 {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: clamp(46px, 4.15vw, 58px);
  line-height: 1.08;
}.home-hero h1 span {
  display: block;
  margin-top: 5px;
  color: var(--color-primary);
}.home-hero__lead {
  max-width: 660px;
  margin: 0 auto 24px;
  color: #334155;
  font-size: 18px;
  line-height: 1.64;
}.home-hero .button-row {
  gap: 14px;
}.home-hero .button {
  min-height: 50px;
  min-width: 168px;
  padding-inline: 22px;
  border-radius: 8px;
  font-size: 15px;
}.home-hero .button--primary {
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.2);
}.home-hero .button--secondary {
  border-color: rgba(15, 118, 110, 0.26);
  background: rgba(255, 255, 255, 0.82);
  color: #1e293b;
}.home-hero .button--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 12px 0 0;
  padding: 0;
  color: #526173;
  font-size: 12px;
  list-style: none;
}.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}.hero-assurances li + li::before {
  width: 3px;
  height: 3px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--color-line-strong);
  content: "";
}.hero-product-stage {
  position: relative;
  width: min(1080px, calc(100% - 80px));
  height: 306px;
  margin: 24px auto 0;
}.hero-product-stage > .product-shell {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 900px;
  transform: translateX(-50%);
  box-shadow: 0 24px 58px rgba(17, 19, 33, 0.13);
}.hero-invite-stack {
  position: absolute;
  z-index: 1;
  top: 50px;
  width: 210px;
  height: 204px;
}.hero-invite-stack--left {
  left: 0;
  transform: rotate(-4deg);
}.hero-invite-stack--right {
  right: 0;
  transform: rotate(4deg);
}.hero-invite {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 40px rgba(30, 41, 59, 0.12);
  opacity: 0;
  animation: scene-card-crossfade 72s infinite;
}.hero-invite::after {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.24);
  content: "";
}.hero-invite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.hero-invite picture {
  display: block;
  width: 100%;
  height: 100%;
}.hero-invite span,
.hero-invite strong {
  position: absolute;
  z-index: 1;
  left: 16px;
  color: #fff;
}.hero-invite span {
  bottom: 44px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}.hero-invite strong {
  bottom: 16px;
  font-size: 17px;
}.hero-invite--wedding {
  animation-name: scene-card-crossfade-first;
}.hero-invite--engagement {
  animation-delay: 9.984s;
}.hero-invite--birthday {
  animation-delay: 21.984s;
}.hero-invite--corporate {
  animation-delay: 33.984s;
}.hero-invite--conference {
  animation-delay: 45.984s;
}.hero-invite--graduation {
  animation-delay: 57.984s;
}@keyframes scene-card-crossfade {0%,
19.4%,
100% {
    opacity: 0;
  }2.8%,
16.6% {
    opacity: 1;
  }
}@keyframes scene-card-crossfade-first {0%,
13.8% {
    opacity: 1;
  }16.6%,
97.2% {
    opacity: 0;
  }100% {
    opacity: 1;
  }
}@media (prefers-reduced-motion: reduce) {.hero-invite {
    animation: none;
    opacity: 0;
  }.hero-invite--wedding {
    opacity: 1;
  }
}.hero-phone {
  position: absolute;
  z-index: 4;
  width: 238px;
  height: 486px;
  right: 5%;
  bottom: -10px;
  transform: scale(0.5) rotate(3deg);
  transform-origin: bottom right;
}.hero-phone--two {
  z-index: 2;
  right: 0;
  bottom: -28px;
  transform: scale(0.46) rotate(-5deg);
  opacity: 0.56;
}.hero-phone__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: phone-crossfade 72s infinite;
}.hero-phone__frame--wedding {
  animation-name: phone-crossfade-first;
}.hero-phone__frame--engagement {
  animation-delay: 9.984s;
}.hero-phone__frame--birthday {
  animation-delay: 21.984s;
}.hero-phone__frame--corporate {
  animation-delay: 33.984s;
}.hero-phone__frame--conference {
  animation-delay: 45.984s;
}.hero-phone__frame--graduation {
  animation-delay: 57.984s;
}@keyframes phone-crossfade {0%,
19.4%,
100% {
    opacity: 0;
  }2.8%,
16.6% {
    opacity: 1;
  }
}@keyframes phone-crossfade-first {0%,
13.8% {
    opacity: 1;
  }16.6%,
97.2% {
    opacity: 0;
  }100% {
    opacity: 1;
  }
}@media (prefers-reduced-motion: reduce) {.hero-phone__frame {
    animation: none;
    opacity: 0;
  }.hero-phone__frame--wedding {
    opacity: 1;
  }
}body.home-page .home-hero:not(.hero-rotation-ready) .home-hero__slide,
body.home-page .home-hero:not(.hero-rotation-ready) .hero-invite,
body.home-page .home-hero:not(.hero-rotation-ready) .hero-phone__frame {
  animation: none;
  opacity: 0;
}body.home-page .home-hero:not(.hero-rotation-ready) .home-hero__slide--wedding {
  opacity: 0.86;
}body.home-page .home-hero:not(.hero-rotation-ready) .hero-invite--wedding,
body.home-page .home-hero:not(.hero-rotation-ready) .hero-phone__frame--wedding {
  opacity: 1;
}@media (prefers-reduced-motion: reduce) {body.home-page .home-hero:not(.hero-rotation-ready) .home-hero__slide--wedding {
    opacity: 1;
  }
}.product-shell {
  overflow: hidden;
  border: 1px solid #d7dce5;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 28px 70px rgba(17, 19, 33, 0.15);
  color: var(--color-text);
  text-align: left;
}.product-shell__topbar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #eaedf1;
}.product-shell__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 800;
}.product-shell__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}.product-shell__actions > span:not(.product-avatar) {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cdd2db;
}.product-avatar {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 8px;
  font-weight: 800;
}.product-shell__workspace {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}.product-shell__sidebar {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 420px;
  padding: 18px 12px;
  border-right: 1px solid #eaedf1;
  background: #fafbfc;
}.product-shell__sidebar span {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: #777f8e;
  font-size: 10px;
}.product-shell__sidebar span.is-active {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}.product-shell__sidebar .icon {
  width: 14px;
  height: 14px;
}.product-shell__content {
  min-width: 0;
  padding: 22px;
}.product-shell__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}.product-shell__heading div {
  display: grid;
  gap: 3px;
}.product-shell__heading small,
.panel-title span,
.metric small,
.event-row small {
  color: #818897;
  font-size: 9px;
}.product-shell__heading strong {
  color: var(--color-ink);
  font-size: 15px;
}.mini-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
  font-size: 8px;
  font-weight: 750;
}.mini-button .icon {
  width: 11px;
  height: 11px;
}.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}.metric {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid #e5e8ee;
  border-radius: var(--radius-md);
}.metric > div {
  display: grid;
  min-width: 0;
}.metric strong {
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.25;
}.metric em {
  color: #949aa7;
  font-size: 7px;
  font-style: normal;
}.metric__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-sm);
}.metric__icon .icon {
  width: 15px;
  height: 15px;
}.metric__icon--indigo {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}.metric__icon--teal {
  background: var(--color-accent-cyan-soft);
  color: var(--color-accent-cyan);
}.metric__icon--coral {
  background: var(--color-error-soft);
  color: var(--color-error);
}.product-shell__lower {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
  margin-top: 10px;
}.attendance-chart,
.event-list {
  min-width: 0;
  padding: 13px;
  border: 1px solid #e5e8ee;
  border-radius: var(--radius-md);
}.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}.panel-title strong {
  color: var(--color-ink);
  font-size: 10px;
}.chart-bars {
  display: flex;
  height: 80px;
  align-items: end;
  justify-content: space-around;
  gap: 8px;
  padding: 14px 4px 0;
  border-bottom: 1px solid #e9ecf1;
}.chart-bars i {
  width: 12px;
  min-height: 8px;
  border-radius: 2px 2px 0 0;
  background: var(--color-primary);
  opacity: 0.8;
}.chart-bars i:nth-child(1) {
  height: 34%;
}.chart-bars i:nth-child(2) {
  height: 47%;
}.chart-bars i:nth-child(3) {
  height: 42%;
}.chart-bars i:nth-child(4) {
  height: 68%;
}.chart-bars i:nth-child(5) {
  height: 59%;
}.chart-bars i:nth-child(6) {
  height: 82%;
}.chart-bars i:nth-child(7) {
  height: 73%;
}.event-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding-top: 10px;
}.event-thumb {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--color-error-soft);
}.event-thumb--launch {
  background: var(--color-accent-cyan-soft);
}.event-row div {
  display: grid;
  min-width: 0;
}.event-row b {
  overflow: hidden;
  color: var(--color-ink);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}.event-row em {
  padding: 3px 5px;
  border-radius: 3px;
  background: var(--color-success-soft);
  color: var(--color-success);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}.product-shell--compact .product-shell__workspace {
  grid-template-columns: 110px minmax(0, 1fr);
}.product-shell--compact .product-shell__sidebar {
  min-height: 190px;
  padding: 12px 8px;
}.product-shell--compact .product-shell__sidebar span {
  height: 29px;
  padding-inline: 7px;
  font-size: 8px;
}.product-shell--compact .product-shell__sidebar .icon {
  width: 11px;
  height: 11px;
}.product-shell--compact .product-shell__content {
  padding: 14px;
}.product-shell--compact .product-shell__lower {
  display: none;
}.product-shell--compact .product-shell__heading {
  margin-bottom: 11px;
}.product-shell--compact .metric {
  padding: 8px;
}.section--categories {
  padding-top: 88px;
}.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-ink);
}.category-card__picture {
  position: absolute;
  inset: 0;
}.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}.category-card:hover img {
  transform: scale(1.035);
}.category-card__shade {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 33, 0.42);
}.category-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 24px;
  color: #fff;
}.category-card h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}.category-card p {
  min-height: 60px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
}.category-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}.category-more span {
  padding: 8px 11px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-size: 11px;
}.category-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}.feature-grid {
  display: grid;
  gap: 16px;
}.feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.feature-item {
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
}.feature-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}.feature-item:nth-child(3n + 2) .feature-item__icon {
  background: var(--color-accent-cyan-soft);
  color: var(--color-accent-cyan);
}.feature-item:nth-child(3n + 3) .feature-item__icon {
  background: var(--color-error-soft);
  color: var(--color-error);
}.feature-item h3 {
  margin-bottom: 9px;
  font-size: 18px;
}.feature-item p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}.how-band__layout,
.product-split,
.share-band,
.product-focus,
.about-story,
.custom-type,
.category-detail__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}.how-band__layout > *,
.product-split > *,
.share-band > *,
.product-focus > *,
.about-story > *,
.custom-type > *,
.category-detail__intro > * {
  min-width: 0;
}.steps-list {
  display: grid;
  margin-bottom: 24px;
}.step-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--color-line);
}.step-item:last-child {
  border-bottom: 1px solid var(--color-line);
}.step-item__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}.step-item__meta {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}.step-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}.step-item p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
}.how-band__visual {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-primary-soft);
}.how-band__visual .phone-preview:first-child {
  transform: translateX(36px) rotate(-6deg);
}.how-band__visual .phone-preview:nth-child(2) {
  transform: translateX(-16px) translateY(44px) rotate(5deg);
}.phone-preview {
  width: 238px;
  height: 486px;
  flex: 0 0 auto;
  padding: 9px;
  border: 1px solid #424554;
  border-radius: 32px;
  background: var(--color-ink);
  box-shadow: var(--shadow-md);
}.phone-preview__speaker {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 18px;
  margin-left: 74px;
  border-radius: 0 0 12px 12px;
  background: var(--color-ink);
}.phone-preview__screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: #f7efe9;
  color: #543b37;
  text-align: center;
}.phone-preview--birthday .phone-preview__screen {
  background: var(--color-warning-soft);
  color: #7c4a03;
}.phone-preview--wedding .phone-preview__screen,
.phone-preview--engagement .phone-preview__screen {
  background: #f7efe9;
  color: #543b37;
}.phone-preview--corporate .phone-preview__screen,
.phone-preview--conference .phone-preview__screen {
  background: var(--color-ink-soft);
  color: #fff;
}.phone-preview--graduation .phone-preview__screen {
  background: var(--color-primary-very-soft);
  color: var(--color-primary-active);
}.phone-preview__badge {
  margin-bottom: 42px;
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}.phone-preview small {
  font-size: 10px;
}.phone-preview strong {
  max-width: 180px;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
}.phone-preview--conference strong {
  font-family: var(--font-sans);
  font-size: 25px;
}.phone-preview__line {
  width: 34px;
  height: 1px;
  margin: 28px 0;
  background: currentColor;
  opacity: 0.45;
}.phone-preview__actions {
  display: flex;
  gap: 9px;
}.phone-preview__actions i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}.phone-preview__actions .icon {
  width: 13px;
  height: 13px;
}.response-popover {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 250px;
  padding: 13px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}.response-popover > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--color-success-soft);
  color: var(--color-success);
}.response-popover div {
  display: grid;
}.response-popover strong {
  color: var(--color-ink);
  font-size: 10px;
}.response-popover small {
  color: var(--color-muted);
  font-size: 8px;
}.response-popover > .icon {
  color: var(--color-success);
}.product-section {
  overflow: hidden;
}.product-section__stage {
  position: relative;
  width: min(1040px, 100%);
  margin-inline: auto;
}.product-section__stage::before {
  position: absolute;
  z-index: -1;
  inset: 12% -7% -10%;
  border-radius: var(--radius-lg);
  background: var(--color-primary-soft);
  content: "";
}.product-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(940px, 100%);
  margin: 40px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
}.product-notes > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #fff;
}.product-notes > div > .icon {
  color: var(--color-primary);
}.product-notes span {
  display: grid;
}.product-notes strong {
  color: var(--color-ink);
  font-size: 12px;
}.product-notes small {
  color: var(--color-muted);
  font-size: 10px;
}.feature-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}.feature-showcase__intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}.feature-showcase__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.14);
}.feature-showcase .feature-item {
  border: 0;
  border-radius: 0;
  background: #1b1e2d;
}.feature-showcase .feature-item h3 {
  color: #fff;
}.feature-showcase .feature-item p {
  color: #aeb4c2;
}.feature-showcase .feature-item__icon {
  margin-bottom: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}.template-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}.template-grid--full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.template-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}.template-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13), 0 10px 28px rgba(15, 118, 110, 0.06);
}.template-card[hidden] {
  display: none;
}.template-card__preview {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-soft);
  background-position: center;
  background-size: cover;
  transition: transform 360ms ease;
}.template-card__preview--event-wedding {
  background-image: url("/assets/images/event-wedding.webp");
  background-image: image-set(url("/assets/images/event-wedding-v20260823-01-720.avif") type("image/avif") 1x, url("/assets/images/event-wedding-v20260823-01-720.webp") type("image/webp") 1x, url("/assets/images/event-wedding-v20260823-01-1080.avif") type("image/avif") 2x, url("/assets/images/event-wedding-v20260823-01-1080.webp") type("image/webp") 2x);
}.template-card__preview--event-birthday {
  background-image: url("/assets/images/event-birthday.webp");
  background-image: image-set(url("/assets/images/event-birthday-v20260823-01-720.avif") type("image/avif") 1x, url("/assets/images/event-birthday-v20260823-01-720.webp") type("image/webp") 1x, url("/assets/images/event-birthday-v20260823-01-1080.avif") type("image/avif") 2x, url("/assets/images/event-birthday-v20260823-01-1080.webp") type("image/webp") 2x);
}.template-card__preview--event-graduation {
  background-image: url("/assets/images/event-graduation.webp");
  background-image: image-set(url("/assets/images/event-graduation-v20260823-01-720.avif") type("image/avif") 1x, url("/assets/images/event-graduation-v20260823-01-720.webp") type("image/webp") 1x, url("/assets/images/event-graduation-v20260823-01-1080.avif") type("image/avif") 2x, url("/assets/images/event-graduation-v20260823-01-1080.webp") type("image/webp") 2x);
}.template-card__preview--event-conference {
  background-image: url("/assets/images/event-conference.webp");
  background-image: image-set(url("/assets/images/event-conference-v20260823-01-720.avif") type("image/avif") 1x, url("/assets/images/event-conference-v20260823-01-720.webp") type("image/webp") 1x, url("/assets/images/event-conference-v20260823-01-1080.avif") type("image/avif") 2x, url("/assets/images/event-conference-v20260823-01-1080.webp") type("image/webp") 2x);
}.template-card__preview::before {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 33, 0.28);
  content: "";
}.template-card__preview:not(.template-card__preview--event-wedding):not(.template-card__preview--event-birthday):not(.template-card__preview--event-graduation):not(.template-card__preview--event-conference)::before {
  background: transparent;
}.template-card--coral .template-card__preview {
  background-color: var(--color-error-soft);
}.template-card--sunny .template-card__preview {
  background-color: var(--color-warning-soft);
  color: #6b4708;
}.template-card--ink .template-card__preview,
.template-card--night .template-card__preview {
  background-color: var(--color-ink);
  color: #fff;
}.template-card--teal .template-card__preview,
.template-card--sage .template-card__preview {
  background-color: var(--color-accent-cyan-soft);
  color: #155e75;
}.template-card--ivory .template-card__preview {
  background-color: #f7efe9;
  color: #65433c;
}.template-card__sample-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 7px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}.template-card__sample-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: calc(100% - 36px);
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: inherit;
  text-align: center;
}.template-card__preview--event-wedding .template-card__sample-copy,
.template-card__preview--event-birthday .template-card__sample-copy,
.template-card__preview--event-graduation .template-card__sample-copy,
.template-card__preview--event-conference .template-card__sample-copy {
  color: #fff;
}.template-card__sample-copy span,
.template-card__sample-copy small {
  font-size: 8px;
}.template-card__sample-copy strong {
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
}.template-card--indigo .template-card__sample-copy strong,
.template-card--teal .template-card__sample-copy strong,
.template-card--ink .template-card__sample-copy strong {
  font-family: var(--font-sans);
}.template-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  min-height: 154px;
  align-items: start;
  gap: 16px;
  padding: 20px;
}.template-card__body:has(.template-card__cta) {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}.template-card__body > div {
  min-width: 0;
}.template-card__body span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}.template-card__body h3 {
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.24;
}.template-card__summary {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}.icon-link {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background-color var(--transition);
}.template-card:hover .icon-link {
  transform: translateX(5px);
  border-color: rgba(15, 118, 110, 0.28);
  background: var(--color-primary-very-soft);
}.template-card__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}.template-card__cta .icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}.template-card:hover .template-card__cta .icon {
  transform: translateX(5px);
}.icon-link:hover {
  border-color: var(--color-primary);
}.audience-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--color-line);
}.audience-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-width: 0;
  min-height: 520px;
}.audience-panel + .audience-panel {
  border-left: 1px solid var(--color-line);
}.audience-panel__image {
  min-width: 0;
  overflow: hidden;
}.audience-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.audience-panel__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 42px;
}.audience-panel h2 {
  margin-bottom: 15px;
  font-size: 30px;
}.audience-panel__content > p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 14px;
}.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
}.check-list .icon {
  color: var(--color-success);
}.check-list--stack {
  display: grid;
  gap: 12px;
}.pricing-preview {
  background: var(--color-soft);
}.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
}.price-card--featured {
  border: 2px solid var(--color-primary);
}.price-card--business {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #cdd1dd;
}.price-card > span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}.price-card--business > span {
  color: #aeb4c2;
}.price-card h2,
.price-card h3 {
  margin: 10px 0 20px;
  font-size: 25px;
}.price-card--business h2,
.price-card--business h3 {
  color: #fff;
}.price-status {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 800;
}.price-card--business .price-status {
  color: #fff;
}.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}.price-card--business ul {
  border-color: rgba(255, 255, 255, 0.16);
}.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
}.price-card--business li {
  color: #cdd1dd;
}.price-card li .icon {
  margin-top: 3px;
  color: var(--color-success);
}.price-card .button {
  width: 100%;
  margin-top: auto;
}.pricing-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 11px;
  text-align: center;
}.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
}.trust-strip span {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: #fff;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}.trust-strip .icon {
  color: var(--color-accent-cyan);
}.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 88px;
}.faq-list {
  display: grid;
  border-top: 1px solid var(--color-line);
}.faq-item {
  border-bottom: 1px solid var(--color-line);
}.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}.faq-item summary::-webkit-details-marker {
  display: none;
}.faq-item summary .icon {
  transition: transform var(--transition);
}.faq-item[open] summary .icon {
  transform: rotate(180deg);
}.faq-item__answer {
  padding: 0 44px 22px 0;
}.faq-item__answer p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 54px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(20, 184, 166, 0.26), transparent 30%),
    linear-gradient(135deg, #0f766e, #115e59);
  color: #e0e7ff;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  padding: 0;
}
.final-cta__copy {
  max-width: 760px;
}
.final-cta h2 {
  max-width: 720px;
  margin: 0 0 12px;
  color: #fff;
  font-size: var(--section-heading-title-size);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}
body.home-page .final-cta h2 {
  margin-bottom: 14px;
  font-size: var(--section-heading-title-size);
  line-height: 1.08;
}
.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(240, 253, 250, 0.84);
  font-size: 17px;
  line-height: 1.64;
}
.final-cta__actions {
  display: grid;
  justify-items: stretch;
  min-width: 468px;
}
.final-cta .button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}
.final-cta .button {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  justify-content: center;
  border-radius: 14px;
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease, border-color 240ms ease;
}
.final-cta .button--primary {
  background: #fff;
  color: var(--color-primary-dark);
}.final-cta .button--secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}
.final-cta .button:hover {
  transform: translateY(-2px);
}
.final-cta .button--primary:hover {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}
.final-cta .button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}
body.home-page .lp-section {
  position: relative;
  padding-block: 120px;
}body.home-page .lp-section + .lp-section {
  border-top: 1px solid rgba(226, 232, 240, 0.76);
}body.home-page .lp-section--dark {
  overflow: hidden;
  background: #202633;
  color: #d9e1ec;
}body.home-page .lp-section--ink {
  overflow: hidden;
  background: #101827;
  color: #dbe4ef;
}body.home-page .lp-section--soft {
  background: #f7fafc;
}body.home-page .lp-section--pale {
  background: #eefbf8;
}body.home-page .lp-section--dark::before,
body.home-page .lp-section--ink::before,
body.home-page .lp-section--pale::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(20, 184, 166, 0.16), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
}body.home-page .lp-section > .container {
  position: relative;
  z-index: 1;
}body.home-page .lp-section--dark .section-heading h2,
body.home-page .lp-section--dark .step-item h3,
body.home-page .lp-section--ink .section-heading h2,
body.home-page .lp-section--ink .feature-item h3,
body.home-page .lp-section--ink .section-heading h2,
body.home-page .lp-section--ink .trust-strip span {
  color: #fff;
}body.home-page .lp-section--dark .section-heading > p:last-child,
body.home-page .lp-section--ink .section-heading > p:last-child {
  color: #bdc8d8;
}body.home-page .lp-section .section-heading {
  margin-bottom: 52px;
}body.home-page .lp-section .section-heading h2 {
  font-size: var(--section-heading-title-size);
  line-height: 1.06;
}body.home-page .lp-section .section-heading > p:last-child {
  font-size: var(--section-heading-text-size);
  line-height: 1.72;
}.lp-step-grid,
.lp-card-grid,
.lp-event-grid,
.lp-pricing-grid {
  display: grid;
  gap: 18px;
}.lp-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.lp-step-grid .step-item {
  display: grid;
  gap: 28px;
  min-height: 250px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}.lp-step-grid .step-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.42);
  background: rgba(255, 255, 255, 0.08);
}.lp-step-grid .step-item__number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #13a696;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}.lp-step-grid .step-item h3 {
  margin-bottom: 12px;
  font-size: 23px;
}.lp-step-grid .step-item p {
  margin-bottom: 0;
  color: #c7d2df;
  font-size: 15px;
  line-height: 1.7;
}.lp-event-grid,
.lp-card-grid--four,
.lp-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.lp-event-grid .category-card,
body.home-page .feature-item,
body.home-page .price-card,
body.home-page .template-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}.lp-event-grid .category-card:hover,
body.home-page .feature-item:hover,
body.home-page .price-card:hover,
body.home-page .template-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-line-strong);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}.lp-event-grid .category-card {
  min-height: 430px;
}body.home-page .feature-item {
  min-height: 260px;
  padding: 30px;
}body.home-page .feature-item__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 14px;
}body.home-page .feature-item h3 {
  font-size: 22px;
}body.home-page .feature-item p {
  font-size: 15px;
  line-height: 1.72;
}.lp-manage__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 92px;
}.lp-manage__list {
  display: grid;
  gap: 14px;
}.lp-manage__list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
}.lp-manage__list article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}.lp-manage__list h3 {
  margin-bottom: 6px;
  font-size: 22px;
}.lp-manage__list p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}.lp-phone-stack {
  position: relative;
  min-height: 620px;
}.lp-phone-stack .phone-preview {
  position: absolute;
  top: 34px;
  left: 12%;
  transform: rotate(-5deg);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}.lp-phone-stack .phone-preview + .phone-preview {
  top: 104px;
  right: 10%;
  left: auto;
  transform: rotate(5deg);
}.lp-phone-stack .response-popover {
  right: 2%;
  bottom: 72px;
}.lp-product .product-section__stage {
  margin-top: 4px;
}.lp-product-notes {
  margin-top: 34px;
}
.lp-templates {
  background: #fff;
}
.lp-pricing {
  background: #fff;
}.lp-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}.lp-pricing-grid .price-card {
  min-height: 390px;
}.lp-trust .trust-strip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}.lp-trust .trust-strip span {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}.lp-faq {
  background: #fff;
}body.home-page .lp-section {
  position: relative;
  padding-block: 116px;
}body.home-page .lp-section + .lp-section {
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}body.home-page .lp-section--dark {
  overflow: hidden;
  background: #202633;
  color: #dbe4ef;
}body.home-page .lp-section--ink {
  overflow: hidden;
  background: #111827;
  color: #dbe4ef;
}body.home-page .lp-section--soft {
  background: #f8fafc;
}body.home-page .lp-section--teal {
  background: #eaf8f5;
}body.home-page .lp-section--dark::before,
body.home-page .lp-section--ink::before,
body.home-page .lp-section--teal::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(20, 184, 166, 0.16), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
}body.home-page .lp-section > .container {
  position: relative;
  z-index: 1;
}body.home-page .lp-section .section-heading {
  max-width: 980px;
  margin-bottom: 40px;
}body.home-page .lp-section .section-heading h2 {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: var(--section-heading-title-size);
  line-height: 1.12;
}body.home-page .lp-section .section-heading > p:last-child {
  max-width: 900px;
  font-size: var(--section-heading-text-size);
  line-height: 1.6;
}body.home-page .section-heading-row .section-heading {
  flex: 1 1 auto;
  max-width: 980px;
}body.home-page .lp-section--dark .section-heading h2,
body.home-page .lp-section--ink .section-heading h2 {
  color: #fff;
}body.home-page .lp-section--dark .section-heading > p:last-child,
body.home-page .lp-section--ink .section-heading > p:last-child {
  color: #c9d4e2;
}.lp-step-grid,
.lp-plain-grid,
.lp-event-grid,
.lp-card-grid,
.lp-template-grid,
.lp-pricing-grid {
  display: grid;
  gap: 18px;
}.lp-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.lp-step-grid .step-item {
  display: grid;
  gap: 22px;
  min-height: 232px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}.lp-step-grid .step-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.42);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}.lp-step-grid .step-item__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #13a696;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}.lp-step-grid .step-item h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
}.lp-step-grid .step-item p {
  margin-bottom: 0;
  color: #c7d2df;
  font-size: 15px;
  line-height: 1.7;
}.lp-plain-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.lp-plain-card {
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}.lp-plain-card__number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
}.lp-plain-card h3 {
  margin-bottom: 0;
  font-size: 22px;
}.lp-plain-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}.lp-card-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.lp-event-grid,
.lp-template-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.lp-event-grid .category-card,
body.home-page .price-card,
body.home-page .template-card,
.lp-plain-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}.lp-event-grid .category-card:hover,
body.home-page .price-card:hover,
body.home-page .template-card:hover,
.lp-plain-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-line-strong);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}.lp-event-grid .category-card {
  min-height: 410px;
}.lp-event-grid .category-card > div {
  padding: 28px 24px 24px;
}.lp-event-grid .category-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
}.lp-event-grid .category-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}.lp-event-grid .category-card__link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-top: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background: #fff;
}.lp-process {
  background: #f8fafc;
}.lp-live__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 72px;
}.lp-bullet-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}.lp-live__layout .lp-bullet-list {
  margin-top: 0;
}.lp-bullet-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
}.lp-bullet-list li span {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-primary);
}.lp-bullet-list h3 {
  margin-bottom: 4px;
  font-size: 21px;
}.lp-bullet-list p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}.lp-live__mockup {
  position: relative;
  min-height: 620px;
}.lp-live__mockup .phone-preview {
  position: absolute;
  top: 28px;
  left: 8%;
  width: 258px;
  height: 528px;
  transform: rotate(-5deg);
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.18);
}.lp-live__mockup .phone-preview + .phone-preview {
  top: 98px;
  right: 8%;
  left: auto;
  transform: rotate(5deg);
}.lp-live__mockup .phone-preview strong {
  font-size: 29px;
}.lp-live__mockup .phone-preview--conference strong {
  font-size: 26px;
}.lp-live__mockup .response-popover {
  right: 1%;
  bottom: 74px;
}.lp-control {
  background: #eaf8f5;
}.lp-control .product-section__stage {
  width: min(1180px, 100%);
}.lp-control .product-section__stage::before {
  inset: 8% -4% -9%;
  background: #d7fbf2;
}.lp-note-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}.lp-note-grid > div {
  padding: 12px 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 750;
}
.lp-pricing {
  background: #fff;
}.lp-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}.lp-pricing .price-card {
  min-height: 382px;
}.lp-pricing .price-card > span {
  display: none;
}.lp-pricing .price-card--featured > span {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 850;
}.lp-trust {
  background: #111827;
}.lp-trust .trust-strip {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}.lp-trust .trust-strip span {
  min-height: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}.lp-trust .trust-strip .icon {
  color: var(--color-primary-soft);
}.lp-faq {
  background: #fff;
}
.lp-faq .faq-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}.lp-faq {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(15, 118, 110, 0.07), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.05), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  align-items: start;
  gap: clamp(54px, 6vw, 92px);
}.home-faq-aside {
  display: grid;
  align-content: start;
  gap: 22px;
}.home-faq-aside .section-heading {
  margin-bottom: 0;
}.lp-faq .home-faq-aside .section-heading h2 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: var(--section-heading-title-size);
  line-height: 1.08;
}.lp-faq .home-faq-aside .section-heading > p:last-child {
  max-width: 430px;
  margin-top: 0;
  color: #526176;
  font-size: var(--section-heading-text-size);
  line-height: 1.7;
}.home-faq-aside > .button {
  justify-self: start;
  margin-top: 8px;
}.home-faq-aside > .button .icon {
  transition: transform 220ms ease;
}.home-faq-aside > .button:hover .icon {
  transform: translateX(3px);
}.home-faq-support {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  max-width: 430px;
  margin-top: 4px;
  padding: 22px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 184, 166, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
}.home-faq-support__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.07);
  color: var(--color-primary);
}.home-faq-support__icon .icon {
  width: 22px;
  height: 22px;
}.home-faq-support h3 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.25;
}.home-faq-support p {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}.home-faq-support a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 800;
}.home-faq-support a .icon {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}.home-faq-support a:hover .icon {
  transform: translateX(3px);
}.home-faq-accordion {
  display: grid;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}.home-faq-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  transition: background-color 220ms ease, border-color 220ms ease;
}.home-faq-item:hover,
.home-faq-item.is-open {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(255, 255, 255, 0.68);
}.home-faq-item h3 {
  margin: 0;
}.home-faq-item__trigger {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}.home-faq-item__trigger .icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform 260ms ease;
}.home-faq-item.is-open .home-faq-item__trigger .icon {
  transform: rotate(180deg);
}.home-faq-item__trigger:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  outline-offset: 4px;
  border-radius: 14px;
}.home-faq-item__answer {
  padding: 0 58px 26px 0;
  animation: faqAnswerIn 220ms ease both;
}.home-faq-item__answer p {
  max-width: 680px;
  margin: 0;
  color: #5d6b7f;
  font-size: 15px;
  line-height: 1.72;
}@keyframes faqAnswerIn {from {
    opacity: 0;
    transform: translateY(-4px);
  }to {
    opacity: 1;
    transform: translateY(0);
  }
}@media (prefers-reduced-motion: reduce) {.home-faq-item__answer {
    animation: none;
  }
}.site-footer {
  background: var(--color-ink);
  color: #cbd5e1;
}.site-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 3.25fr);
  gap: 76px;
  padding-block: 82px 76px;
}
.site-logo--footer {
  color: #fff;
}.site-footer .site-logo {
  gap: 13px;
  font-size: 22px;
}.site-footer .site-logo img {
  width: 31px;
  height: 31px;
}.site-footer .site-logo__text {
  align-items: center;
}.footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: #c3ccda;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}
.footer-app-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}
.footer-links > div {
  display: grid;
  align-content: start;
  gap: 14px;
}
.footer-links h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.footer-links a,
.footer-link--disabled {
  width: fit-content;
  color: #b9c3d5;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
}
.footer-links a {
  transition: color 180ms ease, opacity 180ms ease;
}
.footer-links a:hover {
  color: #fff;
  opacity: 0.92;
}
.footer-link--disabled {
  cursor: default;
  opacity: 0.82;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}.site-footer__bottom p {
  margin: 0;
}.site-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  gap: 8px;
}.site-fab__item {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition), visibility var(--transition);
}.site-fab__item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}.site-fab__item:focus-visible {
  outline-offset: 4px;
}.site-fab__item .icon {
  width: 20px;
  height: 20px;
}.site-fab__item--whatsapp {
  background: rgba(240, 253, 250, 0.98);
}.site-fab__item--top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}.site-fab__item--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}.product-split__visual .product-shell {
  width: 100%;
  max-width: 780px;
}.share-band {
  grid-template-columns: 1.05fr 0.95fr;
}.share-band__visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--color-ink);
}.qr-sample {
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--color-ink);
  text-align: center;
}.qr-sample .icon {
  width: 122px;
  height: 122px;
}.qr-sample small {
  max-width: 170px;
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}.share-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-ink);
  font-size: 10px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}.share-chip:nth-of-type(2) {
  top: 54px;
  right: 30px;
}.share-chip:nth-of-type(3) {
  bottom: 56px;
  left: 28px;
}.process-page {
  max-width: 900px;
}.process-page .step-item {
  grid-template-columns: 78px minmax(0, 1fr);
  padding-block: 38px;
}.process-page .step-item__number {
  width: 62px;
  height: 62px;
  font-size: 16px;
}.process-page .step-item h3 {
  font-size: 25px;
}.process-page .step-item p:last-child {
  max-width: 690px;
  font-size: 15px;
}.product-focus {
  grid-template-columns: 0.7fr 1.3fr;
}.product-focus .product-shell {
  width: 760px;
  max-width: 100%;
}.guest-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
}.guest-journey > div {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
}.guest-journey > div > .icon {
  width: 28px;
  height: 28px;
  margin-bottom: auto;
  color: var(--color-primary);
}.guest-journey strong {
  margin-top: 36px;
  color: var(--color-ink);
  font-size: 15px;
}.guest-journey p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 12px;
}.type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}.type-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color var(--transition), transform var(--transition);
}.type-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}.type-item > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}.type-item h3 {
  margin-bottom: 7px;
  font-size: 18px;
}.type-item p {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 13px;
}.type-item em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}.custom-type {
  padding: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-soft);
}.custom-type__visual {
  display: grid;
  min-height: 280px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}.custom-type__visual .icon {
  width: 78px;
  height: 78px;
}.custom-type__visual span {
  align-self: start;
  font-weight: 800;
}.template-page .template-catalog-section {
  background: var(--color-bg);
}.template-catalog-shell {
  display: grid;
  grid-template-columns: minmax(240px, 264px) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}.template-category-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  max-height: calc(100vh - var(--header-height) - 48px);
  padding: 22px;
  overflow-y: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}.template-category-sidebar > h3 {
  margin: 0 0 14px;
  font-size: 18px;
}.template-category-tree {
  display: grid;
  gap: 5px;
}.template-category-tree button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font: inherit;
  text-align: left;
}.template-category-all,
.template-category-trigger,
.template-category-children button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  transition: background-color var(--transition), color var(--transition);
}.template-category-all:hover,
.template-category-trigger:hover,
.template-category-children button:hover {
  background: var(--color-soft);
  color: var(--color-ink);
}.template-category-all.is-active,
.template-category-trigger.is-active,
.template-category-children button.is-active {
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}.template-category-all.is-active,
.template-category-children button.is-active {
  box-shadow: inset 3px 0 0 var(--color-primary);
}.template-category-trigger__meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}.template-category-trigger .icon {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}.template-category-trigger[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}.template-category-count {
  min-width: 22px;
  color: #8b98a8;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}.template-category-children {
  display: grid;
  gap: 2px;
  padding: 3px 0 7px 12px;
}.template-category-children[hidden] {
  display: none;
}.template-category-children button {
  min-height: 36px;
  padding-block: 7px;
  font-size: 12px;
  font-weight: 700;
}.template-catalog-content {
  min-width: 0;
}.template-catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}.template-catalog-heading h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
}.template-catalog-heading p {
  margin: 7px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
}.template-mobile-filter {
  display: none;
}.template-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 190px);
  gap: 12px;
  margin-bottom: 12px;
}.template-search-field input,
.template-sort-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}.template-search-field input:focus,
.template-sort-field select:focus {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}.template-active-filters {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}.template-active-filters > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}.template-active-filters span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
}.template-active-filters button {
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}.template-active-filters button[hidden] {
  display: none;
}.template-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}.template-catalog-grid[hidden] {
  display: none;
}.template-page .template-active-filters[hidden],
.template-page .template-pagination[hidden] {
  display: none;
}.template-page .template-catalog-card__body .template-card__summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}.template-page .template-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}.template-page .template-pagination__button {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition), opacity var(--transition);
}.template-page .template-pagination__button:hover:not(:disabled),
.template-page .template-pagination__button:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
}.template-page .template-pagination__button:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  outline-offset: 2px;
}.template-page .template-pagination__button[aria-current="page"] {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}.template-page .template-pagination__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}.template-page .template-pagination__button[aria-current="page"]:disabled {
  cursor: default;
  opacity: 1;
}.template-page .template-pagination__ellipsis {
  min-width: 20px;
  color: var(--color-muted);
  font-weight: 800;
  text-align: center;
}.template-card__preview-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
}.template-card__preview-button:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: -3px;
}.template-catalog-card__body {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  gap: 18px;
}.template-catalog-card__body .template-card__summary {
  font-size: 13px;
  line-height: 1.55;
}.template-card__style {
  margin: 12px 0 0;
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 800;
}.template-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}.template-card__features li {
  padding: 5px 7px;
  border-radius: var(--radius-sm);
  background: var(--color-soft);
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
}.template-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 8px;
}.template-card__actions .button {
  min-width: 0;
  min-height: 42px;
  padding-inline: 10px;
  font-size: 11px;
  white-space: nowrap;
}.template-empty-state {
  max-width: 620px;
  margin: 32px auto 0;
  padding: 44px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-soft);
  text-align: center;
}.template-empty-state[hidden] {
  display: none;
}.template-empty-state h3 {
  margin: 0;
  font-size: 21px;
}.template-empty-state p {
  margin: 10px auto 20px;
  color: var(--color-muted);
  font-size: 14px;
}.template-filter-dialog,
.template-preview-dialog {
  padding: 0;
  border: 0;
  background: transparent;
}.template-filter-dialog::backdrop,
.template-preview-dialog::backdrop {
  background: rgba(17, 24, 39, 0.56);
  backdrop-filter: blur(4px);
}.template-filter-dialog {
  width: min(100%, 560px);
  max-width: none;
  max-height: 92vh;
  margin: auto 0 0 auto;
}.template-filter-dialog__inner,
.template-preview-dialog__inner {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #fff;
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.24);
}.template-filter-dialog__inner {
  display: grid;
  max-height: 92vh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}.template-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--color-line);
}.template-dialog-header h2 {
  margin: 0;
  font-size: 22px;
}.template-dialog-header > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}.template-filter-dialog__body {
  padding: 14px 18px 22px;
  overflow-y: auto;
}.template-filter-dialog__actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--color-line);
  background: #fff;
}.template-preview-dialog {
  width: min(calc(100% - 32px), 920px);
  max-width: 920px;
  max-height: calc(100vh - 32px);
  margin: auto;
}.template-preview-dialog__inner {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: var(--radius-lg);
}.template-preview-dialog__content {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
}.template-preview-dialog__visual {
  width: 100%;
  border-radius: var(--radius-lg);
}.template-preview-dialog__visual.template-card--coral {
  background-color: var(--color-error-soft);
}.template-preview-dialog__visual.template-card--sunny {
  background-color: var(--color-warning-soft);
  color: #6b4708;
}.template-preview-dialog__visual.template-card--ink,
.template-preview-dialog__visual.template-card--night {
  background-color: var(--color-ink);
  color: #fff;
}.template-preview-dialog__visual.template-card--teal,
.template-preview-dialog__visual.template-card--sage {
  background-color: var(--color-accent-cyan-soft);
  color: #155e75;
}.template-preview-dialog__visual.template-card--ivory {
  background-color: #f7efe9;
  color: #65433c;
}.template-preview-dialog__details > p {
  margin: 0 0 22px;
  color: var(--color-muted);
  line-height: 1.65;
}.template-preview-dialog__details dl {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}.template-preview-dialog__details dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}.template-preview-dialog__details dt {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}.template-preview-dialog__details dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 750;
}
.pricing-grid--page {
  margin-top: -24px;
}.pricing-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--color-line);
}.pricing-principles .section-heading {
  margin-bottom: 0;
}.pricing-principles > div:last-child {
  display: grid;
  align-content: center;
  gap: 14px;
}.pricing-principles span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}.pricing-principles .icon {
  color: var(--color-success);
}.corporate-use-cases {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}.corporate-use-cases ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}.corporate-use-cases li {
  padding: 12px;
  border-left: 3px solid var(--color-accent-cyan);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}.corporate-use-cases img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
}.corporate-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}.corporate-flow > div {
  display: grid;
  min-width: 190px;
  place-items: center;
  text-align: center;
}.corporate-flow > div > .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--color-primary-soft);
}.corporate-flow strong {
  color: #fff;
}.corporate-flow p {
  margin: 3px 0 0;
  color: #aeb4c2;
  font-size: 11px;
}.corporate-flow > .icon {
  color: #777e90;
}.about-story {
  align-items: start;
}.about-story > div:first-child > p:last-child {
  color: var(--color-muted);
}.about-statement {
  min-height: 390px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-ink);
  color: #fff;
}.about-statement > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-accent-cyan);
}.about-statement blockquote {
  margin: 110px 0 0;
  font-size: 30px;
  font-weight: 760;
  line-height: 1.35;
}.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}.values-grid .feature-item__icon {
  margin-bottom: 48px;
}.blog-layout {
  display: grid;
  gap: 48px;
}.featured-article {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-soft);
}.featured-article__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}.featured-article > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px;
}.featured-article span,
.upcoming-articles span {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}.featured-article h2 {
  margin: 16px 0;
}.featured-article p,
.upcoming-articles p {
  color: var(--color-muted);
  font-size: 14px;
}.featured-article em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}.upcoming-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}.upcoming-articles article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}.upcoming-articles h3 {
  margin: 34px 0 10px;
}.upcoming-articles small {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
}.article-header {
  max-width: 900px;
  padding-block: 80px 54px;
  text-align: center;
}.article-header h1 {
  margin-bottom: 20px;
}.article-header > p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 19px;
}.article-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--color-muted);
  font-size: 11px;
}.article-cover {
  width: 100%;
  max-width: var(--site-content-max);
  margin-inline: auto;
}.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-lg);
  object-fit: cover;
}.article-content {
  display: grid;
  grid-template-columns: 210px minmax(0, 720px);
  justify-content: center;
  gap: 70px;
  padding-block: 72px 100px;
}.article-content aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  align-self: start;
  gap: 9px;
}.article-content aside strong {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 12px;
}.article-content aside a {
  color: var(--color-muted);
  font-size: 11px;
}.article-content aside a:hover {
  color: var(--color-primary);
}.article-prose {
  min-width: 0;
}.article-prose h2 {
  margin: 52px 0 16px;
  font-size: 30px;
}.article-prose p,
.article-prose li {
  color: #414858;
  font-size: 16px;
  line-height: 1.9;
}.article-prose li + li {
  margin-top: 8px;
}.article-lead {
  color: var(--color-ink) !important;
  font-size: 20px !important;
  font-weight: 650;
  line-height: 1.7 !important;
}.article-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  margin: 36px 0;
  padding: 24px;
  border-left: 4px solid var(--color-primary);
  background: var(--color-primary-soft);
}.article-callout > span {
  color: var(--color-primary);
}.article-callout p {
  margin: 0;
  font-size: 14px;
}.faq-page-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 760px);
  justify-content: space-between;
  gap: 72px;
}.faq-page-aside {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-soft);
}.faq-page-aside > .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 48px;
  color: var(--color-primary);
}.faq-page-aside h2 {
  font-size: 22px;
}.faq-page-aside p {
  color: var(--color-muted);
  font-size: 13px;
}.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 82px;
}.contact-topics {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}.contact-topics span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
}.contact-topics .icon {
  color: var(--color-primary);
}.contact-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--color-warning-soft);
  color: #74520e;
}.contact-note p {
  margin: 0;
  font-size: 11px;
}.contact-form {
  display: grid;
  gap: 20px;
  padding: 38px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}.form-field {
  display: grid;
  gap: 7px;
}.form-field label {
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 750;
}.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}.form-field input,
.form-field select {
  height: 48px;
  padding-inline: 13px;
}.form-field textarea {
  min-height: 150px;
  padding: 12px 13px;
  resize: vertical;
}.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--color-error);
}.form-field small {
  min-height: 16px;
  color: var(--color-error);
  font-size: 10px;
}.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
  font-size: 11px;
}.checkbox-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}.checkbox-field a {
  color: var(--color-primary);
  text-decoration: underline;
}.contact-form .button {
  justify-self: start;
}.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 11px;
}.form-status.is-visible {
  display: block;
  background: var(--color-warning-soft);
  color: #74520e;
}
.contact-section {
  padding-block: 48px 104px;
  background:
    radial-gradient(circle at 6% 8%, rgba(20, 184, 166, 0.09), transparent 28%),
    linear-gradient(180deg, var(--color-soft) 0%, #fff 42%, var(--color-soft) 100%);
}
.contact-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 28px;
  background: var(--color-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
.contact-map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(350px, 34vw, 460px);
  border: 0;
}
.contact-layout--professional {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  margin-top: 34px;
}
.contact-card,
.contact-form--live {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
}
.contact-card {
  display: grid;
  gap: 22px;
  padding: 36px;
}
.contact-card h1,
.contact-form__heading h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 32px;
  line-height: 1.12;
}
.contact-card > p,
.contact-form__heading p {
  max-width: 620px;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}
.contact-info-list {
  display: grid;
  gap: 12px;
}
.contact-info-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.7);
  color: var(--color-ink);
}
a.contact-info-item {
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}
a.contact-info-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(240, 253, 250, 0.72);
}
.contact-info-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 14px;
  background: rgba(240, 253, 250, 0.9);
  color: var(--color-primary);
}
.contact-info-item .icon {
  width: 20px;
  height: 20px;
}
.contact-info-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-ink);
  font-size: 13px;
}
.contact-info-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}
.contact-form--live {
  gap: 18px;
  padding: 36px;
}
.contact-form__heading {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}
.contact-form--live .button {
  min-width: 140px;
  min-height: 50px;
  justify-content: center;
}
.contact-form--live .button span {
  display: inline-flex;
}
.auth-bridge {
  display: grid;
  min-height: calc(100svh - var(--header-height) - 48px);
  place-items: center;
  padding-block: 72px;
  background: var(--color-soft);
}.auth-bridge__inner {
  max-width: 620px;
  text-align: center;
}.auth-bridge__mark {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 32px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}.auth-bridge h1 {
  margin-bottom: 18px;
}.auth-bridge__inner > p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 17px;
}.auth-bridge .button {
  margin: 18px 0 24px;
}.auth-bridge__inner > a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 750;
}.legal-hero {
  padding-block: 80px;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
  text-align: center;
}.draft-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  background: var(--color-warning-soft);
  color: #76510a;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}.legal-hero h1 {
  margin-bottom: 18px;
}.legal-hero p {
  color: var(--color-muted);
  font-size: 17px;
}.legal-hero small {
  color: var(--color-muted);
  font-size: 10px;
}.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 80px;
  padding-block: 80px 110px;
}.legal-layout aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  align-self: start;
  gap: 8px;
}.legal-layout aside strong {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 12px;
}.legal-layout aside a {
  color: var(--color-muted);
  font-size: 11px;
}.legal-layout article section + section {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--color-line);
}.legal-layout h2 {
  font-size: 26px;
}.legal-layout p,
.legal-layout li {
  color: #4d5566;
  font-size: 14px;
  line-height: 1.85;
}.not-found {
  display: grid;
  min-height: 68svh;
  place-items: center;
  padding-block: 72px;
  background: var(--color-soft);
  text-align: center;
}.not-found__code {
  display: block;
  color: var(--color-primary-soft);
  font-size: 150px;
  font-weight: 800;
  line-height: 0.85;
}.not-found h1 {
  margin: 22px 0 16px;
}.not-found p:not(.eyebrow) {
  color: var(--color-muted);
}.category-detail__image {
  position: relative;
}.category-detail__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
}.category-detail__image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}.category-scenario {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 90px;
}.category-scenario > div > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 16px;
}body.home-page .lp-events,
body.home-page .lp-templates,
body.home-page .lp-pricing,
.lp-faq,
body.home-page .lp-live {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 118, 110, 0.05), transparent 42%),
    linear-gradient(180deg, #fff, #fbfcfd);
}body.home-page .lp-section--soft {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 118, 110, 0.06), transparent 42%),
    linear-gradient(180deg, #f8fafc, #f4faf8);
}body.home-page .lp-section--teal {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 118, 110, 0.12), transparent 42%),
    linear-gradient(180deg, #eefbf8, #eaf8f5);
}body.home-page .lp-control {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 184, 166, 0.1), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(125, 211, 252, 0.12), transparent 36%),
    linear-gradient(180deg, #f5fffc 0%, #ffffff 54%, #f7fffd 100%);
}body.home-page .lp-section--dark,
body.home-page .lp-section--ink {
  position: relative;
  overflow: hidden;
}body.home-page .lp-section--dark::after,
body.home-page .lp-section--ink::after {
  position: absolute;
  inset: auto 0 0;
  height: 74px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.1));
  content: "";
  pointer-events: none;
}body.home-page .lp-step-grid .feature-item,
body.home-page .lp-plain-grid--four .feature-item {
  display: grid;
  justify-items: center;
  gap: 0;
  min-height: 246px;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}body.home-page .lp-step-grid .feature-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
}body.home-page .lp-step-grid .feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.42);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}body.home-page .lp-plain-grid--four .feature-item {
  border: 1px solid var(--color-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}body.home-page .lp-plain-grid--four .feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-line-strong);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}body.home-page .lp-step-grid .feature-item__icon,
body.home-page .lp-plain-grid--four .feature-item__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: rgba(15, 118, 110, 0.14);
  color: var(--color-primary);
}body.home-page .lp-step-grid .feature-item:nth-child(3n + 2) .feature-item__icon,
body.home-page .lp-step-grid .feature-item:nth-child(3n + 3) .feature-item__icon,
body.home-page .lp-plain-grid--four .feature-item:nth-child(4n + 2) .feature-item__icon,
body.home-page .lp-plain-grid--four .feature-item:nth-child(4n + 3) .feature-item__icon,
body.home-page .lp-plain-grid--four .feature-item:nth-child(4n + 4) .feature-item__icon {
  background: rgba(15, 118, 110, 0.14);
  color: var(--color-primary);
}body.home-page .lp-step-grid .feature-item h3,
body.home-page .lp-plain-grid--four .feature-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
}body.home-page .lp-step-grid .feature-item p,
body.home-page .lp-plain-grid--four .feature-item p {
  max-width: 270px;
  color: inherit;
  font-size: 15px;
  line-height: 1.72;
}body.home-page .lp-step-grid .feature-item {
  color: #dbe4ef;
}body.home-page .lp-step-grid .feature-item p {
  color: #c7d2df;
}body.home-page .lp-plain-grid--four .feature-item p {
  color: var(--color-muted);
}body.home-page .lp-process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(20, 184, 166, 0.064), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(255, 255, 255, 0.84), transparent 30%),
    #f8fafc;
}body.home-page .lp-process .container {
  position: relative;
  z-index: 1;
}body.home-page .lp-process .section-heading {
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: 30px;
  text-align: center;
}body.home-page .lp-process .section-heading h2 {
  max-width: none;
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: var(--section-heading-title-size);
  line-height: 1.08;
  white-space: nowrap;
}body.home-page .lp-process .section-heading p {
  max-width: 760px;
  margin-inline: auto;
  color: #475569;
  font-size: var(--section-heading-text-size);
  line-height: 1.58;
  white-space: nowrap;
}body.home-page .lp-process .lp-plain-grid--four {
  position: relative;
  gap: 24px;
  isolation: isolate;
}body.home-page .lp-process .lp-process-card {
  position: relative;
  min-height: 252px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}body.home-page .lp-process .lp-process-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.26);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}body.home-page .lp-process .lp-process-card h3 {
  margin: 22px 0 9px;
  color: var(--color-ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  white-space: nowrap;
  transition: transform 280ms ease;
}body.home-page .lp-process .lp-process-card:hover h3 {
  transform: translateY(-2px);
}body.home-page .lp-process .lp-process-card p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 220px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 13.8px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}body.home-page .lp-process-wire {
  display: grid;
  width: 170px;
  height: 84px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(15, 23, 42, 0.055);
  transition: transform 280ms ease;
}body.home-page .lp-process .lp-process-card:hover .lp-process-wire {
  transform: scale(1.02);
}body.home-page .lp-process-wire__media,
body.home-page .lp-process-wire__line,
body.home-page .lp-process-wire__edit,
body.home-page .lp-process-wire__link,
body.home-page .lp-process-wire__share-dot,
body.home-page .lp-process-wire__bar,
body.home-page .lp-process-wire__stats,
body.home-page .lp-process-wire__mini,
body.home-page .lp-process-wire__qr,
body.home-page .lp-process-wire__row {
  display: block;
}body.home-page .lp-process-wire--invite {
  grid-template-columns: 60px 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 7px 12px;
  padding: 14px;
}body.home-page .lp-process-wire--invite .lp-process-wire__media {
  grid-row: 1 / 4;
  width: 58px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(20, 184, 166, 0.1));
}body.home-page .lp-process-wire__line {
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
}body.home-page .lp-process-wire__line--strong {
  width: 68px;
  background: rgba(15, 118, 110, 0.3);
}body.home-page .lp-process-wire__edit {
  justify-self: end;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.22);
}body.home-page .lp-process-wire--guests {
  align-content: center;
  gap: 8px;
  padding: 15px 18px;
}body.home-page .lp-process-wire__row {
  display: grid;
  grid-template-columns: 16px 1fr 9px;
  align-items: center;
  gap: 9px;
  width: 128px;
}body.home-page .lp-process-wire__row i,
body.home-page .lp-process-wire__row b {
  display: block;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
}body.home-page .lp-process-wire__row i {
  width: 16px;
  height: 16px;
}body.home-page .lp-process-wire__row span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
}body.home-page .lp-process-wire__row b {
  width: 9px;
  height: 9px;
}body.home-page .lp-process-wire--responses {
  align-content: center;
  gap: 10px;
  padding: 16px 18px;
}body.home-page .lp-process-wire__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(15, 118, 110, 0.68);
  font-size: 25px;
  font-weight: 850;
  line-height: 1;
}body.home-page .lp-process-wire__stats i {
  display: block;
  width: 48px;
  height: 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
}body.home-page .lp-process-wire__bar {
  width: 128px;
  height: 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.14);
}body.home-page .lp-process-wire__bar i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: rgba(15, 118, 110, 0.32);
}body.home-page .lp-process-wire__mini {
  display: flex;
  gap: 8px;
}body.home-page .lp-process-wire__mini i {
  display: block;
  width: 44px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
}body.home-page .lp-process-wire--share {
  grid-template-columns: 50px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 14px;
  padding: 16px 18px;
}body.home-page .lp-process-wire__qr {
  display: grid;
  grid-row: 1 / 3;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 7px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.18);
}body.home-page .lp-process-wire__qr i {
  display: block;
  border-radius: 4px;
  background: rgba(15, 118, 110, 0.46);
}body.home-page .lp-process-wire__link {
  align-self: end;
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.22);
}body.home-page .lp-process-wire__share-dot {
  align-self: start;
  width: 36px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.28);
}body.home-page .lp-process__closing {
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}body.home-page .lp-event-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}body.home-page .lp-events .section-heading,
body.home-page .lp-process .section-heading,
body.home-page .lp-control .section-heading,
body.home-page .lp-templates .section-heading {
  max-width: 880px;
  margin-bottom: 30px;
  margin-inline: auto;
}body.home-page .lp-events .section-heading h2,
body.home-page .lp-process .section-heading h2,
body.home-page .lp-control .section-heading h2,
body.home-page .lp-templates .section-heading h2 {
  max-width: none;
  margin-bottom: 14px;
  font-size: var(--section-heading-title-size);
  line-height: 1.08;
  white-space: nowrap;
}body.home-page .lp-events .section-heading p,
body.home-page .lp-process .section-heading p,
body.home-page .lp-control .section-heading p,
body.home-page .lp-templates .section-heading p {
  max-width: 760px;
  margin-inline: auto;
  color: #475569;
  font-size: 18px;
  line-height: 1.58;
}body.home-page .lp-control .section-heading p,
body.home-page .lp-templates .section-heading p {
  font-size: 17px;
}body.home-page .lp-events .lp-event-grid {
  gap: 14px;
}body.home-page .lp-events .category-card {
  min-height: 410px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease, box-shadow 420ms ease;
}body.home-page .lp-events .category-card img {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}body.home-page .lp-events .category-card__shade {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.18) 42%, rgba(15, 23, 42, 0.78) 100%);
  transition: opacity 420ms ease;
}body.home-page .lp-events .category-card__badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}body.home-page .lp-events .category-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 24px 22px 22px;
  color: #fff;
}body.home-page .lp-events .category-card h3 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}body.home-page .lp-events .category-card p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 92%;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}body.home-page .lp-events .category-card__link {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: 9px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-ink);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 420ms ease, background-color 420ms ease, color 420ms ease, box-shadow 420ms ease;
}body.home-page .lp-events .category-card__link .icon {
  width: 18px;
  height: 18px;
}body.home-page .lp-events .category-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 4px;
}@media (hover: hover) and (pointer: fine) {body.home-page .lp-events .category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.24);
    box-shadow: 0 26px 62px rgba(15, 23, 42, 0.13);
  }body.home-page .lp-events .category-card:hover img {
    transform: scale(1.035);
  }body.home-page .lp-events .category-card:hover .category-card__shade {
    opacity: 0.94;
  }body.home-page .lp-events .category-card:hover .category-card__link {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.24);
    transform: translateX(3px);
  }body.home-page .lp-events .category-card:hover .category-card__link .icon {
    color: #fff;
  }
}body.home-page .lp-control__stage {
  position: relative;
  display: grid;
  left: 50%;
  place-items: center;
  padding: 30px 0 24px;
  width: min(var(--site-content-max), 100%);
  margin-inline: auto;
  transform: translateX(-50%);
}body.home-page .lp-control__stage::before {
  position: absolute;
  inset: 0 4% -8%;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 48%, rgba(15, 118, 110, 0.14), rgba(20, 184, 166, 0.07) 42%, rgba(125, 211, 252, 0.05) 60%, rgba(15, 118, 110, 0));
  content: "";
  pointer-events: none;
}body.home-page .lp-control__stage .product-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  border-color: rgba(15, 118, 110, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfffe 100%);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.09), 0 12px 30px rgba(15, 118, 110, 0.06);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}body.home-page .lp-control__stage .product-shell:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 30px 78px rgba(15, 23, 42, 0.11), 0 14px 34px rgba(15, 118, 110, 0.07);
}body.home-page .lp-control__stage .product-shell__topbar {
  height: 56px;
  padding: 0 20px 0 18px;
  border-bottom-color: rgba(226, 232, 240, 0.82);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.94));
}body.home-page .lp-control__stage .product-shell__brand {
  gap: 10px;
  font-size: 13px;
}body.home-page .lp-control__stage .product-shell__brand img {
  width: 28px;
  height: 28px;
}body.home-page .lp-control__stage .product-shell__actions {
  gap: 8px;
}body.home-page .lp-control__stage .product-shell__actions > span:not(.product-avatar) {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(15, 23, 42, 0.07);
}body.home-page .lp-control__stage .product-shell__actions > span:not(.product-avatar):nth-child(1) {
  background: #fca5a5;
}body.home-page .lp-control__stage .product-shell__actions > span:not(.product-avatar):nth-child(2) {
  background: #fde68a;
}body.home-page .lp-control__stage .product-avatar {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: linear-gradient(180deg, #ffffff, var(--color-primary-soft));
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.12);
  font-size: 9px;
}body.home-page .lp-control__stage .product-shell__workspace {
  grid-template-columns: 176px minmax(0, 1fr);
}body.home-page .lp-control__stage .product-shell__sidebar {
  gap: 7px;
  min-height: 472px;
  padding: 22px 14px;
  border-right-color: rgba(226, 232, 240, 0.78);
  background: linear-gradient(180deg, #fbfefd 0%, #f7fafc 100%);
}body.home-page .lp-control__stage .product-shell__sidebar span {
  position: relative;
  height: 40px;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 750;
}body.home-page .lp-control__stage .product-shell__sidebar span.is-active {
  border-color: rgba(15, 118, 110, 0.18);
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.14), rgba(240, 253, 250, 0.9));
  color: var(--color-primary-dark);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.09);
}body.home-page .lp-control__stage .product-shell__sidebar span.is-active::before {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  content: "";
}body.home-page .lp-control__stage .product-shell__sidebar .icon {
  width: 15px;
  height: 15px;
}body.home-page .lp-control__stage .product-shell__content {
  padding: 28px;
}body.home-page .lp-control__stage .product-shell__heading {
  margin-bottom: 22px;
}body.home-page .lp-control__stage .product-shell__heading small,
body.home-page .lp-control__stage .panel-title span,
body.home-page .lp-control__stage .metric small,
body.home-page .lp-control__stage .event-row small {
  font-size: 10px;
}body.home-page .lp-control__stage .product-shell__heading strong {
  font-size: 18px;
}body.home-page .lp-control__stage .mini-button {
  height: 34px;
  gap: 7px;
  padding: 0 13px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
  font-size: 9px;
}body.home-page .lp-control__stage .mini-button .icon {
  width: 13px;
  height: 13px;
}body.home-page .lp-control__stage .metric-grid {
  gap: 14px;
}body.home-page .lp-control__stage .metric {
  gap: 12px;
  padding: 16px;
  border-color: rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfefd);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}body.home-page .lp-control__stage .metric__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}body.home-page .lp-control__stage .metric strong {
  font-size: 22px;
}body.home-page .lp-control__stage .metric em {
  width: max-content;
  margin-top: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary-dark);
  font-size: 8px;
  font-weight: 800;
}body.home-page .lp-control__stage .product-shell__lower {
  gap: 14px;
  margin-top: 14px;
}body.home-page .lp-control__stage .attendance-chart,
body.home-page .lp-control__stage .event-list {
  padding: 17px;
  border-color: rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfefd);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}body.home-page .lp-control__stage .panel-title strong {
  font-size: 12px;
}body.home-page .lp-control__stage .panel-title span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
}body.home-page .lp-control__stage .chart-bars {
  height: 96px;
  gap: 10px;
  padding: 18px 7px 0;
  border-bottom-color: rgba(226, 232, 240, 0.9);
}body.home-page .lp-control__stage .chart-bars i {
  width: 15px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.96), rgba(15, 118, 110, 0.72));
  box-shadow: 0 9px 18px rgba(15, 118, 110, 0.12);
  opacity: 1;
}body.home-page .lp-control__stage .event-list {
  display: grid;
  align-content: start;
  gap: 10px;
}body.home-page .lp-control__stage .event-row {
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}body.home-page .lp-control__stage .event-thumb {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(252, 211, 77, 0.18));
}body.home-page .lp-control__stage .event-thumb--launch {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(125, 211, 252, 0.22));
}body.home-page .lp-control__stage .event-row b {
  font-size: 10px;
}body.home-page .lp-control__stage .event-row em {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--color-success-soft);
  color: var(--color-success);
  font-size: 7px;
}body.home-page .lp-control__caption {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}body.home-page .lp-control__chips {
  gap: 10px;
  margin-top: 14px;
}body.home-page .lp-control__chips > div {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-color: rgba(15, 118, 110, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(14px);
  font-size: 12px;
}body.home-page .lp-control__chips > div > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}body.home-page .phone-preview__screen {
  justify-content: flex-start;
  padding-top: 26px;
}body.home-page .phone-preview__badge {
  margin-bottom: 10px;
  padding: 6px 10px;
}body.home-page .phone-preview__meta {
  display: inline-flex;
  margin-top: 8px;
  color: currentColor;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}body.home-page .phone-preview__place {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
}body.home-page .phone-preview strong {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.22;
}body.home-page .phone-preview--conference strong {
  font-size: 22px;
}body.home-page .phone-preview__details {
  display: grid;
  width: 100%;
  gap: 8px;
  margin-top: 18px;
}body.home-page .phone-preview__details span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 750;
}body.home-page .phone-preview__details .icon {
  width: 14px;
  height: 14px;
}body.home-page .phone-preview__actions {
  margin-top: 18px;
}body.home-page .phone-preview__actions i {
  background: rgba(255, 255, 255, 0.42);
}body.home-page .phone-preview__footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
}body.home-page .phone-preview__footer strong {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}body.home-page .phone-preview__footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
}body.home-page .phone-preview__footer .icon {
  width: 14px;
  height: 14px;
}body.home-page .lp-live__mockup {
  min-height: 660px;
}body.home-page .lp-live__mockup .phone-preview {
  width: 270px;
  height: 548px;
}body.home-page .lp-live__mockup .phone-preview + .phone-preview {
  top: 104px;
}body.home-page .lp-live {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-24);
  background:
    radial-gradient(circle at 54% 4%, rgba(15, 118, 110, 0.05), transparent 40%),
    linear-gradient(180deg, #fff, #fbfcfd);
}body.home-page .lp-live::before,
body.home-page .lp-live::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  height: 88px;
  pointer-events: none;
  content: "";
}body.home-page .lp-live::before {
  top: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0));
}body.home-page .lp-live::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0));
}body.home-page .lp-live .container {
  position: relative;
  z-index: 1;
}body.home-page .lp-live .section-heading {
  display: flex;
  width: 100%;
  max-width: 1120px;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 30px;
  text-align: center;
}body.home-page .lp-live .section-heading h2 {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 14px;
  font-size: var(--section-heading-title-size);
  line-height: 1.08;
  text-align: center;
  white-space: normal;
}body.home-page .lp-live .section-heading p {
  max-width: 760px;
  margin-inline: auto;
  color: #475569;
  font-size: var(--section-heading-text-size);
  line-height: var(--section-heading-text-line-height);
  text-align: center;
  white-space: normal;
}body.home-page .lp-live__layout {
  grid-template-columns: minmax(440px, 0.52fr) minmax(480px, 0.48fr);
  align-items: start;
  gap: 52px;
}body.home-page .lp-live__accordion {
  display: grid;
  gap: 12px;
}body.home-page .lp-live-accordion__item {
  position: relative;
  display: grid;
  width: 100%;
  gap: 8px;
  padding: 22px 24px 22px 26px;
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  text-align: left;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}body.home-page .lp-live-accordion__item::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: -1px;
  width: 3px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  opacity: 0;
  content: "";
  transition: opacity 280ms ease;
}body.home-page .lp-live-accordion__item:hover {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(248, 253, 251, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}body.home-page .lp-live-accordion__item.is-active {
  border-color: rgba(15, 118, 110, 0.34);
  background: rgba(240, 253, 250, 0.62);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}body.home-page .lp-live-accordion__item.is-active::before {
  opacity: 1;
}body.home-page .lp-live-accordion__title {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.25;
}body.home-page .lp-live-accordion__item.is-active .lp-live-accordion__title {
  font-weight: 850;
}body.home-page .lp-live-accordion__text {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}body.home-page .lp-live__mockup {
  position: relative;
  display: grid;
  min-height: 660px;
  margin-left: 0;
  place-items: start center;
}body.home-page .lp-live-preview {
  --live-blue: var(--color-primary);
  --live-blue-dark: var(--color-primary-dark);
  --live-blue-soft: var(--color-primary-soft);
  --live-blue-wash: var(--color-primary-very-soft);
  position: relative;
  display: grid;
  width: min(100%, 580px);
  min-height: 650px;
  place-items: center;
  isolation: isolate;
}body.home-page .lp-live-preview[data-live-state="location"] {
  --live-blue: var(--color-primary);
  --live-blue-dark: var(--color-primary-dark);
  --live-blue-soft: var(--color-primary-soft);
  --live-blue-wash: var(--color-primary-very-soft);
}body.home-page .lp-live-preview[data-live-state="media"] {
  --live-blue: var(--color-primary);
  --live-blue-dark: var(--color-primary-dark);
  --live-blue-soft: var(--color-primary-soft);
  --live-blue-wash: var(--color-primary-very-soft);
}body.home-page .lp-live-preview[data-live-state="link"] {
  --live-blue: var(--color-primary);
  --live-blue-dark: var(--color-primary-dark);
  --live-blue-soft: var(--color-primary-soft);
  --live-blue-wash: var(--color-primary-very-soft);
}body.home-page .lp-live-preview::before {
  position: absolute;
  inset: 10% 8% 8%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--live-blue) 10%, transparent), transparent 66%);
  filter: blur(18px);
  content: "";
}body.home-page .lp-live-device {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 650px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.78);
  border-radius: 46px;
  background: #0f172a;
  box-shadow: 0 30px 68px rgba(15, 23, 42, 0.18);
}body.home-page .lp-live-device::before {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 76px;
  height: 17px;
  border-radius: 0 0 12px 12px;
  background: #0f172a;
  content: "";
  transform: translateX(-50%);
}body.home-page .lp-live-device__screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 17px 18px 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 253, 250, 0.76)),
    #fff;
  color: #0f172a;
  text-align: center;
  transition: opacity 280ms ease, transform 280ms ease, background-color 280ms ease;
}body.home-page .lp-live-preview.is-updating .lp-live-device__screen {
  opacity: 0.78;
  transform: translateY(5px);
}body.home-page .lp-live-statusbar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  color: #0f172a;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}body.home-page .lp-live-statusbar span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}body.home-page .lp-live-statusbar i {
  display: block;
  width: 8px;
  height: 6px;
  border: 1.6px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}body.home-page .lp-live-statusbar b {
  display: block;
  width: 18px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 11px 0 0 var(--live-blue);
}body.home-page .lp-live-device__cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 166px;
  margin-top: 14px;
  border-radius: 21px;
  background: var(--live-blue-wash);
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.1);
}body.home-page .lp-live-device__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, opacity 220ms ease;
}body.home-page .lp-live-device__cover span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--live-blue-dark);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}body.home-page .lp-live-device__names {
  display: flex;
  min-height: 68px;
  max-width: 254px;
  align-items: center;
  justify-content: center;
  margin-top: 21px;
  color: #0f172a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}body.home-page .lp-live-device__date {
  display: block;
  margin-top: 6px;
  color: var(--live-blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
}body.home-page .lp-live-device__screen p {
  max-width: 250px;
  margin: 20px auto 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.64;
}body.home-page .lp-live-countdown {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}body.home-page .lp-live-countdown span,
body.home-page .lp-live-actions__item {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}body.home-page .lp-live-countdown b {
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
}body.home-page .lp-live-countdown em {
  color: #64748b;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}body.home-page .lp-live-actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}body.home-page .lp-live-actions__item {
  min-height: 38px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
}body.home-page .lp-live-actions__item--primary {
  border-color: transparent;
  background: var(--live-blue);
  color: #fff;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--live-blue) 30%, transparent);
}body.home-page .lp-live-device__url {
  display: block;
  margin-top: 14px;
  color: rgba(15, 118, 110, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: center;
}body.home-page .lp-live-float-card {
  position: absolute;
  z-index: 3;
  width: 134px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}body.home-page .lp-live-float-card--qr {
  top: 112px;
  right: 56px;
}body.home-page .lp-live-float-card--rsvp {
  bottom: 142px;
  left: 56px;
}body.home-page .lp-live-float-card strong {
  display: block;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
}body.home-page .lp-live-float-card small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.45;
}body.home-page .lp-live-qr {
  display: grid;
  width: 46px;
  height: 46px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 12px auto 0;
  padding: 8px;
  border-radius: var(--radius-md);
  background: #111827;
}body.home-page .lp-live-qr i {
  border-radius: 2px;
  background: #fff;
}body.home-page .lp-live-progress {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 7px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e2e8f0;
}body.home-page .lp-live-progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--live-blue), var(--live-blue-dark));
}body.home-page .lp-live-rsvp-lines {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}body.home-page .lp-live-rsvp-lines b {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-md);
  background: rgba(240, 253, 250, 0.74);
  color: var(--live-blue-dark);
  font-size: 10px;
  font-weight: 900;
}.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition);
}.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}.social-link:focus-visible {
  outline-offset: 4px;
}.social-link .icon {
  width: 18px;
  height: 18px;
}.footer-brand .social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
}.footer-brand .social-link .icon {
  width: 20px;
  height: 20px;
}.site-logo--footer .site-logo__text span:first-child {
  color: #fff;
}.site-logo--footer .site-logo__text span:last-child {
  color: #21817a;
}.site-footer__top {
  align-items: start;
}.footer-brand {
  display: grid;
  align-content: start;
}body.home-page .lp-process .section-heading {
  max-width: 880px;
}body.home-page .lp-process .lp-plain-grid--four {
  width: 100%;
  max-width: var(--site-content-max);
  margin-inline: auto;
  gap: 24px;
}body.home-page .lp-process .lp-process-card {
  min-height: 268px;
  padding: 28px 24px 26px;
  border-radius: 28px;
  box-shadow: var(--shadow-surface);
}body.home-page .lp-process .lp-process-card:hover {
  box-shadow: var(--shadow-hover);
}body.home-page .lp-process-wire {
  width: 184px;
  height: 92px;
  margin-bottom: 2px;
}body.home-page .lp-process .lp-process-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}body.home-page .lp-process .lp-process-card p {
  max-width: 232px;
}body.home-page .lp-control__chips {
  gap: 12px;
  margin-top: 16px;
}body.home-page .lp-control__chips > div {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-surface);
}body.home-page .lp-live__layout,
body.home-page .lp-event-grid,
body.home-page .lp-template-grid {
  width: 100%;
}body.home-page .lp-events .category-card {
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
}body.home-page .lp-events .category-card:hover {
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.13);
}body.home-page .lp-control__stage {
  left: auto;
  width: 100%;
  max-width: var(--site-content-max);
  margin-inline: auto;
  transform: none;
}body.home-page .lp-control .product-section__stage {
  width: 100%;
}body.home-page .lp-control__stage .product-shell {
  border-color: rgba(15, 118, 110, 0.12);
  border-radius: 24px;
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.09), 0 12px 30px rgba(15, 118, 110, 0.06);
}body.home-page .lp-control__stage .product-shell:hover {
  box-shadow: 0 30px 78px rgba(15, 23, 42, 0.11), 0 14px 34px rgba(15, 118, 110, 0.07);
}
body.home-page .lp-templates .section-heading {
  max-width: 880px;
  margin-bottom: 30px;
  margin-inline: auto;
}body.home-page .lp-templates .lp-template-grid {
  max-width: var(--site-content-max);
  margin-inline: auto;
  gap: 22px;
}body.home-page .lp-templates .template-card {
  border-color: rgba(15, 118, 110, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfffe 100%);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}body.home-page .lp-templates .template-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 30px 74px rgba(15, 23, 42, 0.12), 0 12px 30px rgba(15, 118, 110, 0.05);
}body.home-page .lp-templates .template-card__preview {
  aspect-ratio: 4 / 5.52;
  transition: transform 360ms ease;
}body.home-page .lp-templates .template-card__preview::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.38) 100%);
}body.home-page .lp-templates .template-card__sample-copy {
  width: calc(100% - 26px);
  min-height: 62%;
  align-content: center;
  gap: 12px;
  padding: 28px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.2);
  transition: transform 360ms ease, box-shadow 360ms ease;
}body.home-page .lp-templates .template-card__sample-copy strong {
  font-size: 25px;
}body.home-page .lp-templates .template-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  left: auto;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary-dark);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
}body.home-page .lp-templates .template-card__sample-label {
  top: 14px;
  left: 14px;
  border-radius: 999px;
}body.home-page .lp-templates .template-card__body {
  min-height: 104px;
  align-items: flex-start;
  padding: 18px 18px 16px;
}body.home-page .lp-templates .template-card__body > div {
  display: grid;
  gap: 6px;
}body.home-page .lp-templates .template-card__body span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}body.home-page .lp-templates .template-card__body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
}body.home-page .lp-templates .template-card__summary {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}body.home-page .lp-templates .template-card .icon-link {
  align-self: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.08);
  transition: transform 280ms ease, border-color 280ms ease, background-color 280ms ease, color 280ms ease, box-shadow 280ms ease;
}body.home-page .lp-templates .template-card:hover .template-card__sample-copy {
  transform: scale(1.08);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.24);
}body.home-page .lp-templates .template-card:hover .icon-link {
  transform: translateX(4px);
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.2);
}body.home-page .lp-templates .template-card:hover .template-card__preview::before,
body.home-page .lp-templates .template-card:hover .template-card__preview::after {
  opacity: inherit;
}body.home-page .lp-templates__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
body.home-page .lp-pricing .commerce-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: var(--site-content-max);
  margin-inline: auto;
  align-items: stretch;
  gap: 20px;
}
body.home-page .lp-pricing__trust {
  margin: -18px auto 30px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}
body.home-page .lp-pricing .commerce-card {
  display: flex;
  min-height: 398px;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-surface);
}
body.home-page .lp-pricing .commerce-card:hover {
  box-shadow: var(--shadow-hover);
}body.home-page .lp-pricing .commerce-card--featured {
  box-shadow: var(--shadow-featured);
}body.home-page .lp-pricing .commerce-card h3 {
  min-height: 26px;
}body.home-page .lp-pricing .commerce-card__summary {
  min-height: 22px;
}body.home-page .lp-pricing .commerce-card__price {
  min-height: 72px;
  margin-top: 2px;
}body.home-page .lp-pricing .commerce-card__features {
  margin-top: 2px;
}body.home-page .lp-pricing .commerce-card__footer {
  margin-top: auto;
}.lp-faq > .home-faq-layout {
  grid-template-columns: minmax(320px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(56px, 5vw, 76px);
}body.home-page .site-footer > .site-footer__top {
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 3.25fr);
  gap: 76px;
}
body.home-page .footer-links {
  gap: 42px;
}
.home-faq-support {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-surface);
}.footer-links h2 {
  font-size: 17px;
  line-height: 1.28;
}.footer-links a,
.footer-link--disabled {
  font-size: 15px;
  line-height: 1.48;
}.footer-links > div {
  gap: 16px;
}body.product-page {
  --product-section-space: 120px;
  background: #fff;
}body.product-page .product-section {
  padding-block: var(--product-section-space);
}
body.product-page .section-heading {
  max-width: 980px;
  margin-bottom: 52px;
}
body.product-page .section-heading h2 {
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: var(--section-heading-title-size);
  font-weight: var(--section-heading-title-weight);
  line-height: var(--section-heading-title-line-height);
  letter-spacing: 0;
}
body.product-page .section-heading > p:last-child {
  max-width: var(--section-heading-text-max);
  color: var(--color-muted);
  font-size: var(--section-heading-text-size);
  line-height: var(--section-heading-text-line-height);
}
@media (min-width: 1180px) {
  body.page-centered-section-headings .section-heading--center {
    max-width: none;
    text-align: center;
  }
  body.page-centered-section-headings .section-heading--center h2,
  body.page-centered-section-headings .section-heading--center > p:last-child {
    max-width: none;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
  }
}
body.product-page .section--ink .section-heading h2 {
  color: #fff;
}
body.product-page .section--ink .section-heading > p:last-child {
  color: #cbd5e1;
}
.product-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 76% 24%, rgba(15, 118, 110, 0.15), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}.product-hero::before {
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 360px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.13), transparent 66%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}.product-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(56px, 6vw, 92px);
  min-height: 660px;
  padding-block: 88px 96px;
}.product-hero__copy {
  max-width: 620px;
}.product-hero__copy h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 4.5vw, 68px);
  line-height: 1.04;
}.product-hero__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 32px;
  color: #475569;
  font-size: 19px;
  line-height: 1.72;
}.product-hero__visual {
  position: relative;
  min-width: 0;
  padding: 34px 34px 58px;
}.product-hero__visual::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.11);
  content: "";
}.product-hero__visual > .product-shell {
  position: relative;
  z-index: 1;
  transform: translateX(-18px);
}.product-hero__phone {
  position: absolute;
  z-index: 2;
  right: 6px;
  bottom: 0;
  width: 168px;
  transform: rotate(3deg);
  transform-origin: center bottom;
  filter: drop-shadow(0 22px 34px rgba(15, 23, 42, 0.16));
}.product-hero__phone .phone-preview {
  width: 100%;
}.product-intro__inner,
.product-flow,
.product-compare,
.product-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 6vw, 88px);
}.product-intro__inner > div:first-child > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.72;
}.product-intro__panel {
  min-height: 360px;
  padding: 46px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 10%, rgba(15, 118, 110, 0.12), transparent 42%),
    #fff;
  box-shadow: var(--shadow-md);
}.product-intro__panel > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 18px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}.product-intro__panel > span .icon {
  width: 25px;
  height: 25px;
}.product-intro__panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-ink);
  font-size: 34px;
  line-height: 1.12;
}.product-intro__panel p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 16px;
}.product-capability-grid,
.product-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}body.product-page .feature-item {
  min-height: 238px;
  border-color: rgba(226, 232, 240, 0.88);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}body.product-page .feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}body.product-page .feature-item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 16px;
}body.product-page .feature-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.24;
}body.product-page .feature-item p {
  font-size: 15px;
  line-height: 1.62;
}.product-flow {
  align-items: center;
}.product-flow .section-heading {
  margin-bottom: 32px;
}.product-flow__preview {
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(15, 118, 110, 0.14), transparent 42%),
    linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: var(--shadow-md);
}.product-flow__preview .phone-preview {
  width: min(280px, 82%);
}.product-highlight-grid {
  gap: 22px;
}body.product-page .section--ink .feature-item {
  border-color: rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.16);
}body.product-page .section--ink .feature-item:hover {
  border-color: rgba(45, 212, 191, 0.32);
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.22);
}body.product-page .section--ink .feature-item p {
  color: #cbd5e1;
}.product-showcase__stage {
  position: relative;
  margin-bottom: 34px;
  padding: 44px 44px 78px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 118, 110, 0.10), transparent 35%),
    linear-gradient(180deg, #f8fafc, #fff);
  box-shadow: var(--shadow-md);
}.product-showcase__stage > .product-shell {
  width: min(100%, 1040px);
  margin-inline: auto;
}.product-showcase__phone {
  position: absolute;
  right: clamp(14px, 5vw, 72px);
  bottom: -18px;
  width: 154px;
  filter: drop-shadow(0 20px 32px rgba(15, 23, 42, 0.16));
}.product-showcase__phone .phone-preview {
  width: 100%;
}body.product-page .trust-strip {
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}.product-use-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.product-use-grid .feature-item {
  min-height: 220px;
}.product-compare {
  align-items: start;
}.product-compare .section-heading {
  margin-bottom: 28px;
}.product-compare__panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-md);
}.product-compare-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #f8fafc;
}.product-compare-row > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: #fff;
  color: var(--color-muted);
}.product-compare-row--primary {
  border-color: rgba(15, 118, 110, 0.20);
  background: var(--color-primary-very-soft);
}.product-compare-row--primary > span {
  color: var(--color-primary);
}.product-compare-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink);
  font-size: 17px;
}.product-compare-row p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
}.product-faq {
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  align-items: start;
}.product-faq aside {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}.product-faq .section-heading {
  margin-bottom: 24px;
}/* Product story page v2 */
body.product-page .product-story-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 72% 22%, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}body.product-page .product-story-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 6vw, 96px);
  min-height: 700px;
  padding-block: 86px 104px;
}body.product-page .product-story-hero__copy {
  max-width: 640px;
}body.product-page .product-story-hero h1 {
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: 42px;
  font-weight: var(--section-heading-title-weight);
  line-height: var(--section-heading-title-line-height);
  letter-spacing: 0;
}
body.product-page .product-story-hero__copy > p:not(.eyebrow) {
  max-width: var(--section-heading-text-max);
  margin-bottom: 32px;
  color: #475569;
  font-size: var(--section-heading-text-size);
  line-height: var(--section-heading-text-line-height);
}
body.product-page .product-story-stage {
  position: relative;
  min-height: 470px;
  padding: 44px 44px 76px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.12);
}body.product-page .product-story-stage::before {
  position: absolute;
  inset: 10% 4% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  content: "";
  filter: blur(36px);
  pointer-events: none;
}body.product-page .product-story-stage__dashboard {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  transform: translateX(-10px);
}body.product-page .product-story-stage__phone {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  width: 180px;
  transform: rotate(3deg);
  filter: drop-shadow(0 24px 36px rgba(15, 23, 42, 0.18));
}body.product-page .product-story-stage__phone .phone-preview {
  width: 100%;
}body.product-page .product-story-stage__note {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}body.product-page .product-story-stage__note .icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}body.product-page .product-story-stage__note--left {
  left: 24px;
  bottom: 34px;
}body.product-page .product-story-stage__note--right {
  top: 28px;
  right: 34px;
}
body.product-category-page .product-story-hero__inner,
body.product-landing-page .product-story-hero__inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(46px, 4.8vw, 78px);
}
body.product-category-page .product-story-stage,
body.product-landing-page .product-story-stage {
  padding: 42px 36px 72px;
}
body.product-category-page .product-story-stage__dashboard,
body.product-landing-page .product-story-stage__dashboard {
  width: min(100%, 710px);
  transform: translateX(-16px) scale(1.045);
  transform-origin: left center;
}
body.product-category-page .product-story-stage__phone,
body.product-landing-page .product-story-stage__phone {
  right: 8px;
  bottom: 14px;
  width: 198px;
}
body.product-category-page .product-story-stage__note--right,
body.product-landing-page .product-story-stage__note--right {
  right: 24px;
}
body.template-page .product-story-stage--template-moodboard {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
body.template-page .template-hero-moodboard {
  position: relative;
  min-height: 520px;
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
}
body.template-page .template-hero-moodboard.is-changing {
  opacity: 0.72;
  transform: translateY(6px) scale(0.985);
  filter: saturate(0.94);
}
body.template-page .template-hero-card {
  position: absolute;
  z-index: 1;
  width: clamp(112px, 11vw, 172px);
  transform-origin: center;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
  pointer-events: none;
}
body.template-page .template-hero-card .template-card__preview {
  aspect-ratio: 3 / 4;
}
body.template-page .template-hero-card .template-card__sample-label {
  max-width: calc(100% - 20px);
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.template-page .template-hero-card .template-card__sample-copy {
  width: calc(100% - 24px);
  gap: 6px;
  padding: 16px 10px;
}
body.template-page .template-hero-card .template-card__sample-copy span,
body.template-page .template-hero-card .template-card__sample-copy small {
  font-size: 8px;
}
body.template-page .template-hero-card .template-card__sample-copy strong {
  font-size: 13px;
  line-height: 1.12;
}
body.template-page .template-hero-card:nth-child(1) { z-index: 9; top: 47%; left: 48%; transform: translate(-50%, -50%) rotate(-4deg) scale(1.21); }
body.template-page .template-hero-card:nth-child(2) { z-index: 8; top: 37%; left: 66%; transform: translate(-50%, -50%) rotate(5deg) scale(1.02); }
body.template-page .template-hero-card:nth-child(3) { z-index: 8; top: 61%; left: 31%; transform: translate(-50%, -50%) rotate(6deg) scale(1.02); }
body.template-page .template-hero-card:nth-child(4) { z-index: 7; top: 68%; left: 62%; transform: translate(-50%, -50%) rotate(-7deg) scale(0.96); }
body.template-page .template-hero-card:nth-child(5) { z-index: 7; top: 29%; left: 32%; transform: translate(-50%, -50%) rotate(-9deg) scale(0.95); }
body.template-page .template-hero-card:nth-child(6) { z-index: 6; top: 20%; left: 51%; transform: translate(-50%, -50%) rotate(8deg) scale(0.86); }
body.template-page .template-hero-card:nth-child(7) { z-index: 6; top: 80%; left: 47%; transform: translate(-50%, -50%) rotate(4deg) scale(0.88); }
body.template-page .template-hero-card:nth-child(8) { z-index: 5; top: 49%; left: 9%; transform: translate(-50%, -50%) rotate(-12deg) scale(0.82); }
body.template-page .template-hero-card:nth-child(9) { z-index: 5; top: 50%; left: 88%; transform: translate(-50%, -50%) rotate(12deg) scale(0.82); }
body.template-page .template-hero-card:nth-child(10) { z-index: 4; top: 16%; left: 15%; transform: translate(-50%, -50%) rotate(7deg) scale(0.72); filter: blur(0.16px); }
body.template-page .template-hero-card:nth-child(11) { z-index: 4; top: 17%; left: 86%; transform: translate(-50%, -50%) rotate(-8deg) scale(0.72); filter: blur(0.16px); }
body.template-page .template-hero-card:nth-child(12) { z-index: 3; top: 82%; left: 11%; transform: translate(-50%, -50%) rotate(9deg) scale(0.72); opacity: 0.92; }
body.template-page .template-hero-card:nth-child(13) { z-index: 3; top: 83%; left: 88%; transform: translate(-50%, -50%) rotate(-9deg) scale(0.72); opacity: 0.92; }
body.template-page .template-hero-card:nth-child(14) { z-index: 2; top: 7%; left: 38%; transform: translate(-50%, -50%) rotate(-4deg) scale(0.62); opacity: 0.78; filter: blur(0.48px); }
body.template-page .template-hero-card:nth-child(15) { z-index: 2; top: 8%; left: 65%; transform: translate(-50%, -50%) rotate(6deg) scale(0.62); opacity: 0.78; filter: blur(0.48px); }
body.template-page .template-grid--full .template-card__body h3 {
  margin-top: 0;
}
body.product-category-page .product-hero-proof,
body.product-landing-page .product-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
body.product-category-page .product-hero-proof :is(span, a),
body.product-landing-page .product-hero-proof :is(span, a) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}
body.product-landing-page .product-hero-proof a {
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}
body.product-landing-page .product-hero-proof a:hover {
  color: var(--color-primary);
}
body.product-landing-page .product-hero-proof a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}
body.product-category-page .product-hero-proof .icon,
body.product-landing-page .product-hero-proof .icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}
body.product-category-page .product-intro__panel--compact {
  display: grid;
  min-height: 300px;
  align-content: center;
}
body.product-category-page .product-intro__panel--compact strong {
  font-size: 30px;
}
body.product-category-page .product-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* Balance the four-card solution categories without changing shared card styles. */
body.product-category-page #kullanim-alanlari .product-use-grid,
body.product-category-page #organizasyon-ve-mekan .product-use-grid,
body.product-category-page #egitim-ve-topluluk .product-use-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.product-category-page .product-use-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
body.product-landing-page #dijital-basili-davetiye-karsilastirma,
body.product-landing-page #katilim-yanitlarini-takip-etme,
body.product-landing-page #ekran-goruntuleri {
  background: #fafbfc;
}
body.product-category-page #neler-yapabilirsiniz .product-capability-grid .feature-item:nth-child(-n + 3),
body.product-landing-page #neler-yapabilirsiniz .product-capability-grid .feature-item:nth-child(-n + 3) {
  border-color: rgba(15, 118, 110, 0.18);
  background:
    radial-gradient(circle at 88% 0%, rgba(15, 118, 110, 0.08), transparent 42%),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}
body.product-category-page #neler-yapabilirsiniz .product-capability-grid .feature-item:nth-child(-n + 3) .feature-item__icon,
body.product-landing-page #neler-yapabilirsiniz .product-capability-grid .feature-item:nth-child(-n + 3) .feature-item__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(240, 253, 250, 0.86);
}
body.product-category-page #neler-yapabilirsiniz .product-capability-grid .feature-item:nth-child(-n + 3) h3,
body.product-landing-page #neler-yapabilirsiniz .product-capability-grid .feature-item:nth-child(-n + 3) h3 {
  color: #0f172a;
  font-weight: 900;
}
body.product-category-page #dijital-basili-davetiye .product-compare__panel {
  gap: 10px;
  padding: 14px;
}
body.product-category-page #dijital-basili-davetiye .product-compare-row {
  padding: 18px;
}
body.product-landing-page .product-before-after__side {
  display: grid;
  align-content: start;
  padding: 36px 38px;
}
body.product-landing-page .product-before-after__side > span {
  margin-bottom: 14px;
}
body.product-landing-page .product-before-after__side h3 {
  margin-bottom: 18px;
}
body.product-landing-page .product-before-after__side ul {
  gap: 12px;
}
body.product-landing-page .product-before-after__side li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
body.product-landing-page .product-before-after__side li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.5);
  content: "";
  transform: translateY(-50%);
}
body.product-landing-page #katilim-yanitlarini-takip-etme .product-intro__inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}
body.product-landing-page #katilim-yanitlarini-takip-etme .product-intro__panel {
  display: grid;
  min-height: 390px;
  align-items: center;
  padding: 32px;
}
body.product-landing-page #katilim-yanitlarini-takip-etme .product-intro__panel > .product-shell {
  width: min(100%, 720px);
  margin-inline: auto;
  transform: scale(1.045);
}
body.product-page .product-problem__inner,
body.product-page .product-solution__inner,
body.product-page .product-capabilities__inner,
body.product-page .product-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 6vw, 92px);
}
body.product-page .product-problem .section-heading,
body.product-page .product-solution .section-heading,
body.product-page .product-capabilities .section-heading,
body.product-page .product-trust .section-heading {
  margin-bottom: 0;
}
.product-timeline__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 6vw, 92px);
}
.product-timeline .section-heading {
  margin-bottom: 0;
}
body.product-page .product-problem-map {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.12), transparent 32%),
    #fff;
  box-shadow: var(--shadow-md);
}body.product-page .product-problem-map__center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  min-height: 190px;
  padding: 26px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 28px;
  background: var(--color-primary-very-soft);
  text-align: center;
  transform: translate(-50%, -50%);
}body.product-page .product-problem-map__center .icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}body.product-page .product-problem-map__center strong {
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1.15;
}body.product-page .product-problem-map__center p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}body.product-page .product-problem-node {
  position: absolute;
  width: min(220px, 38%);
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}body.product-page .product-problem-node--1 {
  top: 34px;
  left: 34px;
}body.product-page .product-problem-node--2 {
  top: 42px;
  right: 34px;
}body.product-page .product-problem-node--3 {
  right: 44px;
  bottom: 42px;
}body.product-page .product-problem-node--4 {
  bottom: 34px;
  left: 38px;
}body.product-page .product-problem-node span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}body.product-page .product-problem-node strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 17px;
}body.product-page .product-problem-node p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}body.product-page .product-solution__visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.16), transparent 36%),
    #fff;
  box-shadow: var(--shadow-md);
}body.product-page .product-solution__visual strong {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 24px 70px rgba(15, 118, 110, 0.22);
}body.product-page .product-solution__visual small {
  position: absolute;
  bottom: 54px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}body.product-page .product-solution__dot {
  position: absolute;
  padding: 11px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}body.product-page .product-solution__dot--1 { top: 54px; left: 62px; }body.product-page .product-solution__dot--2 { top: 96px; right: 58px; }body.product-page .product-solution__dot--3 { bottom: 130px; left: 42px; }body.product-page .product-solution__dot--4 { right: 52px; bottom: 116px; }body.product-page .product-solution-points {
  display: grid;
  gap: 14px;
}body.product-page .product-solution-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
  color: var(--color-ink);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}body.product-page .product-solution-points .icon {
  color: var(--color-primary);
}body.product-page .product-experience__stage {
  position: relative;
  padding: 48px 48px 96px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 118, 110, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fafc, #fff);
  box-shadow: var(--shadow-md);
}body.product-page .product-experience__stage > .product-shell {
  width: min(100%, 1040px);
  margin-inline: auto;
}body.product-page .product-experience__phone {
  position: absolute;
  right: clamp(22px, 5vw, 86px);
  bottom: -22px;
  width: 164px;
  filter: drop-shadow(0 24px 36px rgba(15, 23, 42, 0.17));
}body.product-page .product-experience__phone .phone-preview {
  width: 100%;
}body.product-page .product-experience__flow {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateX(-50%);
}body.product-page .product-experience__flow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 800;
}body.product-page .product-experience__flow .icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}body.product-page .product-experience__metrics,
body.product-page .product-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}body.product-page .product-experience__metrics span,
body.product-page .product-stat-strip span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
  text-align: center;
}body.product-page .product-experience__metrics strong,
body.product-page .product-stat-strip strong {
  color: var(--color-ink);
  font-size: 36px;
  line-height: 1;
}body.product-page .product-experience__metrics small,
body.product-page .product-stat-strip small {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}.product-timeline__line {
  position: relative;
  display: grid;
  gap: 0;
}
.product-timeline__line::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 28px;
  width: 1px;
  background: rgba(148, 163, 184, 0.28);
  content: "";
}
.product-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
}
.product-timeline__item > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.product-timeline__item h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}
.product-timeline__item p {
  margin-bottom: 0;
  color: #cbd5e1;
  font-size: 15px;
}body.product-page .product-capabilities__inner {
  align-items: start;
}body.product-page .product-capability-rail {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}body.product-page .product-capability-row {
  display: grid;
  grid-template-columns: 44px 46px minmax(140px, 0.5fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--color-line);
}body.product-page .product-capability-row:last-child {
  border-bottom: 0;
}body.product-page .product-capability-row > span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}body.product-page .product-capability-row i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}body.product-page .product-capability-row strong {
  color: var(--color-ink);
  font-size: 17px;
}body.product-page .product-capability-row p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}body.product-page .product-audience-grid,
body.product-page .product-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}body.product-page .product-audience-card,
body.product-page .product-trust-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}body.product-page .product-audience-card:hover,
body.product-page .product-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}body.product-page .product-audience-card > span,
body.product-page .product-trust-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}body.product-page .product-audience-card h3,
body.product-page .product-trust-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}body.product-page .product-audience-card p,
body.product-page .product-trust-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}body.product-page .product-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}body.product-page .product-before-after__side {
  min-height: 360px;
  padding: 38px;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}body.product-page .product-before-after__side--joy {
  border-color: rgba(15, 118, 110, 0.22);
  background:
    radial-gradient(circle at 90% 0%, rgba(15, 118, 110, 0.10), transparent 42%),
    var(--color-primary-very-soft);
}body.product-page .product-before-after__side > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}body.product-page .product-before-after__side h3 {
  margin-bottom: 24px;
  font-size: 32px;
}body.product-page .product-before-after__side ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}body.product-page .product-before-after__side li {
  color: var(--color-muted);
  font-size: 15px;
}body.product-page .product-before-after__bridge {
  display: grid;
  place-items: center;
  color: var(--color-primary);
}body.product-page .product-before-after__bridge .icon {
  width: 32px;
  height: 32px;
}body.product-page .product-trust__inner {
  align-items: start;
}body.product-page .product-trust-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.16);
}body.product-page .product-trust-card > span {
  margin-bottom: 0;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: rgba(15, 118, 110, 0.18);
  color: #5eead4;
}body.product-page .product-trust-card h3 {
  color: #fff;
}body.product-page .product-trust-card p {
  color: #cbd5e1;
}
body.product-page .product-intro__copy {
  display: grid;
  gap: 14px;
  max-width: 680px;
}
body.product-page .product-intro__copy p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.68;
}
body.product-page .product-screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}
body.product-page .product-screen-grid--hub {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.product-page .product-screen-card {
  display: grid;
  align-content: start;
  gap: 26px;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
body.product-page .product-screen-card--wide {
  grid-row: span 2;
}
body.product-page .product-screen-card--wide .product-shell {
  width: 100%;
}
body.product-page .product-screen-card .phone-preview {
  width: min(260px, 100%);
  margin-inline: auto;
}
body.product-page .product-screen-card > div:last-child strong,
body.product-page .product-screen-card > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1.2;
}
body.product-page .product-screen-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.62;
}
body.product-page .product-screen-card--soft {
  min-height: 260px;
  justify-content: start;
  background:
    radial-gradient(circle at 90% 0%, rgba(15, 118, 110, 0.12), transparent 44%),
    var(--color-primary-very-soft);
}
body.product-page .product-screen-card--soft > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 18px;
  background: #fff;
  color: var(--color-primary);
}
body.product-page .product-screen-card--soft > span .icon {
  width: 26px;
  height: 26px;
}
body.product-page .product-screen-card--visual {
  gap: 22px;
  padding: 18px;
}
body.product-page .product-screen-card__preview {
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 20px;
  background: var(--color-primary-very-soft);
}
body.product-page .product-screen-card__preview .product-shell {
  width: 100%;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
}
body.product-page .product-screen-card__body {
  display: grid;
  min-height: 190px;
  align-content: start;
}
body.product-page .product-screen-card__body > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius-sm);
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}
body.product-page .product-screen-card__body > span .icon {
  width: 20px;
  height: 20px;
}
body.product-page .product-screen-card__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
body.product-page .product-screen-card__link .icon {
  width: 17px;
  height: 17px;
  transition: transform var(--transition);
}
body.product-page .product-screen-card__link:hover .icon {
  transform: translateX(3px);
}
body.product-page .product-screen-card__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}
body.product-page .product-intro__panel--summary {
  min-height: 0;
}
body.product-page .product-intro__panel--summary > small {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}
body.product-page .product-intro__panel--summary > span {
  margin-bottom: 22px;
}
body.product-page .product-intro__panel--summary > strong {
  font-size: 30px;
}
body.product-page .product-intro__panel--summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
body.product-page .product-intro__panel--summary li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
}
body.product-page .product-intro__panel--summary li .icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--color-primary);
}
/* Pricing final revision */
body.pricing-page {
  --radius-card-lg: 28px;
  --shadow-surface: 0 22px 58px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 30px 74px rgba(15, 23, 42, 0.11);
  --shadow-featured: 0 26px 76px rgba(15, 118, 110, 0.11);
}
body.pricing-page .page-hero__inner {
  padding-block: 78px 82px;
}
body.pricing-page .page-hero h1 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.08;
  max-width: 100%;
  white-space: normal;
}
body.pricing-page .page-hero__lead {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.45;
  white-space: normal;
}
body.home-page .lp-pricing .section-heading {
  margin-bottom: 38px;
}
body.home-page .lp-pricing .section-heading h2 {
  font-size: var(--section-heading-title-size);
  line-height: 1.08;
  white-space: normal;
}
body.home-page .lp-pricing .section-heading p {
  max-width: 760px;
  font-size: var(--section-heading-text-size);
  line-height: 1.45;
  white-space: normal;
}
body.home-page .lp-pricing .commerce-grid--home,
body.pricing-page .commerce-grid--pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: var(--site-content-max);
  padding-top: 18px;
  margin-inline: auto;
  overflow: visible;
}
body.home-page .lp-pricing .commerce-card,
body.pricing-page .commerce-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 540px;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px 24px;
  overflow: visible;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius-card-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(20, 184, 166, 0.055), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-surface);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background-color 280ms ease;
}
body.home-page .lp-pricing .commerce-card:hover,
body.pricing-page .commerce-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: var(--shadow-hover);
}
body.home-page .lp-pricing .commerce-card--featured,
body.pricing-page .commerce-card--featured {
  border-color: rgba(15, 118, 110, 0.22);
  background:
    radial-gradient(circle at 24% 0%, rgba(20, 184, 166, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(240, 253, 250, 0.72) 0%, #fff 52%, #fbfdff 100%);
  box-shadow: var(--shadow-featured);
}
body.home-page .lp-pricing .commerce-card__top,
body.pricing-page .commerce-card__top {
  position: absolute;
  top: -16px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
body.home-page .lp-pricing .commerce-card__badge,
body.home-page .lp-pricing .commerce-card__badge-placeholder,
body.pricing-page .commerce-card__badge,
body.pricing-page .commerce-card__badge-placeholder {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
body.home-page .lp-pricing .commerce-card__badge--featured,
body.pricing-page .commerce-card__badge--featured {
  background: var(--color-primary);
  color: #fff;
}
body.home-page .lp-pricing .commerce-card__top--empty,
body.pricing-page .commerce-card__top--empty {
  visibility: hidden;
}
body.home-page .lp-pricing .commerce-card h3,
body.pricing-page .commerce-card h3 {
  min-height: 26px;
  margin-bottom: 0;
  padding-right: 0;
  overflow: hidden;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.home-page .lp-pricing .commerce-card--badged h3,
body.pricing-page .commerce-card--badged h3 {
  padding-right: 92px;
}
body.home-page .lp-pricing .commerce-card__summary,
body.pricing-page .commerce-card__summary {
  min-height: 32px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  white-space: normal;
}
body.home-page .lp-pricing .commerce-card__price,
body.pricing-page .commerce-card__price {
  display: flex;
  min-height: 72px;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 2px;
  margin-bottom: -4px;
}
body.home-page .lp-pricing .commerce-card__price strong,
body.pricing-page .commerce-card__price strong {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  color: var(--color-ink);
  font-size: 46px;
  font-weight: 880;
  line-height: 0.92;
}
body.home-page .lp-pricing .commerce-card__features,
body.pricing-page .commerce-card__features {
  display: grid;
  gap: 8px;
  margin-top: 0;
}
body.home-page .lp-pricing .commerce-card__unit,
body.pricing-page .commerce-card__unit {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 16px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary-dark);
}
body.home-page .lp-pricing .commerce-card__unit span,
body.pricing-page .commerce-card__unit span {
  font-size: 12px;
  font-weight: 850;
}
body.home-page .lp-pricing .commerce-card__unit strong,
body.pricing-page .commerce-card__unit strong {
  color: var(--color-primary-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
body.home-page .lp-pricing .commerce-card__unit--single,
body.pricing-page .commerce-card__unit--single {
  background: rgba(248, 250, 252, 0.86);
}
body.home-page .lp-pricing .commerce-card__feature,
body.pricing-page .commerce-card__feature {
  display: grid;
  min-height: 40px;
  align-items: center;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.68);
  color: var(--color-ink);
}
body.home-page .lp-pricing .commerce-card__feature-icon,
body.pricing-page .commerce-card__feature-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.065);
  color: var(--color-primary-dark);
}
body.home-page .lp-pricing .commerce-card__feature-icon .icon,
body.pricing-page .commerce-card__feature-icon .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
body.home-page .lp-pricing .commerce-card__feature b,
body.pricing-page .commerce-card__feature b {
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.home-page .lp-pricing .commerce-card__feature--credit,
body.pricing-page .commerce-card__feature--credit {
  grid-template-columns: 24px minmax(0, 1fr) 22px;
}
body.home-page .lp-pricing .commerce-card__info,
body.pricing-page .commerce-card__info {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: var(--color-primary);
  cursor: help;
}
body.home-page .lp-pricing .commerce-card__info .icon,
body.pricing-page .commerce-card__info .icon {
  width: 16px;
  height: 16px;
}
body.home-page .lp-pricing .commerce-card__info span,
body.pricing-page .commerce-card__info span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 6;
  width: min(260px, 72vw);
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-surface);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}
body.home-page .lp-pricing .commerce-card__info span strong,
body.pricing-page .commerce-card__info span strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}
body.home-page .lp-pricing .commerce-card__info span p,
body.pricing-page .commerce-card__info span p {
  margin: 0;
}
body.home-page .lp-pricing .commerce-card__info span p + p,
body.pricing-page .commerce-card__info span p + p {
  margin-top: 7px;
}
body.home-page .lp-pricing .commerce-card__info:hover span,
body.home-page .lp-pricing .commerce-card__info:focus span,
body.pricing-page .commerce-card__info:hover span,
body.pricing-page .commerce-card__info:focus span {
  opacity: 1;
  transform: translateY(0);
}
body.home-page .lp-pricing .commerce-card__footer,
body.pricing-page .commerce-card__footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}
body.home-page .lp-pricing .commerce-card .button,
body.pricing-page .commerce-card .button {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.14);
}
body.home-page .lp-pricing__compare-link {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 44px;
  text-align: center;
}
body.home-page .lp-pricing__credit-note {
  max-width: 900px;
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
body.pricing-page .pricing-cards-section {
  padding-top: 28px;
}
body.home-page .lp-pricing .commerce-card,
body.pricing-page .commerce-card {
  min-height: 540px;
}
body.pricing-page .pricing-archive-note {
  display: grid;
  width: min(100%, 760px);
  margin: 28px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary-dark);
  text-align: center;
}
body.pricing-page .pricing-archive-note p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}
body.pricing-page .pricing-compare-section {
  padding-block: 96px;
}

.nav-menu--print-center .nav-menu__panel {
  width: min(1120px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) 220px;
}
.nav-menu--print-center .nav-groups {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
body.home-page .lp-print-center {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 184, 166, 0.1), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(125, 211, 252, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fffd 100%);
}
body.home-page .lp-print-center .section-heading,
body.print-center-page .section-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
body.home-page .lp-print-center .section-heading h2,
body.print-center-page .section-heading h2 {
  font-size: var(--section-heading-title-size);
  font-weight: var(--section-heading-title-weight);
  line-height: var(--section-heading-title-line-height);
}
body.home-page .lp-print-center .section-heading p,
body.print-center-page .section-heading > p:last-child {
  max-width: var(--section-heading-text-max);
  font-size: var(--section-heading-text-size);
  line-height: var(--section-heading-text-line-height);
}
.print-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.print-category-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-card-lg);
  background: #fff;
  color: var(--color-ink);
  box-shadow: var(--shadow-surface);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.print-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow-hover);
}
body.home-page .lp-print-center .print-category-card {
  grid-template-rows: auto auto;
}
body.home-page .lp-print-center .print-category-card:hover {
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: var(--shadow-md);
  transform: none;
}
body.home-page .lp-print-center .print-category-card > div {
  grid-template-rows: auto auto auto;
  gap: var(--space-2);
  min-height: 148px;
}
.print-product-image {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.9), rgba(255, 255, 255, 0.96));
}
.print-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}
.print-category-card:hover .print-product-image img,
.print-gallery__item:hover img,
.print-product-card:hover img {
  transform: scale(1.045);
}
.print-category-card > div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 22px;
}
.print-category-card > div > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 14px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}
.print-category-card .icon {
  width: 19px;
  height: 19px;
}
.print-category-card h3,
.print-product-card h3,
.print-feature-grid h3,
.print-process h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.24;
}
.print-category-card p,
.print-product-card p,
.print-feature-grid p,
.print-process p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
}
.print-category-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  transition: transform 220ms ease;
}
body.home-page .lp-print-center .print-category-card:hover .print-product-image img {
  transform: none;
}
body.home-page .lp-print-center .print-category-card:hover em {
  transform: translateX(3px);
}
.lp-print-center__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 28px auto 0;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.lp-print-center__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.lp-print-center__trust .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.lp-print-center__note {
  max-width: var(--section-heading-text-max);
  margin: 12px auto 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}
.lp-print-center__cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.print-hero,
.print-category-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 84px;
  background:
    radial-gradient(circle at 76% 20%, rgba(20, 184, 166, 0.16), transparent 32%),
    radial-gradient(circle at 18% 22%, rgba(125, 211, 252, 0.14), transparent 30%),
    linear-gradient(180deg, #fbfffe 0%, #ffffff 100%);
}
.print-hero__inner,
.print-category-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: center;
}
.print-hero__copy,
.print-category-hero__inner > div:first-child {
  display: grid;
  min-width: 0;
  gap: 22px;
}
.print-hero h1,
.print-category-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 820;
  line-height: 1.04;
}
.print-hero p,
.print-category-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.62;
}
.print-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}
.print-hero__stats > a {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 118, 110, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.print-hero__stats > a:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow-surface);
  transform: translateY(-2px);
}
.print-hero__stats strong {
  color: var(--color-primary-dark);
  font-size: 20px;
  font-weight: 880;
}
.print-hero__visual {
  position: relative;
  min-height: 560px;
}
.print-hero__image {
  position: absolute;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 78px rgba(15, 23, 42, 0.14);
}
.print-hero__image--main {
  right: 8%;
  bottom: 2%;
  width: min(68%, 440px);
}
.print-hero__image--side {
  top: 4%;
  left: 0;
  width: min(44%, 300px);
}
.print-hero__image--mini {
  right: 0;
  top: 12%;
  width: min(34%, 230px);
}
.print-section,
.print-category-section,
.print-category-faq,
.print-info-section {
  padding-block: 96px;
}
.print-definition {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.print-definition .section-heading {
  margin-bottom: 0;
}
.print-definition__panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-surface);
}
.print-definition__panel h3,
.print-directory__group h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.24;
}
.print-definition__panel p,
.print-directory__group p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
}
.print-definition__panel a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.print-definition__panel a:hover {
  text-decoration: underline;
}
.print-definition__panel .icon,
.print-directory__links .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.print-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.print-directory__group {
  display: grid;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-surface);
}
.print-directory__group--with-image {
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: start;
}
.print-directory__content {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}
.print-directory__image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: var(--color-primary-very-soft);
}
.print-directory__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.print-directory__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  margin-top: 4px;
}
.print-directory__links a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding-block: 6px;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
  text-decoration: none;
}
.print-directory__links a:hover {
  text-decoration: underline;
}
.print-directory__links span {
  min-width: 0;
}
.print-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.print-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.print-feature-grid--compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.print-feature-grid article {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-surface);
}
.print-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.print-process article {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}
.print-process article span {
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 900;
}
.print-process article h3 {
  color: #fff;
}
.print-process article p {
  color: rgba(255, 255, 255, 0.72);
}
.print-process > i {
  display: none;
}
.print-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 4px;
}
.print-gallery__item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-surface);
  scroll-snap-align: start;
  text-decoration: none;
}
.print-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 360ms ease;
}
.print-gallery span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 850;
}
.print-faq-list {
  display: grid;
  max-width: 920px;
  margin-inline: auto;
  gap: 12px;
}
.print-faq-list details {
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.print-faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 850;
}
.print-faq-list summary::-webkit-details-marker {
  display: none;
}
.print-faq-list summary .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}
.print-faq-list details[open] summary .icon {
  transform: rotate(180deg);
}
.print-faq-list p {
  margin: -4px 20px 20px;
  color: var(--color-text);
  line-height: 1.62;
}
@media (min-width: 901px) {
  body.print-center-page .print-directory-section,
  body.print-center-page .print-paper-section,
  body.print-center-page .print-techniques-section,
  body.print-center-page .print-gallery-section,
  body.print-center-page .print-faq-section {
    padding-block: 80px;
  }
  body.print-center-page .print-faq-section .section-heading {
    max-width: 1040px;
  }
  body.print-center-page .print-faq-section .section-heading h2 {
    max-width: 100%;
  }
}
.print-category-hero__image {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 78px rgba(15, 23, 42, 0.12);
}
.print-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.print-filter-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 820;
}
.print-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.print-product-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-surface);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.print-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow-hover);
}
.print-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 360ms ease;
}
.print-product-card > div {
  display: grid;
  gap: 9px;
  padding: 20px;
}
.print-product-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}
.print-product-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 850;
}
.print-product-card a .icon {
  width: 16px;
  height: 16px;
}
.print-info-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 34px;
  align-items: start;
}
.print-info-layout .section-heading {
  margin-bottom: 0;
  text-align: left;
}
body.pricing-page .pricing-shared {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-card-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-surface);
}
body.pricing-page .pricing-shared__copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
}
body.pricing-page .pricing-shared__copy p {
  margin-bottom: 12px;
  color: var(--color-text);
  line-height: 1.55;
}
body.pricing-page .pricing-shared__copy small {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}
body.pricing-page .pricing-shared__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
body.pricing-page .pricing-shared__grid > span {
  display: grid;
  min-width: 0;
  min-height: 86px;
  align-items: center;
  justify-items: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.76);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
body.pricing-page .pricing-shared__grid > span:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.18);
  background: #fff;
}
body.pricing-page .pricing-shared__check {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}
body.pricing-page .pricing-shared__check .icon {
  width: 16px;
  height: 16px;
}
body.pricing-page .pricing-communication {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-card-lg);
  background:
    radial-gradient(circle at 92% 0%, rgba(20, 184, 166, 0.08), transparent 34%),
    var(--color-surface);
  box-shadow: var(--shadow-surface);
}
body.pricing-page .pricing-communication__copy {
  display: grid;
  max-width: 920px;
  gap: 10px;
}
body.pricing-page .pricing-communication__copy h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 28px;
  line-height: 1.14;
}
body.pricing-page .pricing-communication__copy p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.58;
}
body.pricing-page .pricing-communication__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
body.pricing-page .pricing-communication__grid article {
  display: grid;
  min-width: 0;
  gap: 9px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.72);
}
body.pricing-page .pricing-communication__grid article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
}
body.pricing-page .pricing-communication__grid .icon {
  width: 19px;
  height: 19px;
}
body.pricing-page .pricing-communication__grid h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 850;
}
body.pricing-page .pricing-communication__grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.52;
}
body.pricing-page .pricing-communication small {
  display: block;
  padding-top: 2px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
body.pricing-page .pricing-differences {
  display: grid;
  gap: 22px;
}
body.pricing-page .pricing-differences__heading {
  display: none;
}
body.pricing-page .pricing-compare {
  display: grid;
  gap: 22px;
}
body.pricing-page .pricing-compare__section {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-card-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-surface);
}
body.pricing-page .pricing-compare__table {
  display: grid;
  width: 100%;
}
body.pricing-page .pricing-compare__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) repeat(4, minmax(0, 1fr));
  min-width: 0;
  border-bottom: 1px solid var(--color-line);
}
body.pricing-page .pricing-compare__row:last-child {
  border-bottom: 0;
}
body.pricing-page .pricing-compare__row--head {
  position: sticky;
  top: var(--header-height);
  z-index: 1;
  background: var(--color-ink);
}
body.pricing-page .pricing-compare__cell {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border-right: 1px solid var(--color-line);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
body.pricing-page .pricing-compare__cell:last-child {
  border-right: 0;
}
body.pricing-page .pricing-compare__row--head .pricing-compare__cell {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
body.pricing-page .pricing-compare__cell--label {
  justify-content: flex-start;
  background: var(--color-soft);
  color: var(--color-ink);
  text-align: left;
}
body.pricing-page .pricing-compare__row--head .pricing-compare__cell--label {
  background: transparent;
  color: #fff;
}
body.pricing-page .pricing-compare__cell--plus {
  background: var(--color-primary-very-soft);
  color: var(--color-primary-dark);
}
body.pricing-page .pricing-compare__row--head .pricing-compare__cell--plus {
  background: rgba(15, 118, 110, 0.28);
  color: #fff;
}
body.pricing-page .commerce-value {
  overflow-wrap: anywhere;
}
body.pricing-page .commerce-value--check,
body.pricing-page .commerce-value--service {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
}
body.pricing-page .commerce-value--check {
  min-width: 30px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 950;
}
body.pricing-page .commerce-value--service {
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
}
body.pricing-page .pricing-faq-section {
  padding-block: 96px;
}
body.pricing-page .pricing-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 44px;
  align-items: start;
}
body.pricing-page .pricing-faq-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-card-lg);
  background: var(--color-primary-very-soft);
}
body.pricing-page .pricing-faq-aside__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-primary);
  color: #fff;
}
body.pricing-page .pricing-faq-aside h2 {
  margin: 0;
  font-size: var(--section-heading-title-size);
  line-height: var(--section-heading-title-line-height);
}
body.pricing-page .pricing-faq-aside p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.55;
}
body.pricing-page .pricing-faq-aside ul,
body.pricing-page .pricing-start__copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.pricing-page .pricing-faq-aside li,
body.pricing-page .pricing-start__copy li {
  position: relative;
  padding-left: 18px;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 850;
}
body.pricing-page .pricing-faq-aside li::before,
body.pricing-page .pricing-start__copy li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-primary);
  content: "";
  transform: translateY(-50%);
}
body.pricing-page .pricing-faq-grid {
  display: grid;
  gap: 12px;
}
body.pricing-page .pricing-faq-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
body.pricing-page .pricing-faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}
body.pricing-page .pricing-faq-card summary::-webkit-details-marker {
  display: none;
}
body.pricing-page .pricing-faq-card__icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-very-soft);
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  transition: transform var(--transition);
}
body.pricing-page .pricing-faq-card[open] .pricing-faq-card__icon {
  transform: rotate(45deg);
}
body.pricing-page .pricing-faq-card div {
  padding: 0 22px 20px;
}
body.pricing-page .pricing-faq-card p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}
body.pricing-page .pricing-start-section {
  padding-block: 92px;
}
body.pricing-page .pricing-start {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: 28px;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--radius-card-lg);
  background:
    linear-gradient(135deg, var(--color-primary-very-soft), var(--color-surface));
  box-shadow: var(--shadow-surface);
}
body.pricing-page .pricing-start h2 {
  margin-bottom: 12px;
  font-size: var(--section-heading-title-size);
  line-height: var(--section-heading-title-line-height);
}
body.pricing-page .pricing-start__copy p {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--color-text);
  line-height: 1.6;
}
body.pricing-page .pricing-start__copy ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.pricing-page .pricing-start__panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
body.pricing-page .pricing-start__panel h3 {
  margin: 0;
  font-size: 20px;
}
body.pricing-page .pricing-start__panel .button {
  justify-content: center;
  width: 100%;
}
.footer-link--disabled {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c5cedd;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.footer-link--disabled em {
  padding: 2px 6px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

body.print-center-page.template-page .print-catalog-hero {
  padding-block: calc(var(--header-height) + 58px) 74px;
}
body.print-center-page.template-page .print-catalog-hero .print-hero__inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}
body.print-center-page.template-page .print-catalog-hero .print-hero__copy {
  gap: 24px;
}
body.print-center-page.template-page .print-catalog-hero .print-hero__visual {
  min-height: 520px;
}
.print-hero-moodboard {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 12%, rgba(20, 184, 166, 0.13), transparent 31%),
    radial-gradient(circle at 85% 76%, rgba(125, 211, 252, 0.16), transparent 35%),
    #fff;
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
}
.print-hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
}
.print-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.print-hero-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-sm);
  background: rgba(17, 24, 39, 0.66);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}
.print-hero-card--invitations {
  z-index: 4;
  top: 17%;
  left: 26%;
  width: 48%;
  aspect-ratio: 4 / 5;
  transform: rotate(-5deg);
}
.print-hero-card--boards {
  z-index: 2;
  top: 7%;
  right: 5%;
  width: 33%;
  aspect-ratio: 4 / 5;
  transform: rotate(8deg);
}
.print-hero-card--envelopes {
  z-index: 3;
  bottom: 8%;
  left: 5%;
  width: 35%;
  aspect-ratio: 4 / 5;
  transform: rotate(7deg);
}
.print-hero-card--labels {
  z-index: 1;
  right: 7%;
  bottom: 10%;
  width: 29%;
  aspect-ratio: 4 / 5;
  transform: rotate(-8deg);
}
body.print-center-page.template-page .print-catalog-section {
  background: var(--color-bg);
}
.print-catalog-sidebar {
  scrollbar-color: rgba(15, 118, 110, 0.26) transparent;
}
.print-catalog-filter-list .template-category-group {
  display: grid;
  gap: 3px;
  padding-block: 2px;
}
.print-catalog-filter-list .template-category-trigger {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.print-catalog-filter-list .template-category-all,
.print-catalog-filter-list .template-category-trigger {
  justify-content: flex-start;
}
.print-catalog-filter-list :is(.template-category-all, .template-category-trigger).is-active {
  color: var(--color-primary);
}
.print-catalog-filter-list :is(.template-category-all, .template-category-trigger):focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.print-catalog-sidebar__links {
  display: grid;
  gap: 1px;
  padding: 2px 0 4px 12px;
}
.print-catalog-sidebar__links a {
  display: block;
  padding: 5px 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.38;
  text-decoration: none;
}
.print-catalog-sidebar__links a:hover {
  color: var(--color-primary);
}
.print-catalog-sidebar__links a:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.print-catalog-card {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.print-catalog-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.3);
  outline-offset: 3px;
}
.print-catalog-card .print-catalog-card__visual {
  aspect-ratio: 4 / 3;
}
.print-catalog-card__visual > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}
.print-catalog-card:hover .print-catalog-card__visual > img {
  transform: scale(1.045);
}
.print-catalog-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.58) 100%);
  content: '';
}
.print-catalog-card__type {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 13px;
  left: 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}
.print-catalog-card .template-card__body {
  align-content: space-between;
}
.print-catalog-card .template-card__summary {
  -webkit-line-clamp: 3;
}
.print-catalog-card .template-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}
.print-catalog-card .template-card__cta .icon {
  width: 17px;
  height: 17px;
  transition: transform 220ms ease;
}
.print-catalog-card:hover .template-card__cta .icon {
  transform: translateX(3px);
}
.print-catalog-card--guide .print-catalog-card__type::before {
  display: inline-block;
  margin-right: 6px;
  content: 'Rehber';
  font-size: 9px;
  opacity: 0.84;
  text-transform: uppercase;
}
body.print-center-page.template-page .print-catalog-faq {
  background: #fff;
}
