:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --bg: #f4f5f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #10131d;
  --muted: #646b79;
  --line: rgba(16, 19, 29, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #7c61d4;
  --accent-strong: #7c61d4;
  --accent-soft: #8e74e0;
  --accent-blue: #4963c9;
  --dark-top: #2b2637;
  --dark-bottom: #0a0e18;
  --hero-dark-bg:
    radial-gradient(circle at 22% 8%, rgba(124, 97, 212, 0.62), transparent 40%),
    radial-gradient(circle at 76% 18%, rgba(142, 116, 224, 0.28), transparent 30%),
    linear-gradient(135deg, #2b2637 0%, #261f38 42%, #100d1b 100%);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 44px rgba(16, 19, 29, 0.08);
  --shadow-card: 0 24px 60px rgba(16, 19, 29, 0.1);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(10, 14, 24, 0.16);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 200ms ease, border-color 200ms ease;
}

.site-nav.is-scrolled {
  background: rgba(10, 14, 24, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}

.blog-post-page .site-nav {
  background: rgba(10, 14, 24, 0.78) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(10, 14, 24, 0.12);
}

.blog-post-page .site-nav.is-scrolled {
  background: rgba(10, 14, 24, 0.78) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-language-picker {
  display: inline-flex;
  align-items: center;
}

.language-selector {
  min-height: 40px;
  padding: 0 38px 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='m3.5 5.25 3.5 3.5 3.5-3.5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center / 14px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-selector:hover,
.language-selector:focus {
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.language-selector option {
  color: #0a0e16;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #090d16;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span {
  opacity: 0;
}

body.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.subpage-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--hero-dark-bg);
}

.hero::after,
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 56%;
  background: radial-gradient(ellipse at center, rgba(127, 96, 207, 0.22), transparent 64%);
  filter: blur(30px);
  pointer-events: none;
}

.hero {
  padding: 112px 0 86px;
}

.hero-grid,
.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 72px;
}

.hero-grid {
  min-height: 650px;
  grid-template-columns: 1fr 420px;
}

.hero-copy-wrap,
.subpage-copy-wrap {
  max-width: 560px;
}

.hero-eyebrow,
.subpage-eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 600;
}

.hero-title,
.subpage-title {
  margin: 0 0 28px;
  font-size: clamp(58px, 5.3vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 760;
}

.hero-title .line {
  display: block;
}

.hero-subtitle,
.subpage-lead {
  max-width: 540px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.56;
}

.subpage-copy-wrap-centered {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subpage-copy-wrap-centered .subpage-lead {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-page .faq-hero-copy {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-page .faq-hero-copy .subpage-lead {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-actions a {
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-actions a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-actions img {
  height: 52px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #8c6bff 0%, #6d4dff 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(109, 77, 255, 0.32);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.button-light {
  background: #fff;
  color: #0a0d14;
  box-shadow: 0 14px 28px rgba(255, 255, 255, 0.12);
}

.hero-note {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.52;
}

.hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  width: min(100%, 520px);
  padding: 18px 0 8px;
  isolation: isolate;
}

.hero-product::before,
.subpage-visual::before {
  content: "";
  position: absolute;
  inset: 18% 10% 6%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(130, 96, 255, 0.24) 0%, rgba(77, 94, 255, 0.15) 36%, transparent 72%);
  filter: blur(30px);
  z-index: -1;
}

.hero-product img,
.subpage-visual img {
  width: min(540px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.48));
}

.subpage-hero {
  padding: 122px 0 76px;
}

.legal-page .subpage-hero {
  padding: 104px 0 30px;
}

.legal-page .subpage-copy-wrap {
  max-width: 760px;
}

.legal-page .subpage-title {
  margin-bottom: 20px;
}

.legal-page .subpage-lead {
  margin-bottom: 0;
}

.legal-page .subpage-main {
  padding-top: 24px;
}

.subpage-hero-grid {
  min-height: 420px;
  grid-template-columns: 1fr 360px;
}

.subpage-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
  isolation: isolate;
}

.blog-hero {
  position: relative;
  overflow: hidden;
}

.blog-hero-simple {
  min-height: 0;
  padding-top: 96px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blog-hero-simple .subpage-title {
  margin-bottom: 18px;
}

.blog-hero-simple .subpage-lead {
  max-width: 700px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 30px;
  align-items: start;
}

.blog-article-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-article-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-article-image {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(28, 24, 44, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.blog-article-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.blog-article-link:hover .blog-article-image img {
  transform: scale(1.02);
}

.blog-article-body {
  padding: 0;
}

.blog-article-body h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.26;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.blog-article-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
  color: rgba(73, 79, 99, 0.95);
}

.blog-post-main {
  padding: 118px 0 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 216, 224, 0.42), transparent 28%),
    var(--bg);
}

.feature-page,
.feature-page-main {
  background: #262236;
}

.feature-page .site-nav {
  background: rgba(38, 34, 54, 0.24);
}

.feature-page .site-nav.is-scrolled {
  background: rgba(38, 34, 54, 0.86);
}

.feature-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 124px 0 82px;
  color: #fff;
  background: linear-gradient(180deg, rgba(38, 34, 54, 0.4), rgba(38, 34, 54, 0.82));
}

.feature-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 45, 0.36), rgba(31, 26, 45, 0.82)),
    url("fotky/funkce.png") center/cover no-repeat;
}

.feature-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-hero-copy {
  max-width: 900px;
  text-align: center;
}

.feature-hero-title {
  margin: 0 0 26px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 760;
}

.feature-hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

.feature-detail-section {
  padding: 88px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 97, 212, 0.16), transparent 24%),
    #262236;
}

.feature-detail-stack {
  display: grid;
  gap: 76px;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.feature-detail-grid-reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 0.95fr);
}

.feature-detail-grid-reverse .feature-detail-copy {
  order: 2;
}

.feature-detail-grid-reverse .feature-detail-media {
  order: 1;
}

.feature-detail-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 760;
}

.feature-detail-copy h2 span {
  color: #8f74ff;
}

.feature-detail-intro {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 650;
}

.feature-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.feature-detail-media,
.feature-safety-grid {
  width: 100%;
}

.feature-device-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-device-frame img {
  width: 100%;
  max-width: 420px;
  border-radius: 0;
}

.feature-device-frame-contain {
  min-height: 360px;
}

.feature-device-image-contain {
  width: 100%;
  max-width: 420px;
  max-height: 520px;
  object-fit: contain;
}

.feature-device-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px dashed rgba(167, 139, 250, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.feature-device-placeholder span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.feature-subfeature-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.feature-subfeature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-subfeature-index {
  color: #a78bfa;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.feature-subfeature-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.feature-subfeature-item p {
  margin: 0;
}

.feature-category-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-category-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

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

.blog-post-shell {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 28px;
}

.blog-post-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 760;
}

.blog-post-date {
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-post-hero {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.12);
}

.blog-post-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-lead {
  margin: 34px 0 0;
  color: rgba(122, 87, 231, 0.92);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.44;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-post-content {
  margin-top: 28px;
  color: var(--ink);
}

.blog-post-content h2,
.blog-post-content h3 {
  margin: 34px 0 14px;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.blog-post-content h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 760;
}

.blog-post-content h3 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 720;
}

.blog-post-content p,
.blog-post-content li {
  color: rgba(39, 45, 61, 0.9);
  font-size: 18px;
  line-height: 1.72;
}

.blog-post-content p {
  margin: 0 0 18px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content strong {
  color: var(--ink);
}

.section {
  padding: 88px 0;
}

.light-section,
.subpage-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 216, 224, 0.56), transparent 34%),
    var(--bg);
}

.section-head {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head-wide {
  max-width: none;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 760;
}

.heading-nowrap {
  display: block;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  text-align: center;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.text-emphasis {
  color: var(--accent-strong);
  font-weight: 600;
}

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

.feature-card,
.step-card,
.vision-card,
.security-card,
.article-card,
.info-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 170px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  display: grid;
  grid-template-rows: 64px auto 1fr;
  justify-items: center;
  align-items: start;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.25),
    rgba(124, 58, 237, 0.4)
  );
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.feature-card h3,
.product-card h3,
.vision-card h3,
.article-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.feature-card h3 {
  margin: 16px 0 8px;
}

.feature-card p {
  margin: 0;
}

.feature-card p,
.product-card p,
.step-card p,
.vision-card p,
.security-card p,
.article-card p,
.info-card p,
.text-block p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.how-section {
  position: relative;
  overflow: hidden;
  padding: 98px 0 108px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 97, 212, 0.28), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(124, 97, 212, 0.16), transparent 32%),
    linear-gradient(180deg, #171325 0%, #100d1a 100%);
}

.how-section::before {
  content: "";
  position: absolute;
  inset: -12% 20% auto;
  height: 220px;
  background: radial-gradient(circle at center, rgba(124, 97, 212, 0.38), transparent 68%);
  filter: blur(36px);
  pointer-events: none;
}

.how-section .container {
  position: relative;
  z-index: 1;
  width: min(1560px, calc(100% - 48px));
}

.how-section .section-head {
  max-width: 1400px;
  margin-bottom: 56px;
}

.how-section .section-eyebrow {
  color: rgba(167, 139, 250, 0.92);
  margin-bottom: 34px;
}

.how-section .section-head h2 {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.how-highlight {
  background: linear-gradient(180deg, #b59aff 0%, #7c61d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) minmax(28px, 3.2vw)
    minmax(0, 1fr) minmax(28px, 3.2vw)
    minmax(0, 1fr) minmax(28px, 3.2vw)
    minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: center;
  overflow: visible;
  padding-inline: clamp(20px, 4vw, 64px);
  box-sizing: border-box;
}

.step-card {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 270px;
  padding: clamp(48px, 4vw, 72px) clamp(22px, 2.5vw, 42px) clamp(28px, 3vw, 42px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(108, 88, 176, 0.48), rgba(61, 49, 102, 0.42));
  border: 1px solid rgba(167, 139, 250, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 48px rgba(4, 5, 12, 0.34);
  text-align: left;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.step-number {
  position: absolute;
  top: -28px;
  left: 28px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9e80ff 0%, #7c61d4 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  border: 4px solid #171325;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.28),
    0 12px 28px rgba(124, 97, 212, 0.34);
}

.step-card h3 {
  margin: 0 0 14px;
  max-width: 260px;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 760;
}

.step-card p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.42;
}

.step-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  z-index: 2;
}

.steps-grid > :nth-child(1) {
  grid-column: 1;
}

.steps-grid > :nth-child(2) {
  grid-column: 2;
}

.steps-grid > :nth-child(3) {
  grid-column: 3;
}

.steps-grid > :nth-child(4) {
  grid-column: 4;
}

.steps-grid > :nth-child(5) {
  grid-column: 5;
}

.steps-grid > :nth-child(6) {
  grid-column: 6;
}

.steps-grid > :nth-child(7) {
  grid-column: 7;
}

.step-connector-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + clamp(10px, 1vw, 18px));
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.24), rgba(167, 139, 250, 0.5), rgba(167, 139, 250, 0.24));
}

.step-connector-arrow {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(124, 97, 212, 0.42), rgba(74, 58, 124, 0.42));
  border: 1px solid rgba(167, 139, 250, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(11, 9, 20, 0.28);
}

.step-connector-arrow svg {
  width: 15px;
  height: 15px;
  display: block;
  stroke: rgba(255, 255, 255, 0.92);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-section {
  padding: 96px 0;
  background: var(--bg);
}

.product-section-lead {
  max-width: none;
}

.product-section-kicker {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 760;
  color: var(--ink);
}

.product-grid {
  width: min(1040px, calc(100% - 48px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: auto;
}

.product-card {
  background: linear-gradient(180deg, rgba(249, 249, 252, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  padding: 26px 26px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  overflow: visible;
  display: grid;
  grid-template-rows: 430px auto 1fr;
  align-items: start;
}

.phone-card {
  height: 100% !important;
  min-height: unset !important;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-bottom: 40px !important;
}

.phone-card-image {
  height: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  background: transparent !important;
  margin-bottom: 24px;
}

.phone-card-image::before {
  content: none !important;
}

.phone-card-image img {
  width: 100%;
  height: auto;
  max-width: 360px;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: transparent !important;
}

.phone-card-image-cropped {
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.phone-card-image-cropped img {
  width: 100%;
  max-width: 344px;
  margin-left: 0;
  margin-right: 0;
  object-position: top center;
}

.phone-card-image-single-phone img {
  max-width: 264px;
  margin-top: 12px;
}

.product-phone-overlay {
  display: none;
  position: absolute;
  left: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translateX(-50%);
  font-family: var(--font);
  color: #f7f4ff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  container-type: inline-size;
}

html:not([lang="cs"]) .product-phone-overlay {
  display: block;
}

.product-phone-overlay-notes,
.product-phone-overlay-inactivity {
  top: 0;
  width: min(100%, 360px);
  aspect-ratio: 920 / 949;
}

.product-phone-overlay-recipients {
  top: 12px;
  width: min(100%, 264px);
  aspect-ratio: 1229 / 1280;
}

.phone-ui-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 22.5%;
  font-size: 5.85cqw;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.018em;
  text-align: center;
  white-space: nowrap;
}

.product-phone-overlay-recipients .phone-ui-title {
  top: 22.7%;
  font-size: 6.1cqw;
}

.phone-ui-card-title,
.phone-ui-tag,
.phone-ui-inactivity-title,
.phone-ui-inactivity-copy,
.phone-ui-inactivity-value {
  position: absolute;
  left: 14.1%;
  white-space: nowrap;
}

.phone-ui-card-title {
  color: #161821;
  font-size: 3.24cqw;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.phone-ui-tag {
  display: inline-flex;
  align-items: center;
  gap: 1.55cqw;
  font-size: 2.62cqw;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.phone-ui-tag-icon {
  width: 2.65cqw;
  height: 2cqw;
  border: 0.31cqw solid currentColor;
  border-radius: 0.28cqw;
  position: relative;
  flex: 0 0 auto;
}

.phone-ui-tag-icon::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: -0.85cqw;
  height: 0.75cqw;
  border: 0.31cqw solid currentColor;
  border-bottom: 0;
  border-radius: 0.28cqw 0.28cqw 0 0;
}

.phone-ui-tag-green {
  color: #119d22;
}

.phone-ui-tag-blue {
  color: #5575ef;
}

.phone-ui-tag-red {
  color: #d7252d;
}

.phone-ui-notes-title-1 {
  top: 56.2%;
}

.phone-ui-notes-tag-1 {
  top: 61.2%;
}

.phone-ui-notes-title-2 {
  top: 74.3%;
}

.phone-ui-notes-tag-2 {
  top: 79.3%;
}

.phone-ui-notes-title-3 {
  top: 92%;
  font-size: 3.04cqw;
}

.phone-ui-notes-tag-3 {
  top: 97%;
}

.feature-device-frame .product-phone-overlay {
  display: none;
}

html:not([lang="cs"]) .feature-device-frame .product-phone-overlay {
  display: block;
}

.feature-device-frame .product-phone-overlay-notes {
  width: min(100%, 420px);
}

.feature-device-frame .product-phone-overlay-recipients {
  top: 0;
  width: min(100%, 420px);
}

.phone-ui-inactivity-title {
  top: 24.6%;
  color: #f7f4ff;
  font-size: 4.75cqw;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.phone-ui-inactivity-copy {
  top: 38.1%;
  color: #c7c3d0;
  font-size: 3.35cqw;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.phone-ui-inactivity-value {
  top: 68.4%;
  color: #f7f4ff;
  font-size: 3.6cqw;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.phone-card-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: center;
}

.product-card h3 {
  margin-top: 0;
}

.phone-card-content h3 {
  margin-top: 0;
}

.dark-block,
.subpage-dark {
  padding: 84px 0;
  color: #fff;
  background: var(--hero-dark-bg);
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.map-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.map-copy h2,
.security-panel h2,
.text-block h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 760;
}

.map-copy p,
.security-panel > p,
.text-block p,
.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
}

.map-copy strong {
  display: block;
  margin-top: 14px;
  font-weight: 760;
}

.security-grid,
.vision-grid,
.content-grid,
.article-grid,
.link-card-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.link-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.security-grid {
  margin-top: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.security-card {
  min-height: 144px;
  padding: 18px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.security-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.security-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.24;
}

.emotion-section {
  padding: 92px 0 70px;
  background: var(--bg);
}

.emotion-shell {
  width: min(1500px, calc(100% - 48px));
}

.emotion-panel {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 92px 56px 40px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(124, 97, 212, 0.28), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #373247 0%, #302a43 34%, #1a1528 100%);
  box-shadow: 0 30px 70px rgba(16, 19, 29, 0.16);
}

.emotion-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%);
  pointer-events: none;
}

.emotion-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.emotion-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5.4vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 760;
}

.emotion-title-line {
  display: block;
}

.emotion-title-accent {
  background: linear-gradient(180deg, #b597ff 0%, #8b6eff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.emotion-section p {
  max-width: 850px;
  margin: 42px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  line-height: 1.62;
}

.emotion-store-buttons {
  margin-top: 30px;
}

.emotion-store-buttons img {
  height: 62px;
}

.cta-section {
  padding: 0 0 30px;
  background: var(--hero-dark-bg);
}

.cta-panel {
  max-width: 860px;
  margin: 0 auto -34px;
  padding: 50px 40px;
  border-radius: 26px;
  text-align: center;
  transform: translateY(-34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--hero-dark-bg);
  border: 1px solid rgba(141, 112, 216, 0.18);
  box-shadow: 0 26px 70px rgba(10, 18, 30, 0.22);
  color: #fff;
}

.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 760;
}

.cta-panel p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.56;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 52px;
  width: auto;
}

.store-buttons a {
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-buttons a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.subpage-main {
  padding: 78px 0 88px;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-block {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 100%);
  border: 1px solid rgba(16, 19, 29, 0.06);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}

.link-card,
.info-card,
.vision-card,
.article-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 19, 29, 0.06);
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(16, 19, 29, 0.12);
}

.link-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
}

.link-card-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(109, 77, 255, 0.1);
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 700;
}

.text-block p {
  color: var(--muted);
}

.vision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.vision-card,
.info-card,
.article-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 19, 29, 0.06);
}

.vision-number,
.info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(109, 77, 255, 0.1);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.split-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: start;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(16, 19, 29, 0.12);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(109, 77, 255, 0.09);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-page-main {
  padding-bottom: 0;
}

.pricing-section {
  padding: 0 0 88px;
}

.pricing-section .section-head {
  max-width: 760px;
}

.pricing-section .subpage-copy-wrap {
  margin: 0 auto;
  text-align: center;
}

.pricing-section .subpage-eyebrow {
  margin-bottom: 14px;
  color: #a78bfa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-section .subpage-title,
.pricing-faq .section-head h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
}

.pricing-section .subpage-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.pricing-hero-subtitle {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.pricing-hero-subtitle span {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.pricing-card {
  position: relative;
  padding: 34px 32px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 19, 29, 0.06);
  box-shadow: var(--shadow-card);
}

.pricing-card-highlight {
  border-color: rgba(124, 97, 212, 0.48);
  box-shadow:
    0 28px 64px rgba(16, 19, 29, 0.1),
    0 0 0 1px rgba(124, 97, 212, 0.08),
    0 0 44px rgba(124, 97, 212, 0.22);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8c6bff 0%, #6d4dff 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 26px rgba(109, 77, 255, 0.32);
}

.pricing-card-head {
  margin-bottom: 24px;
}

.pricing-card-name {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.pricing-card-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pricing-card-price strong {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.pricing-card-price span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.pricing-card-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.pricing-feature-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--accent-strong);
  font-size: 16px;
  font-weight: 800;
}

.pricing-feature-icon.is-muted {
  color: rgba(100, 107, 121, 0.56);
}

.pricing-card .button {
  width: 100%;
}

.pricing-card .button-secondary {
  border: 1px solid rgba(16, 19, 29, 0.1);
  background: rgba(16, 19, 29, 0.02);
  color: var(--ink);
}

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

.pricing-benefit-grid .info-card {
  text-align: center;
}

.pricing-benefit-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}

.pricing-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-compare {
  padding: 88px 0;
  background: #ffffff;
}

.pricing-compare,
.pricing-compare .section-head,
.pricing-compare .pricing-table-wrap,
.pricing-faq,
.pricing-faq .section-head,
.pricing-faq .faq-item,
.pricing-cta,
.pricing-cta .container,
.pricing-cta .cta-panel {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 19, 29, 0.06);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(16, 19, 29, 0.06);
  text-align: center;
  font-size: 15px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table th {
  background: rgba(248, 248, 252, 0.96);
  font-weight: 700;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  background: rgba(124, 97, 212, 0.04);
}

.pricing-table .is-premium {
  color: var(--accent-strong);
}

.pricing-table-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 800;
}

.pricing-table-mark.is-disabled {
  color: rgba(100, 107, 121, 0.52);
}

.pricing-faq {
  padding: 92px 0 42px;
}

.pricing-cta {
  padding-top: 58px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.contact-grid {
  grid-template-columns: 1.08fr 0.92fr;
  margin-top: 28px;
  align-items: start;
}

.about-page {
  background: #ffffff;
}

.about-hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
  background: #2e2b3c;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(137, 100, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(27, 24, 41, 0.64) 0%, rgba(43, 37, 61, 0.82) 100%),
    linear-gradient(135deg, #2e2b3c 0%, #241f35 52%, #1e1b2e 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-title {
  margin: 0 0 22px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.about-hero-title span,
.about-founder-copy h2 span,
.about-vision-intro h2 span,
.about-promise-copy h2 span {
  color: #8c6bff;
}

.about-hero-lead {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.58;
}

.about-founder-section {
  padding: 74px 0 92px;
  background: #ffffff;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: stretch;
}

.about-founder-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #2a183d;
  box-shadow: 0 28px 60px rgba(16, 19, 29, 0.12);
  height: 100%;
}

.about-founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 24, 61, 0.22) 0%, rgba(42, 24, 61, 0) 12%, rgba(42, 24, 61, 0) 88%, rgba(19, 14, 34, 0.28) 100%),
    linear-gradient(180deg, rgba(42, 24, 61, 0.12) 0%, rgba(42, 24, 61, 0) 14%, rgba(42, 24, 61, 0) 86%, rgba(19, 14, 34, 0.24) 100%);
}

.about-founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.about-founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-founder-copy h2,
.about-vision-intro h2,
.about-promise-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 760;
  color: #11131d;
}

.about-vision-intro h2 {
  color: #ffffff;
}

.about-promise-copy h2 {
  color: #ffffff;
}

.about-founder-copy p {
  color: #4e5664;
  font-size: 17px;
  line-height: 1.6;
}

.about-founder-copy p + p {
  margin-top: 18px;
}

.about-vision-section,
.about-promise-section {
  background: #2f2a3d;
  color: #fff;
}

.about-vision-section {
  padding: 82px 0 72px;
}

.about-vision-grid {
  display: grid;
  gap: 44px;
}

.about-vision-intro {
  max-width: 620px;
}

.about-vision-intro p,
.about-promise-copy p,
.about-contact-copy p,
.about-vision-row p,
.about-contact-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.58;
}

.about-vision-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-vision-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.8fr) 1.4fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-vision-index {
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

.about-vision-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
  color: #fff;
}

.about-promise-section {
  padding: 72px 0 86px;
}

.about-promise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-promise-copy {
  max-width: 520px;
}

.about-promise-copy .button {
  margin-top: 28px;
}

.about-promise-visual {
  display: flex;
  justify-content: flex-end;
}

.about-device-card {
  position: relative;
  width: min(100%, 540px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about-device-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 52px rgba(12, 10, 22, 0.28));
}

.about-device-card .product-phone-overlay-notes {
  top: 0;
  width: 100%;
}

.about-contact-strip {
  margin-top: 68px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.about-contact-copy h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-contact-meta {
  display: grid;
  gap: 14px;
  justify-items: start;
}

@media (min-width: 1101px) {
  .about-contact-meta {
    margin-top: 44px;
  }
}

.about-contact-meta p span {
  display: inline-block;
  min-width: 72px;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-contact-meta a {
  color: #fff;
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-value {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

.contact-value a {
  color: inherit;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(16, 19, 29, 0.1);
  background: rgba(109, 77, 255, 0.06);
  color: var(--ink);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] svg path {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  transform: translateY(-1px);
  color: var(--accent-strong);
  border-color: rgba(109, 77, 255, 0.24);
  background: rgba(109, 77, 255, 0.1);
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 19, 29, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  color: var(--accent-strong);
  font-size: 28px;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-list .faq-answer p {
  color: var(--muted);
}


.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
}

.legal-links a:hover {
  color: #fff;
}

.site-footer {
  padding: 22px 0 28px;
  background: #0a0e16;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-utility {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.footer-utility .social-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.footer-utility .social-links a[aria-label="Instagram"] {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 8%, #fd5949 32%, #d6249f 64%, #285aeb 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(214, 36, 159, 0.22);
}

.footer-utility .social-links a[aria-label="Facebook"] {
  border-color: rgba(24, 119, 242, 0.42);
  background: linear-gradient(180deg, #2d88ff 0%, #1877f2 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.2);
}

.footer-utility .social-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.footer-utility .social-links a[aria-label="Instagram"]:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 10%, #fd5949 34%, #d6249f 66%, #285aeb 100%);
  box-shadow: 0 14px 30px rgba(214, 36, 159, 0.28);
}

.footer-utility .social-links a[aria-label="Facebook"]:hover {
  border-color: rgba(98, 168, 255, 0.56);
  background: linear-gradient(180deg, #3c94ff 0%, #1877f2 100%);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.26);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

.footer-credit {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 180ms ease;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.text-block-centered {
  text-align: center;
}

.legal-document {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 19, 29, 0.06);
  box-shadow: var(--shadow-soft);
}

.legal-document + .legal-document {
  margin-top: 20px;
}

.legal-document h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-document h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.legal-document .legal-date {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .subpage-hero-grid {
    gap: 40px;
  }

  .blog-hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 40px;
  }

  .about-founder-grid,
  .about-promise-grid,
  .about-contact-strip {
    grid-template-columns: 1fr;
  }

  .about-vision-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .about-vision-row p {
    grid-column: 2 / -1;
  }

  .dark-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .security-grid,
  .article-grid,
  .link-card-grid,
  .contact-grid,
  .pricing-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .hero-grid,
  .subpage-hero-grid,
  .feature-grid,
  .product-grid,
  .content-grid,
  .vision-grid,
  .security-grid,
  .article-grid,
  .pricing-plan-grid,
  .pricing-benefit-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 500px;
  }

  .about-hero-inner {
    min-height: 500px;
  }

  .about-hero-title {
    font-size: clamp(42px, 11vw, 58px);
  }

  .about-founder-section {
    padding: 56px 0 72px;
  }

  .about-founder-grid {
    gap: 30px;
  }

  .about-founder-copy h2,
  .about-vision-intro h2,
  .about-promise-copy h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .about-vision-section,
  .about-promise-section {
    padding-left: 0;
    padding-right: 0;
  }

  .about-vision-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-vision-row p {
    grid-column: auto;
  }

  .about-vision-index {
    font-size: 28px;
  }

  .about-promise-visual {
    justify-content: flex-start;
  }

  .about-device-card {
    width: min(100%, 460px);
  }

  .about-contact-strip {
    margin-top: 48px;
  }

  .emotion-section {
    padding: 72px 0 56px;
  }

  .emotion-shell {
    width: min(1500px, calc(100% - 28px));
  }

  .emotion-panel {
    height: auto;
    min-height: 0;
    padding: 76px 26px 52px;
    border-radius: 28px;
  }

  .emotion-section h2 {
    font-size: clamp(42px, 11vw, 62px);
  }

  .emotion-section p {
    max-width: 620px;
    margin-top: 30px;
    font-size: 18px;
  }

  .emotion-store-buttons {
    margin-top: 18px;
  }

  .emotion-store-buttons img {
    height: 52px;
  }

  .product-grid {
    width: min(1040px, calc(100% - 28px));
  }

  .product-section-lead {
    font-size: 14px;
  }

  .hero,
  .subpage-hero {
    padding-top: 96px;
  }

  .how-section {
    padding: 82px 0 88px;
  }

  .how-section .section-head {
    margin-bottom: 48px;
  }

  .how-section .section-head h2 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .how-section .container {
    width: min(1560px, calc(100% - 28px));
  }

  .hero-title,
  .subpage-title {
    font-size: clamp(44px, 12vw, 60px);
  }

  .hero-title,
  .subpage-title,
  .section-head h2,
  .product-section-kicker,
  .feature-hero-title,
  .about-hero-title,
  .emotion-section h2,
  .security-content-section .section-head h2,
  .security-legal .section-head h2,
  .pricing-faq .section-head h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-head,
  .section-head-wide,
  .subpage-copy-wrap,
  .subpage-copy-wrap-centered,
  .faq-page .faq-hero-copy {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-product,
  .subpage-visual {
    justify-self: stretch;
    width: 100%;
  }

  .phone-card {
    height: fit-content !important;
    min-height: unset !important;
  }

  .phone-card-image {
    height: auto;
    margin-bottom: 24px;
  }

  .product-card {
    grid-template-rows: auto;
  }

  .pricing-card {
    padding: 30px 24px 24px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 16px 18px;
  }

  .phone-card-image img {
    height: auto;
    max-height: 520px;
    width: 100%;
    max-width: 360px;
    object-fit: contain;
  }

  .phone-card-content {
    min-height: 0;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
  }


  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-utility,
  .contact-grid,
  .link-card-grid {
    justify-items: center;
    grid-template-columns: 1fr;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }

  .footer-credit {
    display: block;
    margin-top: 0;
  }

  .heading-nowrap {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .features-section h2,
  #features h2,
  .section-head h2 {
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 1.05 !important;
    max-width: calc(100vw - 48px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    box-sizing: border-box !important;
  }

  #features .section-head,
  #features .section-head-wide,
  #features .heading-nowrap {
    width: 100% !important;
    max-width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .pricing-hero-subtitle span {
    white-space: normal;
  }

  .blog-hero-simple {
    padding-top: 96px;
    padding-bottom: 12px;
  }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-post-main {
    padding: 102px 0 74px;
  }

  .blog-post-shell {
    width: min(850px, calc(100% - 28px));
  }

  .blog-post-hero {
    border-radius: 22px;
  }

  .blog-post-lead {
    font-size: 19px;
    line-height: 1.5;
  }

  .blog-post-content p,
  .blog-post-content li {
    font-size: 16px;
    line-height: 1.68;
  }

  .feature-hero {
    min-height: 0;
    padding: 108px 0 64px;
  }

  .feature-hero-title {
    font-size: clamp(38px, 10vw, 52px);
  }

  .feature-hero-lead {
    font-size: 16px;
  }

  .feature-detail-section {
    padding: 64px 0 74px;
  }

  .steps-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }

  .steps-grid > * {
    grid-column: auto !important;
  }

  .step-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 220px !important;
    padding: 38px 22px 24px !important;
    border-radius: 28px;
    box-sizing: border-box !important;
  }

  .step-card h3 {
    max-width: none;
    margin-bottom: 14px !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  .step-card p {
    max-width: none;
    font-size: 16px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .step-number {
    top: -26px;
    left: 24px;
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .step-connector {
    display: none !important;
  }

  .feature-detail-grid,
  .feature-detail-grid-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-detail-grid-reverse .feature-detail-copy,
  .feature-detail-grid-reverse .feature-detail-media {
    order: initial;
  }

  .feature-subfeature-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-category-grid,
  .feature-safety-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    min-width: 0;
    table-layout: fixed;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px 10px;
    font-size: 13px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .pricing-table th:first-child,
  .pricing-table td:first-child {
    width: 44%;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .product-section-lead {
    white-space: nowrap;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    height: 64px;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(10, 14, 24, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
  }

  .nav-language-picker {
    padding: 6px 8px 2px;
  }

  .language-selector {
    width: 100%;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 440px;
  }

  .about-hero-media {
    background-position: center 18%;
  }

  .about-hero-inner {
    min-height: 440px;
  }

  .about-hero-lead,
  .about-founder-copy p,
  .about-vision-intro p,
  .about-promise-copy p,
  .about-contact-copy p,
  .about-vision-row p,
  .about-contact-meta p {
    font-size: 15px;
  }

  .about-founder-photo {
    border-radius: 18px;
  }

  .about-promise-copy .button {
    width: 100%;
  }

  .emotion-panel {
    padding: 66px 20px 44px;
    border-radius: 24px;
  }

  .emotion-section h2 {
    font-size: clamp(34px, 12vw, 46px);
    line-height: 1.02;
  }

  .emotion-section p {
    font-size: 16px;
    line-height: 1.58;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-buttons img {
    height: 44px;
  }

  .faq-question {
    font-size: 17px;
  }

  .pricing-section .subpage-title,
  .pricing-faq .section-head h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767px) {
  .how-steps-grid,
  .steps-grid,
  .process-steps {
    gap: 18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .how-step-card,
  .step-card,
  .process-card {
    min-height: 0 !important;
    height: auto !important;
    padding: 34px 22px 24px !important;
    border-radius: 26px !important;
  }

  .how-step-card h3,
  .step-card h3,
  .process-card h3 {
    font-size: 23px !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }

  .how-step-card p,
  .step-card p,
  .process-card p {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }
}
