﻿:root {
  --page-max-width: 1200px;
  --page-gutter: 20px;
  --text: #10131d;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --bg: #fbfbfa;
  --bg-soft: #f4f4f2;
  --bg-panel: rgba(255, 255, 255, 0.84);
  --bg-panel-strong: rgba(255, 255, 255, 0.92);
  --blue: #111111;
  --orange: #111111;
  --green: #111111;
  --purple: #111111;
  --purple-soft: rgba(17, 17, 17, 0.06);
  --accent-blue: #2563eb;
  --accent-orange: #b45309;
  --accent-green: #15803d;
  --accent-purple: #6d28d9;
  --accent-blue-soft: rgba(37, 99, 235, 0.1);
  --accent-orange-soft: rgba(180, 83, 9, 0.1);
  --accent-green-soft: rgba(21, 128, 61, 0.1);
  --accent-purple-soft: rgba(109, 40, 217, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 52px rgba(38, 50, 80, 0.08);
  --shadow-soft: 0 12px 30px rgba(38, 50, 80, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(15, 23, 42, 0.03), transparent 18%),
    radial-gradient(circle at 84% 10%, rgba(15, 23, 42, 0.02), transparent 18%),
    linear-gradient(180deg, #fcfcfb 0%, #f7f7f5 40%, #fbfbfa 100%);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.38)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 88%);
}

main {
  position: relative;
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 68px;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(11, 14, 19, 0.9), rgba(11, 14, 19, 0.72)),
    radial-gradient(circle at 18% -60%, rgba(109, 40, 217, 0.14), transparent 42%),
    radial-gradient(circle at 86% -40%, rgba(37, 99, 235, 0.12), transparent 36%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
}

.header-inner {
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand-name {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.96);
  transition: color 0.28s ease;
}

.header-actions,
.header-cta-group,
.hero-tags,
.hero-cta,
.privacy-tags,
.footer-inner {
  display: flex;
  align-items: center;
}

.header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.header-cta-group {
  gap: 10px;
  margin-left: 18px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  min-height: 28px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.lang-trigger svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.lang-trigger-label {
  display: inline-block;
}

.lang-trigger:hover {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-solid {
  color: #0d1117;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 240, 245, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.site-header .btn-solid:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f3f5f8 100%);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.btn.is-applied {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #4b5563;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 16px rgba(15, 23, 42, 0.05);
}

.btn.is-applied:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 23, 42, 0.14);
  color: #374151;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(15, 23, 42, 0.07);
}

.site-header .btn-solid.is-applied,
.site-header.is-light .btn-solid.is-applied,
.hero .btn-solid.is-applied,
.btn-footer.is-applied {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 23, 42, 0.1);
  color: #4b5563;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 6px 16px rgba(15, 23, 42, 0.06);
}

.site-header .btn-solid.is-applied:hover,
.site-header.is-light .btn-solid.is-applied:hover,
.hero .btn-solid.is-applied:hover,
.btn-footer.is-applied:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 23, 42, 0.12);
  color: #374151;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-header.is-light {
  background:
    linear-gradient(180deg, rgba(253, 253, 252, 0.94), rgba(248, 248, 246, 0.82)),
    radial-gradient(circle at 16% -80%, rgba(109, 40, 217, 0.06), transparent 40%),
    radial-gradient(circle at 88% -60%, rgba(37, 99, 235, 0.05), transparent 34%);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.site-header.is-light .brand-name {
  color: #111111;
}

.site-header.is-light .btn-outline {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(15, 23, 42, 0.06);
}

.site-header.is-light .btn-outline:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
  color: #111111;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 22px rgba(15, 23, 42, 0.08);
}

.site-header.is-light .btn-solid {
  color: #ffffff;
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow:
    0 12px 26px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header.is-light .btn-solid:hover {
  background: linear-gradient(135deg, #0f0f0f 0%, #1b1b1b 100%);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-large {
  min-height: 60px;
  padding: 0 38px;
  font-size: 20px;
  font-weight: 600;
}

.btn-footer {
  min-height: 54px;
  padding: 0 34px;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  color: var(--text);
}

.hero {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(109, 40, 217, 0.32), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(37, 99, 235, 0.28), transparent 26%),
    radial-gradient(circle at 56% -6%, rgba(255, 255, 255, 0.06), transparent 24%),
    radial-gradient(circle at 72% 84%, rgba(21, 128, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0c11 0%, #0f1117 36%, #141821 72%, #1a202a 100%);
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-orb-left {
  left: -120px;
  top: 80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.34) 0%, rgba(109, 40, 217, 0.12) 40%, rgba(15, 23, 42, 0) 74%);
}

.hero-orb-right {
  right: -120px;
  top: 120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(37, 99, 235, 0.1) 42%, rgba(15, 23, 42, 0) 78%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(109, 40, 217, 0.18), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.38) 0%, rgba(9, 11, 16, 0.24) 28%, rgba(12, 15, 21, 0.12) 62%, rgba(19, 22, 28, 0.02) 100%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-bg::before {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(17, 19, 23, 0.08) 34%, rgba(17, 19, 23, 0.18) 100%);
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(17, 19, 23, 0.08) 32%, rgba(12, 16, 23, 0.12) 60%, rgba(18, 22, 29, 0.04) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 780px;
  padding: 136px 14px 84px;
}

.hero .btn-solid {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 600px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-layout::before {
  display: none;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.9), rgba(37, 99, 235, 0.7));
}

.hero-main h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
}

.hero-brand {
  font-family: inherit;
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-title {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -2.2px;
  line-height: 1.16;
  max-width: 15em;
  color: #ffffff;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0;
  max-width: 500px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.74;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
}

.hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  margin-right: 8px;
}

.hero-points span:nth-child(2)::before {
  background: var(--accent-blue);
}

.hero-points span:nth-child(3)::before {
  background: var(--accent-green);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 420px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-decor,
.hero-visual-ring {
  position: absolute;
  pointer-events: none;
}

.hero-visual-decor {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
}

.hero-visual-decor-top {
  top: 86px;
  right: 18px;
  width: 148px;
  height: 84px;
  border-radius: 24px;
  transform: rotate(6deg);
  opacity: 0.42;
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.hero-visual-decor-bottom {
  left: 8px;
  bottom: 88px;
  width: 164px;
  height: 92px;
  border-radius: 28px;
  transform: rotate(-7deg);
  opacity: 0.34;
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero-visual-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual-ring-a {
  width: 300px;
  height: 300px;
  right: -32px;
  top: 54px;
  opacity: 0.4;
  animation: hero-fade-scale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-visual-ring-b {
  width: 210px;
  height: 210px;
  left: -18px;
  bottom: 54px;
  opacity: 0.3;
  animation: hero-fade-scale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.hero-visual-shell {
  position: relative;
  width: min(100%, 600px);
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(239, 241, 244, 0.92), rgba(227, 230, 235, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.1),
    0 24px 56px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 20px;
  overflow: hidden;
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.05), transparent 26%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.04), transparent 26%),
    linear-gradient(112deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.34) 48%, rgba(255, 255, 255, 0) 66%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 220% 100%;
  background-position: center, center, 140% 0;
  pointer-events: none;
  animation: hero-shell-sheen 1.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.hero-visual-shell::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.hero-visual-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.015));
}

.hero-visual-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  animation: hero-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-visual-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #65718a;
  margin-bottom: 6px;
}

.hero-visual-top strong {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #1f2738;
}

.hero-visual-status {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(37, 99, 235, 0.12);
  animation: hero-pop-in 0.66s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-visual-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metric {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.52);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-metric::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.15);
}

.hero-metric:nth-child(1)::before {
  background: var(--accent-purple);
}

.hero-metric:nth-child(2)::before {
  background: var(--accent-orange);
}

.hero-metric:nth-child(3)::before {
  background: var(--accent-green);
}

.hero-metric:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-metric:nth-child(3) {
  animation-delay: 0.26s;
}

.hero-metric span {
  display: block;
  font-size: 12px;
  color: #6b7690;
  margin-bottom: 6px;
}

.hero-metric strong {
  font-size: 24px;
  font-weight: 700;
  color: #162031;
}

.hero-stage-path {
  display: none;
}

.hero-stage-path-line {
  display: none;
}

.hero-stage-path-dot {
  display: none;
}

.hero-stage-path-dot-a {
  top: 28px;
}

.hero-stage-path-dot-b {
  top: 182px;
}

.hero-stage-path-dot-c {
  bottom: 36px;
}

.hero-stage {
  --hero-stage-offset: 78px;
  --hero-stage-index-size: 44px;
  --hero-stage-index-left: -68px;
  --hero-stage-arrow-left: -47px;
  position: relative;
  z-index: 1;
  display: block;
  padding: 18px 18px 17px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 22px rgba(52, 67, 102, 0.06);
  animation: hero-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-stage::after {
  display: none;
}

.hero-stage-arrow {
  position: absolute;
  left: var(--hero-stage-arrow-left);
  top: calc(100% + 2px);
  width: 2px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.22));
}

.hero-stage-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(15, 23, 42, 0.28);
  border-bottom: 2px solid rgba(15, 23, 42, 0.28);
  transform: translate(-50%, 0) rotate(45deg);
}

.hero-stage-pre {
  margin-left: var(--hero-stage-offset);
}

.hero-stage-live {
  margin-left: var(--hero-stage-offset);
  animation-delay: 0.16s;
}

.hero-stage-post {
  margin-left: var(--hero-stage-offset);
  animation-delay: 0.28s;
}

.hero-stage-index {
  position: absolute;
  left: var(--hero-stage-index-left);
  top: 50%;
  width: var(--hero-stage-index-size);
  height: var(--hero-stage-index-size);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 239, 236, 0.92) 100%);
  border: 1px solid rgba(15, 23, 42, 0.05);
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(17, 17, 17, 0.03);
  animation: hero-pop-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-stage-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.hero-stage-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-stage-copy strong {
  font-size: 17px;
  font-weight: 600;
  color: #182133;
}

.hero-stage-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: #65718a;
}

.hero-stage-meta em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b869d;
}

.hero-stage-pre .hero-stage-meta em {
  color: var(--accent-purple);
}

.hero-stage-live .hero-stage-meta em {
  color: var(--accent-blue);
}

.hero-stage-post .hero-stage-meta em {
  color: var(--accent-green);
}

.hero-stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.hero-stage-tags span {
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: #536078;
  font-size: 11px;
  font-weight: 600;
}

.hero-stage-pre .hero-stage-index {
  border-color: rgba(109, 40, 217, 0.18);
  box-shadow: 0 0 0 8px var(--accent-purple-soft);
  color: var(--accent-purple);
  animation-delay: 0.12s;
}

.hero-stage-live .hero-stage-index {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 0 0 8px var(--accent-blue-soft);
  color: var(--accent-blue);
  animation-delay: 0.24s;
}

.hero-stage-post .hero-stage-index {
  border-color: rgba(21, 128, 61, 0.18);
  box-shadow: 0 0 0 8px var(--accent-green-soft);
  color: var(--accent-green);
  animation-delay: 0.36s;
}

.hero-stage-pre .hero-stage-tags span {
  background: var(--accent-purple-soft);
  color: #5b21b6;
}

.hero-stage-live .hero-stage-tags span {
  background: var(--accent-blue-soft);
  color: #1d4ed8;
}

.hero-stage-post .hero-stage-tags span {
  background: var(--accent-green-soft);
  color: #166534;
}

@keyframes hero-gradient-shift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 10px, 0) scale(1.03);
    opacity: 0.92;
  }
}

@keyframes hero-bg-breathe {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.88;
  }
}

@keyframes hero-orb-float-left {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, 12px, 0) scale(1.06);
  }
}

@keyframes hero-orb-float-right {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-20px, -10px, 0) scale(1.05);
  }
}

@keyframes value-card-enter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-fade-scale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-shell-sheen {
  0% {
    background-position: center, center, 140% 0;
  }

  100% {
    background-position: center, center, -70% 0;
  }
}

@keyframes hero-pop-in {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.78);
  }

  70% {
    opacity: 1;
    transform: translateY(-50%) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb-left,
  .hero-orb-right,
  .hero::before,
  .hero::after,
  .hero-bg,
  .hero-bg::before,
  .value-card,
  .hero-visual-shell,
  .hero-visual-decor,
  .hero-visual-ring,
  .hero-visual-top,
  .hero-visual-status,
  .hero-metric,
  .hero-stage,
  .hero-stage-index,
  .feature-head,
  .feature-media,
  .feature-list li {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}


.section {
  padding: 40px 0;
}

.section-head,
.feature-head,
.privacy-inner {
  text-align: center;
}

.section-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 56px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.74);
  color: #67728b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
}

.section-head h2,
.feature-head h2,
.privacy-inner h2,
.footer-copy h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.8px;
}

.section-head p,
.feature-head p,
.privacy-inner p,
.footer-copy p {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
}

.section-value {
  padding-top: 32px;
  padding-bottom: 116px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(245, 245, 243, 0.96) 100%);
  position: relative;
}

.section-value::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0));
  transform: translateX(-50%);
}

.section-value::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0) 72%);
  pointer-events: none;
}

.section-value .section-kicker::before {
  background: var(--accent-purple);
}

.section-broker {
  position: relative;
  padding-top: 48px;
  padding-bottom: 44px;
  background:
    linear-gradient(180deg, rgba(251, 251, 250, 1) 0%, rgba(247, 247, 246, 0.98) 100%);
}

.section-broker::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 169, 110, 0.06), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(148, 163, 184, 0.05), transparent 24%);
  pointer-events: none;
}

.broker-shell {
  position: relative;
  padding: 40px 38px 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(214, 183, 126, 0.18) 0%, rgba(214, 183, 126, 0) 22%),
    linear-gradient(90deg, rgba(255, 248, 234, 0.045) 0%, rgba(255, 248, 234, 0) 36%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.05) 0%, rgba(255, 244, 220, 0) 20%),
    radial-gradient(circle at 50% 120%, rgba(92, 68, 34, 0.18), transparent 34%),
    linear-gradient(145deg, #100d0b 0%, #15110e 38%, #1a1511 100%);
  box-shadow:
    0 34px 76px rgba(10, 8, 6, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.12);
  overflow: hidden;
}

.broker-shell::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle, rgba(255, 244, 220, 0.26) 0%, rgba(255, 244, 220, 0.1) 26%, rgba(255, 244, 220, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  background-size: 88% 88%, 100% 100%;
  background-position: -34% -28%, 0 0;
  background-repeat: no-repeat;
  animation: broker-shell-orbit 22s ease-in-out infinite;
  pointer-events: none;
}

.broker-shell::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle, rgba(214, 183, 126, 0.12) 0%, rgba(214, 183, 126, 0.04) 16%, rgba(214, 183, 126, 0) 42%),
    radial-gradient(ellipse at 50% 112%, rgba(214, 183, 126, 0.3) 0%, rgba(214, 183, 126, 0.14) 36%, rgba(214, 183, 126, 0) 72%);
  background-size: 22% 22%, 100% 100%;
  background-position: 92% 10%, 0 0;
  background-repeat: no-repeat;
  filter: blur(12px);
  animation: broker-shell-baseglow 13s ease-in-out infinite;
  pointer-events: none;
}

.broker-head {
  max-width: none;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}

.broker-head-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.section-broker .section-kicker,
.section-broker .section-head h2 {
  color: #f7f8fb;
}

.section-broker .section-head h2,
.section-broker .section-head > p {
  max-width: 760px;
}

.section-broker .section-head h2 {
  margin: 0 0 12px;
}

.section-broker .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #f1dfb8;
  box-shadow: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  position: relative;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(214, 183, 126, 0.14),
    0 1px 0 rgba(255, 248, 234, 0.16);
}

.section-broker .section-head p {
  margin: 0;
  color: rgba(240, 236, 229, 0.9);
}

.section-broker .section-kicker::before {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 210, 165, 0) 0%, #e8d2a5 38%, #c9a96e 100%);
  box-shadow: 0 0 14px rgba(214, 183, 126, 0.18);
}

.section-broker .section-kicker::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d2a5 62%, rgba(232, 210, 165, 0) 100%);
  box-shadow: 0 0 14px rgba(214, 183, 126, 0.18);
}

.broker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.broker-card {
  position: relative;
  min-height: 100%;
  padding: 24px 24px 20px;
  border: 1px solid rgba(163, 136, 91, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(250, 247, 242, 0.985));
  box-shadow:
    0 18px 34px rgba(20, 14, 8, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.broker-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  pointer-events: none;
  opacity: 1;
}

.broker-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  opacity: 0.035;
  pointer-events: none;
}

.broker-card-purple::before {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.9), rgba(201, 169, 110, 0.18));
}

.broker-card-purple::after {
  background: radial-gradient(circle, rgba(201, 169, 110, 1), rgba(201, 169, 110, 0));
}

.broker-card-blue::before {
  background: linear-gradient(90deg, rgba(114, 133, 160, 0.9), rgba(114, 133, 160, 0.16));
}

.broker-card-blue::after {
  background: radial-gradient(circle, rgba(114, 133, 160, 1), rgba(114, 133, 160, 0));
}

.broker-card-green::before {
  background: linear-gradient(90deg, rgba(123, 143, 125, 0.86), rgba(123, 143, 125, 0.18));
}

.broker-card-green::after {
  background: radial-gradient(circle, rgba(123, 143, 125, 1), rgba(123, 143, 125, 0));
}

.broker-card-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-width: 0;
}

.broker-card-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding: 0;
  text-align: left;
  align-items: flex-start;
  min-width: 0;
}

.broker-card-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
}

.broker-card h3 {
  margin: 0;
  color: #111111;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.04em;
  max-width: none;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.broker-card-lead {
  margin: 0;
  color: #26211c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
  max-width: none;
  text-align: left;
  overflow-wrap: anywhere;
}

.broker-card p:last-child {
  margin: 0;
  color: #4a4137;
  font-size: 13px;
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
}

.broker-card-media {
  margin-top: auto;
  border-radius: 22px;
  border: 1px solid rgba(182, 154, 108, 0.16);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(242, 236, 228, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 28px rgba(36, 28, 18, 0.07);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.broker-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 1;
}

@keyframes broker-shell-orbit {
  0% {
    opacity: 0.72;
    background-size: 64% 64%, 100% 100%;
    background-position: -42% -30%, 0 0;
  }

  18% {
    opacity: 0.94;
    background-size: 94% 94%, 100% 100%;
    background-position: -12% -44%, 0 0;
  }

  37% {
    opacity: 0.96;
    background-size: 56% 56%, 100% 100%;
    background-position: 18% -8%, 0 0;
  }

  61% {
    opacity: 1;
    background-size: 106% 106%, 100% 100%;
    background-position: 34% 24%, 0 0;
  }

  82% {
    opacity: 0.88;
    background-size: 60% 60%, 100% 100%;
    background-position: -18% 12%, 0 0;
  }

  100% {
    opacity: 0.72;
    background-size: 64% 64%, 100% 100%;
    background-position: -42% -30%, 0 0;
  }
}

@keyframes broker-shell-baseglow {
  0%,
  100% {
    opacity: 0.76;
    background-position: 94% 8%, 0 0;
    background-size: 14% 14%, 100% 100%;
    transform: translateY(0) scaleX(1);
  }

  35% {
    opacity: 0.92;
    background-position: 84% 18%, 0 0;
    background-size: 18% 18%, 100% 100%;
    transform: translateY(-4px) scaleX(1.08);
  }

  50% {
    opacity: 1;
    background-position: 76% 26%, 0 0;
    background-size: 24% 24%, 100% 100%;
    transform: translateY(-8px) scaleX(1.14);
  }

  72% {
    opacity: 0.9;
    background-position: 88% 16%, 0 0;
    background-size: 16% 16%, 100% 100%;
    transform: translateY(-3px) scaleX(1.06);
  }
}

.broker-card-image {
  width: 100%;
  height: 204px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  filter: none;
  position: relative;
  z-index: 0;
}

.broker-card-purple .broker-card-media {
  background:
    linear-gradient(180deg, rgba(249, 244, 236, 0.98), rgba(242, 236, 226, 0.94));
}

.broker-card-blue .broker-card-media {
  background:
    linear-gradient(180deg, rgba(242, 245, 247, 0.98), rgba(234, 238, 241, 0.94));
}

.broker-card-green .broker-card-media {
  background:
    linear-gradient(180deg, rgba(240, 245, 238, 0.98), rgba(233, 239, 231, 0.94));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.value-card {
  min-height: 500px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 245, 0.94));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  animation: value-card-enter 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 23, 42, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #111111 0%, #4a4a4a 100%);
  opacity: 0.2;
}

.value-card:nth-child(1)::after {
  background: linear-gradient(90deg, var(--accent-purple) 0%, rgba(109, 40, 217, 0.2) 100%);
  opacity: 0.55;
}

.value-card:nth-child(2)::after {
  background: linear-gradient(90deg, var(--accent-blue) 0%, rgba(37, 99, 235, 0.18) 100%);
  opacity: 0.55;
}

.value-card:nth-child(3)::after {
  background: linear-gradient(90deg, var(--accent-green) 0%, rgba(21, 128, 61, 0.18) 100%);
  opacity: 0.55;
}

.value-card:nth-child(2) {
  animation-delay: 0.1s;
}

.value-card:nth-child(3) {
  animation-delay: 0.2s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 23, 42, 0.08);
}

.value-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.value-label {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

.value-card:nth-child(1) .value-label {
  color: #5b21b6;
}

.value-card:nth-child(2) .value-label {
  color: #1d4ed8;
}

.value-card:nth-child(3) .value-label {
  color: #166534;
}

.value-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.4px;
}

.value-card img {
  width: 100%;
  height: 296px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    0 18px 34px rgba(70, 84, 116, 0.08);
  filter: none;
  position: relative;
  z-index: 1;
}

.feature {
  position: relative;
  padding-top: 88px;
  padding-bottom: 96px;
}

.feature .container {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.feature-blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 244, 252, 0.96) 100%);
}

.feature-orange {
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.feature-green {
  background:
    linear-gradient(180deg, rgba(244, 249, 246, 0.94) 0%, rgba(255, 255, 255, 0) 100%);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 62%);
}

.feature::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0));
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-head {
  max-width: 460px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.feature-head,
.feature-media {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-list li {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature.is-visible .feature-head,
.feature.is-visible .feature-media,
.feature.is-visible .feature-list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.feature.is-visible .feature-media {
  transition-delay: 0.16s;
}

.feature.is-visible .feature-list li:nth-child(1) {
  transition-delay: 0.12s;
}

.feature.is-visible .feature-list li:nth-child(2) {
  transition-delay: 0.18s;
}

.feature.is-visible .feature-list li:nth-child(3) {
  transition-delay: 0.24s;
}

.feature.is-visible .feature-list li:nth-child(4) {
  transition-delay: 0.3s;
}

.feature-head h2 {
  position: relative;
}

.feature-head h2::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.08em;
  bottom: 0.08em;
  width: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.feature-blue .feature-head h2::before {
  background: linear-gradient(180deg, var(--accent-purple), rgba(109, 40, 217, 0.08));
}

.feature-orange .feature-head h2::before {
  background: linear-gradient(180deg, var(--accent-orange), rgba(180, 83, 9, 0.08));
}

.feature-green .feature-head h2::before {
  background: linear-gradient(180deg, var(--accent-green), rgba(21, 128, 61, 0.08));
}

.feature-head p {
  max-width: 460px;
  margin: 0;
}

.feature-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #465066;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 0 5px var(--accent-purple-soft);
  transform: translateY(-50%);
}

.feature-orange .feature-list li::before {
  background: var(--accent-orange);
  box-shadow: 0 0 0 5px var(--accent-orange-soft);
}

.feature-green .feature-list li::before {
  background: var(--accent-green);
  box-shadow: 0 0 0 5px var(--accent-green-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  color: #3b4160;
  font-size: 16px;
  font-weight: 600;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.88);
  margin-bottom: 4px;
}

.pill-blue {
  background: linear-gradient(180deg, rgba(244, 239, 255, 0.98), rgba(255, 255, 255, 0.92));
  color: #5b21b6;
}

.pill-orange {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.92));
  color: #b45309;
}

.pill-green {
  background: linear-gradient(180deg, rgba(240, 251, 247, 0.98), rgba(255, 255, 255, 0.92));
  color: #166534;
}

.feature-media {
  width: 100%;
  position: relative;
  z-index: 1;
}

.feature-media-button {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
}

.feature-media-button::after {
  content: "鐐瑰嚮鏀惧ぇ";
  position: absolute;
  top: 16px;
  right: 16px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(16, 19, 29, 0.68);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.feature-media-button:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.feature-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.03) 42%, rgba(15, 23, 42, 0) 72%);
  transform: translate(-50%, -50%);
  filter: blur(22px);
  pointer-events: none;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 6% 5% -5%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 244, 241, 0.58)),
    linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
  box-shadow: 0 28px 44px rgba(50, 64, 96, 0.1);
  z-index: 0;
}

.feature-media-button {
  isolation: isolate;
}

.feature-media-button::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.16));
  opacity: 0.8;
  z-index: 1;
}

.feature-media img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(50, 64, 96, 0.12);
  border: 1px solid rgba(111, 99, 255, 0.08);
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  z-index: 1;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.feature-media-button:hover img {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 54px rgba(50, 64, 96, 0.16);
  border-color: rgba(111, 99, 255, 0.14);
  filter: saturate(1.16) contrast(1.08) brightness(1.05);
}

.feature-blue .feature-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 252, 0.58)),
    linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(109, 40, 217, 0.03));
}

.feature-orange .feature-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 237, 0.62)),
    linear-gradient(135deg, rgba(180, 83, 9, 0.12), rgba(180, 83, 9, 0.03));
}

.feature-green .feature-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(235, 247, 244, 0.64)),
    linear-gradient(135deg, rgba(21, 128, 61, 0.12), rgba(21, 128, 61, 0.03));
}

.feature-orange .container {
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
}

.feature-orange .feature-head {
  order: 2;
  margin-left: auto;
}

.feature-orange .feature-media {
  order: 1;
}

.section-testimonials {
  padding-top: 54px;
  padding-bottom: 92px;
  background:
    linear-gradient(180deg, rgba(244, 249, 246, 0.62) 0%, rgba(250, 250, 248, 0.96) 18%, #f3f4f2 100%);
  position: relative;
}

.testimonial-marquee {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: -12px 0 34px;
}

.testimonial-marquee span {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.74);
  color: #5a6476;
  font-size: 13px;
  font-weight: 600;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0));
  transform: translateX(-50%);
}

.section-testimonials::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -54px;
  width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  height: 84px;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(180deg, rgba(244, 249, 246, 0) 0%, rgba(244, 249, 246, 0.52) 100%);
  transform: translateX(-50%);
  pointer-events: none;
}

.testimonial-bands {
  display: grid;
  gap: 22px;
  padding: 6px 0 10px;
}

.testimonial-band-wrap {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.testimonial-band {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 14px 20px 18px;
}

.testimonial-band-wrap::before,
.testimonial-band-wrap::after {
  display: none;
}

.testimonial-band::before,
.testimonial-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-band::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 246, 243, 1) 0%, rgba(245, 246, 243, 0.82) 38%, rgba(245, 246, 243, 0) 100%);
}

.testimonial-band::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 246, 243, 1) 0%, rgba(245, 246, 243, 0.82) 38%, rgba(245, 246, 243, 0) 100%);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  padding: 2px 0 8px;
}

.testimonial-band-forward .testimonial-track {
  animation: testimonial-scroll 68s linear infinite;
}

.testimonial-band-reverse .testimonial-track {
  animation: testimonial-scroll-reverse 64s linear infinite;
}

.testimonial-band:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 320px;
  min-height: 208px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 246, 243, 0.95));
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.03),
    0 12px 24px rgba(38, 50, 80, 0.045);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.section-testimonials .section-kicker::before {
  background: var(--accent-orange);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 23, 42, 0.02));
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: "“";
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 24px;
  line-height: 1;
  color: var(--accent-blue);
  background: var(--accent-blue-soft);
  opacity: 1;
  font-weight: 700;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.testimonial-card p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.72;
  color: #3f4754;
}

.testimonial-card strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.01em;
}

.testimonial-card span {
  font-size: 13px;
  font-weight: 400;
  color: #747d8d;
  display: block;
}

.testimonial-card::before {
  content: "\201C";
  display: block;
  width: 38px;
  height: 38px;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  text-indent: 1px;
  font-family: Georgia, "Times New Roman", serif;
}

.section-testimonials .section-head {
  padding-bottom: 34px;
}

.section-testimonials .section-head p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-marquee {
  margin: 0 0 24px;
  gap: 10px;
}

.testimonial-marquee span {
  min-height: 32px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #667085;
  font-size: 12px;
  border-color: rgba(15, 23, 42, 0.05);
}

.testimonial-bands {
  position: relative;
  margin-top: 6px;
}

.testimonial-bands::before {
  content: "";
  position: absolute;
  inset: 2px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0));
}

.testimonial-band-reverse {
  transform: translateX(-32px);
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 246, 243, 0.96));
}

.testimonial-card::before {
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.testimonial-tone-blue::before {
  color: var(--accent-blue);
  background: var(--accent-blue-soft);
}

.testimonial-tone-purple::before {
  color: var(--accent-purple);
  background: var(--accent-purple-soft);
}

.testimonial-tone-green::before {
  color: var(--accent-green);
  background: var(--accent-green-soft);
}

.testimonial-tone-orange::before {
  color: var(--accent-orange);
  background: var(--accent-orange-soft);
}

.testimonial-card::after {
  height: 58px;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  max-width: 18.5em;
}

.testimonial-card strong {
  color: #18212f;
}

.testimonial-band::before,
.testimonial-band::after {
  width: 96px;
}

.testimonial-band::before {
  background: linear-gradient(90deg, rgba(245, 246, 243, 1) 0%, rgba(245, 246, 243, 0.9) 34%, rgba(245, 246, 243, 0) 100%);
}

.testimonial-band::after {
  background: linear-gradient(270deg, rgba(245, 246, 243, 1) 0%, rgba(245, 246, 243, 0.9) 34%, rgba(245, 246, 243, 0) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-band-forward .testimonial-track,
  .testimonial-band-reverse .testimonial-track {
    animation: none;
  }
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes testimonial-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 10px));
  }

  to {
    transform: translateX(0);
  }
}

.section-privacy {
  margin-top: -1px;
  padding-top: 52px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, #f3f4f2 0%, rgba(245, 246, 244, 0.98) 34%, rgba(245, 246, 244, 0.96) 100%);
  position: relative;
}

.section-privacy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: min(760px, calc(100% - (var(--page-gutter) * 2)));
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0) 72%);
  transform: translateX(-50%);
  pointer-events: none;
}

.section-privacy .section-kicker::before {
  background: var(--accent-green);
}

.download-panel {
  width: 220px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.14),
    0 8px 18px rgba(15, 23, 42, 0.06);
  position: relative;
}

.download-panel-header {
  position: fixed;
  top: 82px;
  right: 20px;
  z-index: 995;
}

.download-panel[hidden] {
  display: none !important;
}

.download-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #7a8394;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.download-panel-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  padding-right: 22px;
}

.download-panel-copy strong {
  font-size: 15px;
  color: #18212f;
}

.download-panel-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #697385;
}

.download-panel-qr {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.download-toggle {
  cursor: pointer;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.btn-download:hover {
  color: #ffffff;
}

.site-header.is-light .btn-download {
  color: #4f5969;
}

.site-header.is-light .btn-download:hover {
  color: #111111;
}

.privacy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 820px;
  padding: 24px 28px 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 247, 245, 0.94));
  box-shadow: 0 18px 40px rgba(38, 50, 80, 0.06);
  position: relative;
  overflow: hidden;
}

.privacy-hero {
  position: relative;
  width: 188px;
  height: 126px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
}

.privacy-frame,
.privacy-column,
.privacy-line,
.privacy-dot {
  position: absolute;
}

.privacy-frame {
  inset: 0;
  margin: auto;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 245, 0.86));
}

.privacy-frame-back {
  width: 152px;
  height: 94px;
  transform: rotate(-7deg);
  opacity: 0.5;
  box-shadow: 0 14px 28px rgba(38, 50, 80, 0.05);
}

.privacy-frame-front {
  width: 164px;
  height: 102px;
  transform: rotate(5deg);
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(38, 50, 80, 0.07);
}

.privacy-frame-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 76%);
}

.privacy-column {
  top: 28px;
  width: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
}

.privacy-column-a {
  left: 54px;
  height: 62px;
  background: linear-gradient(180deg, rgba(109, 40, 217, 0.22), rgba(109, 40, 217, 0.06));
}

.privacy-column-b {
  left: 86px;
  height: 76px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.06));
}

.privacy-column-c {
  left: 118px;
  top: 38px;
  height: 50px;
  background: linear-gradient(180deg, rgba(21, 128, 61, 0.2), rgba(21, 128, 61, 0.05));
}

.privacy-line {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  transform-origin: left center;
}

.privacy-line-a {
  left: 34px;
  top: 42px;
  width: 112px;
  transform: rotate(14deg);
}

.privacy-line-b {
  left: 48px;
  bottom: 34px;
  width: 96px;
  transform: rotate(-18deg);
}

.privacy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 0 0 6px rgba(17, 17, 17, 0.04);
}

.privacy-dot-a {
  left: 36px;
  top: 38px;
  background: var(--accent-purple);
}

.privacy-dot-b {
  left: 92px;
  top: 28px;
  background: var(--accent-blue);
}

.privacy-dot-c {
  right: 36px;
  bottom: 30px;
  background: var(--accent-orange);
}

.privacy-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 56%);
  pointer-events: none;
}


.privacy-tags {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.privacy-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 14px rgba(60, 76, 116, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  position: relative;
}

.privacy-tags span:nth-child(1) {
  border-color: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.privacy-tags span:nth-child(2) {
  border-color: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
}

.privacy-tags span:nth-child(3) {
  border-color: rgba(21, 128, 61, 0.12);
  color: #15803d;
}

.privacy-tags span:nth-child(4) {
  border-color: rgba(180, 83, 9, 0.12);
  color: #b45309;
}

.privacy-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
  flex: 0 0 auto;
}

.privacy-tags span:nth-child(1)::before {
  background: #1d4ed8;
}

.privacy-tags span:nth-child(2)::before {
  background: #6d28d9;
}

.privacy-tags span:nth-child(3)::before {
  background: #15803d;
}

.privacy-tags span:nth-child(4)::before {
  background: #b45309;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin: 0;
  border: 0;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16);
  background: linear-gradient(180deg, #171c3a 0%, #151933 26%, #111522 72%, #0d1018 100%);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(136, 78, 255, 0.24), rgba(136, 78, 255, 0) 34%),
    radial-gradient(circle at 52% 0%, rgba(116, 149, 255, 0.14), rgba(116, 149, 255, 0) 30%),
    linear-gradient(135deg, rgba(136, 78, 255, 0.18), rgba(77, 91, 222, 0.1) 42%, rgba(77, 91, 222, 0) 76%) 0 0 / 82% 122% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09)) 10% 18% / 16% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 26% 70% / 24% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07)) 88% 28% / 1px 16% no-repeat,
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32%);
  opacity: 0.78;
}

.site-footer::after {
  right: 6%;
  top: 14%;
  width: 244px;
  height: 244px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(16deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 90px rgba(90, 122, 255, 0.08);
  opacity: 0.72;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 44px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.chat-panel {
  width: min(520px, calc(100vw - 24px));
  height: min(780px, calc(100vh - 80px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.16),
    0 8px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  animation: chat-panel-enter 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 246, 0.94));
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-left: 2px;
}

.chat-brand-icon,
.chat-close,
.chat-submit,
.chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.chat-brand-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4d5bde;
  box-shadow: 0 0 0 4px rgba(77, 91, 222, 0.1);
  flex: 0 0 auto;
}

.chat-brand-icon span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.chat-close svg,
.chat-submit svg,
.chat-toggle svg {
  width: 20px;
  height: 20px;
}

.chat-brand strong,
.chat-input,
.chat-bubble,
.chat-toggle {
  font-family: inherit;
}

.chat-brand strong {
  display: block;
  color: #17202e;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.chat-close {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  color: #7a8394;
  flex: 0 0 auto;
  padding: 0;
  opacity: 0.88;
}

.chat-close:hover,
.chat-submit:hover,
.chat-toggle:hover {
  transform: translateY(-1px);
}

.chat-close:hover {
  background: transparent;
  color: #111111;
  opacity: 1;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 246, 0.92));
  scrollbar-width: none;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

.chat-row {
  display: flex;
}

.chat-row-robot {
  justify-content: flex-start;
}

.chat-row-user {
  justify-content: flex-end;
}

.chat-message-block {
  max-width: 92%;
  display: flex;
  flex-direction: column;
}

.chat-row-robot .chat-message-block {
  max-width: 98%;
  padding-right: 0;
}

.chat-bubble {
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.78;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.chat-bubble-robot {
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #2c3648;
  position: relative;
}

.chat-bubble-user {
  border-top-right-radius: 6px;
  background: #111111;
  color: #ffffff;
}

.chat-markdown {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.chat-markdown > *:first-child {
  margin-top: 0;
}

.chat-markdown > *:last-child {
  margin-bottom: 0;
}

.chat-markdown p,
.chat-markdown ul,
.chat-markdown ol,
.chat-markdown blockquote,
.chat-markdown pre,
.chat-markdown h3,
.chat-markdown h4,
.chat-markdown h5 {
  margin: 0 0 0.5em;
}

.chat-markdown h3,
.chat-markdown h4,
.chat-markdown h5 {
  color: #17202e;
  font-weight: 700;
  line-height: 1.4;
}

.chat-markdown h3 {
  font-size: 1.06em;
}

.chat-markdown h4,
.chat-markdown h5 {
  font-size: 1em;
}

.chat-markdown ul,
.chat-markdown ol {
  padding-left: 1.2em;
}

.chat-markdown li + li {
  margin-top: 0.22em;
}

.chat-markdown blockquote {
  padding-left: 0.9em;
  border-left: 3px solid rgba(77, 91, 222, 0.28);
  color: #556174;
}

.chat-markdown code {
  padding: 0.1em 0.38em;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.chat-markdown pre {
  padding: 0.72em 0.82em;
  border-radius: 10px;
  background: #eef2f7;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow-x: auto;
}

.chat-markdown pre code {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.chat-markdown a {
  color: #3f51d8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.chat-bubble-typing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 4px 0;
}

.chat-bubble-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chat-bubble-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b2bccb;
  animation: chat-typing 0.9s ease-in-out infinite;
}

.chat-bubble-typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-bubble-typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.chat-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.chat-input {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #f8fafc;
  color: #17202e;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.chat-input:focus {
  border-color: rgba(15, 23, 42, 0.18);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.04);
}

.chat-input:disabled {
  opacity: 0.7;
}

.chat-submit {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  flex: 0 0 auto;
}

.chat-submit svg {
  width: 28px;
  height: 28px;
}

.chat-submit:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chat-toggle {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #4d5bde;
  color: #ffffff;
  border: 1px solid rgba(77, 91, 222, 0.22);
  box-shadow:
    0 18px 36px rgba(77, 91, 222, 0.24),
    0 8px 18px rgba(15, 23, 42, 0.1);
}

.chat-toggle-icon {
  display: block;
}

.chat-toggle img.chat-toggle-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.chat-toggle svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.9;
}

.chat-toggle-chevron {
  display: none;
}

.chat-widget.is-open .chat-toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 244, 248, 0.94));
  color: #111111;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.chat-widget.is-open .chat-toggle-message {
  display: none;
}

.chat-widget.is-open .chat-toggle-chevron {
  display: block;
}

@keyframes chat-panel-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chat-typing {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.trial-modal {
  width: min(560px, calc(100vw - 24px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.trial-modal:not([open]) {
  display: none;
}

.trial-modal::backdrop {
  background: rgba(10, 12, 18, 0.58);
  backdrop-filter: blur(10px);
}

.trial-modal-shell {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 246, 0.96)),
    linear-gradient(135deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.05));
  box-shadow:
    0 26px 64px rgba(10, 14, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.trial-modal-main {
  padding: 30px 30px 28px;
}

.trial-modal-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trial-stage {
  position: relative;
  height: auto;
  transition: height 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.trial-stage.is-static {
  transition: none;
}

.trial-modal-copy {
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    max-height 0.26s ease,
    margin 0.26s ease;
  transform-origin: top center;
}

.trial-modal-copy h2,
.trial-success h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #111827;
}

.trial-modal-copy p,
.trial-success p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.64;
  color: #5f6b7c;
}

.trial-success h3 {
  font-size: 27px;
}

.trial-success p {
  max-width: 20em;
  margin-top: 0;
  font-size: 14px;
  line-height: 1.58;
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trial-panel {
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s step-end;
}

.trial-form {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.trial-success {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  visibility: hidden;
  pointer-events: none;
}

.trial-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.trial-field span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #1c2638;
}

.trial-required {
  font-style: normal;
  font-size: 0.95em;
  color: #d14343;
}

.trial-field input,
.trial-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.trial-field input::placeholder,
.trial-field textarea::placeholder {
  color: rgba(95, 107, 124, 0.5);
}

.trial-field-hint {
  margin-left: auto;
  color: rgba(63, 73, 91, 0.48);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
  text-align: right;
  transition:
    color 0.18s ease,
    font-weight 0.18s ease;
}

.trial-field-hint.is-active {
  color: #c2410c;
  font-weight: 600;
}

.trial-field textarea {
  min-height: 102px;
  resize: vertical;
}

.trial-field input:focus,
.trial-field textarea:focus {
  outline: none;
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.trial-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trial-submit,
.trial-secondary {
  min-height: 50px;
  padding: 0 20px;
  font-size: 15px;
}

.trial-form .trial-form-actions {
  margin-top: 12px;
}

.trial-form .trial-submit {
  width: 100%;
  justify-content: center;
  border-radius: 16px;
}

.trial-submit {
  color: #ffffff;
  background: linear-gradient(135deg, #111111 0%, #242424 100%);
  border: 1px solid rgba(17, 17, 17, 0.2);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.trial-submit:hover {
  background: linear-gradient(135deg, #151515 0%, #2d2d2d 100%);
}

.trial-submit:disabled {
  opacity: 1;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, #8f96a3 0%, #a8afbb 100%);
  border-color: rgba(143, 150, 163, 0.18);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.trial-secondary {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.04);
  color: #18212f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.trial-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
}

.trial-success {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px 0 0;
}

.trial-modal-main.is-success .trial-form {
  opacity: 0;
  transform: translateY(-18px) scale(0.985);
  visibility: hidden;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.trial-modal-main.is-success .trial-modal-copy {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  overflow: hidden;
  margin: 0;
  pointer-events: none;
}

.trial-modal-main.is-success .trial-success {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.08s;
}

.trial-success-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 2px 6px 0;
}

.trial-success-copyblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 292px;
}

.trial-success-copyblock h3,
.trial-success-copyblock p {
  margin: 0;
}

.trial-success-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 204px;
  height: 146px;
}

.trial-success-visual::before {
  content: "";
  position: absolute;
  inset: 20px 36px 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(109, 40, 217, 0.14) 0%, rgba(109, 40, 217, 0.06) 34%, transparent 68%),
    radial-gradient(circle at 72% 30%, rgba(37, 99, 235, 0.12), transparent 28%);
  filter: blur(16px);
}

.trial-success-aura {
  position: absolute;
  inset: 18px 38px 12px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 180deg,
      rgba(109, 40, 217, 0),
      rgba(129, 140, 248, 0.34),
      rgba(37, 99, 235, 0.18),
      rgba(109, 40, 217, 0)
    );
  filter: blur(10px);
  opacity: 0;
}

.trial-success-orbit {
  position: absolute;
  inset: 12px 32px 6px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.14);
  box-shadow:
    0 0 0 8px rgba(99, 102, 241, 0.03);
  opacity: 0;
}

.trial-success-star {
  position: absolute;
  z-index: 0;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(0.65);
}

.trial-success-star::before,
.trial-success-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 18px;
  margin-left: -1px;
  margin-top: -9px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(224, 231, 255, 0.88), rgba(99, 102, 241, 0));
  box-shadow: 0 0 8px rgba(129, 140, 248, 0.12);
}

.trial-success-star::before {
  transform: rotate(45deg);
}

.trial-success-star::after {
  transform: rotate(-45deg);
}

.trial-success-star-a {
  left: 34px;
  top: 38px;
}

.trial-success-star-b {
  right: 32px;
  top: 28px;
}

.trial-success-star-c {
  right: 40px;
  bottom: 44px;
}

.trial-success-mark {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(160deg, #7c3aed 0%, #4f46e5 46%, #2563eb 100%);
  box-shadow:
    0 8px 18px rgba(79, 70, 229, 0.14),
    0 0 0 6px rgba(245, 247, 251, 0.72);
}

.trial-success-mark::before,
.trial-success-mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(129, 140, 248, 0.14);
}

.trial-success-mark::after {
  inset: -14px;
  border-color: rgba(129, 140, 248, 0.08);
}

.trial-success-mark svg {
  width: 54px;
  height: 54px;
  overflow: visible;
}

.trial-success-mark path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.trial-modal-main.is-success .trial-success-aura {
  animation: trial-success-aura 0.96s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.trial-modal-main.is-success .trial-success-mark {
  animation: trial-success-pop 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.trial-modal-main.is-success .trial-success-orbit {
  animation: trial-success-orbit 0.96s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.trial-modal-main.is-success .trial-success-star-a {
  animation: trial-success-star 0.9s ease-out 0.22s both;
}

.trial-modal-main.is-success .trial-success-star-b {
  animation: trial-success-star 0.9s ease-out 0.32s both;
}

.trial-modal-main.is-success .trial-success-star-c {
  animation: trial-success-star 0.9s ease-out 0.42s both;
}

.trial-success-actions {
  width: 100%;
  max-width: 332px;
  justify-content: center;
  gap: 10px;
}

.trial-success-actions .trial-submit {
  background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.trial-success-actions .trial-submit:hover {
  background: linear-gradient(135deg, #191919 0%, #313131 100%);
}

.trial-success-actions .trial-submit,
.trial-success-actions .trial-secondary {
  flex: 1 1 0;
}

.trial-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #485366;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.trial-modal-close:hover {
  background: rgba(15, 23, 42, 0.1);
  color: #111827;
  transform: scale(1.04);
}

@keyframes trial-success-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  70% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes trial-success-aura {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-12deg);
  }

  50% {
    opacity: 0.92;
    transform: scale(1);
  }

  100% {
    opacity: 0.78;
    transform: scale(1.06) rotate(12deg);
  }
}

@keyframes trial-success-orbit {
  0% {
    opacity: 0;
    transform: scale(0.88) rotate(-16deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(8deg);
  }
}

@keyframes trial-success-star {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0.88;
    transform: scale(1);
  }
}

.image-lightbox {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: rgba(10, 12, 18, 0.56);
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.image-lightbox:not([open]) {
  display: none;
}

.image-lightbox::backdrop {
  background: rgba(8, 10, 18, 0.46);
  backdrop-filter: blur(10px);
}

.image-lightbox-content {
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.96));
  transform-origin: center center;
  transition: transform 0.12s ease;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.image-lightbox-content.is-draggable {
  cursor: grab;
}

.image-lightbox-content.is-dragging {
  cursor: grabbing;
  transition: none;
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.62);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.image-lightbox-close:hover {
  background: rgba(10, 12, 18, 0.78);
  transform: scale(1.04);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.footer-bg {
  display: none;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-inner {
  min-height: 164px;
  justify-content: center;
  gap: 18px;
  padding: 34px 24px 24px;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
  color: #ffffff;
  max-width: 640px;
  padding-left: 0;
  position: relative;
  text-align: center;
}

.footer-copy::before {
  display: none;
}

.footer-copy h2 {
  color: #ffffff;
  letter-spacing: -1px;
  max-width: none;
  font-size: 34px;
  line-height: 1.14;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.68;
  max-width: 26em;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-lang-switch {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  min-height: 20px;
}

.footer-lang-switch .lang-trigger {
  min-height: 34px;
  padding: 0 10px;
}

.footer-lang-switch .lang-trigger svg {
  width: 18px;
  height: 18px;
}

.btn-footer {
  min-height: 50px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
    gap: clamp(24px, 4vw, 44px);
  }

  .hero-title {
    font-size: 48px;
    max-width: 13.6em;
  }

  .hero-visual {
    min-width: 420px;
    min-height: 500px;
  }

  .hero-visual-shell {
    width: min(100%, 540px);
    padding: 24px;
    border-radius: 30px;
    gap: 16px;
  }

  .hero-visual-shell::after {
    inset: 6px;
    border-radius: 24px;
  }

  .hero-visual-decor-top {
    top: 72px;
    right: 16px;
    width: 128px;
    height: 74px;
  }

  .hero-visual-decor-bottom {
    left: 10px;
    bottom: 72px;
    width: 140px;
    height: 82px;
  }

  .hero-visual-ring-a {
    width: 256px;
    height: 256px;
    right: -18px;
    top: 54px;
  }

  .hero-visual-ring-b {
    width: 180px;
    height: 180px;
    left: -10px;
    bottom: 42px;
  }

  .hero-visual-top strong {
    font-size: 19px;
  }

  .hero-visual-metrics {
    gap: 10px;
  }

  .hero-metric {
    min-height: 78px;
    padding: 12px 14px;
  }

  .hero-stage {
    --hero-stage-offset: 64px;
    --hero-stage-index-size: 36px;
    --hero-stage-index-left: -58px;
    --hero-stage-arrow-left: -40px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 16px 16px 16px;
  }

  .hero-stage-index {
    font-size: 12px;
  }

  .hero-stage-copy strong {
    font-size: 15px;
  }

  .hero-stage-copy p {
    font-size: 13px;
    line-height: 1.52;
  }

  .hero-stage-tags span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 20px;
  }

  .hero-main {
    gap: 20px;
  }

  .hero-title {
    font-size: 44px;
    max-width: 12.5em;
  }

  .hero-subtitle {
    max-width: 30em;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-points span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 13px;
  }

  .hero-visual {
    min-width: 420px;
  }

  .hero-visual-shell {
    width: 420px;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-main {
    align-items: center;
    text-align: center;
  }

  .hero-main h1 {
    max-width: 100%;
    align-items: center;
  }

  .hero-title {
    font-size: 42px;
    max-width: 15em;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    width: min(100%, 680px);
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-visual-shell {
    width: 100%;
  }

  .hero-stage-arrow {
    display: none;
  }

  .hero-stage {
    --hero-stage-offset: 72px;
    --hero-stage-index-size: 40px;
    --hero-stage-index-left: -62px;
    --hero-stage-arrow-left: -42px;
    padding: 17px 18px 17px 18px;
  }

  .hero-stage-index {
    font-size: 12px;
  }

  .hero-brand {
    font-size: 58px;
  }

  .testimonial-card {
    width: 300px;
  }

  .feature .container,
  .feature-orange .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-orange .feature-head,
  .feature-orange .feature-media {
    order: initial;
  }

  .feature-head {
    max-width: 100%;
  }

  .download-widget {
    left: 18px;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .section-value {
    padding-bottom: 92px;
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .value-card {
    gap: 16px;
    padding: 22px 18px 18px;
    min-height: 0;
  }

  .value-top {
    gap: 10px;
  }

  .value-card h3 {
    font-size: 19px;
    line-height: 1.36;
  }

  .value-card img {
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  body.chat-open-mobile {
    overflow: hidden;
  }

  body.chat-open-mobile .site-header {
    opacity: 0.24;
    filter: blur(2.5px) saturate(0.66) brightness(0.42);
  }

  body.chat-open-mobile main > :not(.chat-widget) {
    opacity: 0.24;
    filter: blur(2.5px) saturate(0.66) brightness(0.42);
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      filter 0.22s ease;
  }

  :root {
    --page-gutter: 12px;
  }

  .container,
  .header-inner {
    width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
  }

  .site-header {
    height: 60px;
    padding: 0;
  }

  .chat-widget {
    right: 12px;
    bottom: 26px;
    left: 12px;
    align-items: flex-end;
    z-index: 140;
  }

  .chat-panel {
    position: relative;
    width: 100%;
    height: min(76vh, 680px);
    border-radius: 24px;
    z-index: 141;
  }

  .chat-brand strong {
    font-size: 14px;
  }

  .chat-bubble {
    font-size: 15px;
    line-height: 1.7;
  }

  .chat-input {
    font-size: 16px;
  }

  .chat-toggle {
    width: 54px;
    height: 54px;
    border-radius: 999px;
  }

  .chat-toggle svg {
    width: 34px;
    height: 34px;
  }

  .chat-toggle img.chat-toggle-icon {
    width: 34px;
    height: 34px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .header-actions {
    flex: 0 0 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
  }

  .footer-bottom {
    gap: 10px;
  }

  .header-cta-group {
    gap: 10px;
    margin-left: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .brand-name {
    font-size: 17px;
  }

  .site-header .btn {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .header-cta-group .btn-outline {
    display: none;
  }

  .header-actions .btn-download {
    display: inline-flex;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bg {
    inset: 0;
    height: auto;
  }

  .hero::after,
  .hero-bg::before {
    display: none;
  }

  .hero-orb-left {
    width: 210px;
    height: 210px;
    left: -112px;
    top: 160px;
  }

  .hero-orb-right {
    display: none;
  }

  .hero-inner {
    min-height: calc(78svh - 60px);
    padding: 88px 0 32px;
    display: flex;
    align-items: center;
  }

  .hero-layout {
    width: 100%;
    gap: 24px;
  }

  .hero-brand {
    font-size: 42px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.14;
    letter-spacing: -0.9px;
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-main {
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .hero-main h1 {
    gap: 14px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.62;
    max-width: 21em;
  }

  .hero-cta {
    width: auto;
    justify-content: center;
  }

  .hero-cta .btn {
    width: auto;
    min-width: 150px;
  }

  .hero-points {
    gap: 8px;
    justify-content: center;
    max-width: 100%;
  }

  .hero-points span {
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
  }

  .hero-points span::before {
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 6% 28%, rgba(109, 40, 217, 0.16), transparent 28%),
      linear-gradient(180deg, rgba(8, 10, 14, 0.3) 0%, rgba(9, 11, 16, 0.18) 28%, rgba(12, 15, 21, 0.1) 62%, rgba(19, 22, 28, 0.02) 100%);
  }

  .hero-bg::after {
    background:
      radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.028), transparent 18%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.008) 0%, rgba(17, 19, 23, 0.04) 38%, rgba(12, 16, 23, 0.075) 66%, rgba(18, 22, 29, 0.025) 100%);
  }

  .hero-stage-path,
  .hero-visual,
  .hero-visual-decor,
  .hero-visual-ring {
    display: none;
  }

  .hero-main h1 {
    align-items: center;
  }

  .btn-large {
    min-height: 46px;
    padding: 0 24px;
    font-size: 15px;
  }

  .section-head h2,
  .feature-head h2,
  .privacy-inner h2,
  .footer-copy h2 {
    font-size: 26px;
    line-height: 1.24;
    letter-spacing: -0.8px;
  }

  .section-head p,
  .feature-head p,
  .privacy-inner p,
  .footer-copy p,
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.72;
  }

  .value-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 2px 6px rgba(15, 23, 42, 0.03),
      0 12px 24px rgba(38, 50, 80, 0.045);
    overflow: hidden;
  }

  .section-broker {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .broker-shell {
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .broker-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .broker-card {
    min-height: 0;
    padding: 18px 16px 16px;
    border-radius: 20px;
    gap: 10px;
    transform: none;
    height: auto;
  }

  .broker-card-purple,
  .broker-card-blue,
  .broker-card-green {
    border-radius: 20px;
    transform: none;
  }

  .broker-card-top {
    gap: 8px;
  }

  .broker-card-copy {
    gap: 8px;
  }

  .broker-card-heading {
    gap: 10px;
  }

  .broker-card-index {
    min-width: 30px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 12px;
  }

  .broker-card h3 {
    font-size: 20px;
    line-height: 1.28;
    max-width: none;
  }

  .broker-card-lead,
  .broker-card p:last-child {
    font-size: 14px;
    line-height: 1.62;
  }

  .broker-head-top {
    max-width: none;
    align-items: center;
    margin-bottom: 10px;
  }

  .broker-shell::before,
  .broker-shell::after {
    display: none;
  }

  .broker-card-media {
    border-radius: 18px;
  }

  .broker-card-image {
    height: 164px;
    width: 100%;
    transform: none;
    border-radius: 0;
  }

  .broker-card-blue .broker-card-image,
  .broker-card-green .broker-card-image,
  .broker-card-purple .broker-card-image {
    width: 100%;
    transform: none;
    border-radius: 0;
  }

  html[lang="en"] .section-broker .section-kicker {
    min-height: 0;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
  }

  html[lang="en"] .broker-head h2 {
    max-width: 12.5em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }

  html[lang="en"] .broker-head > p {
    max-width: 24em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
  }

  html[lang="en"] .broker-card {
    padding: 16px 14px 14px;
  }

  html[lang="en"] .broker-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  html[lang="en"] .broker-card-lead,
  html[lang="en"] .broker-card p:last-child {
    font-size: 13px;
    line-height: 1.56;
  }

  html[lang="en"] .broker-card-image {
    height: 152px;
  }


  .value-grid::before {
    display: none;
  }

  .testimonial-marquee {
    margin: -8px 0 24px;
  }

  .testimonial-bands {
    gap: 14px;
    padding: 4px 0 8px;
  }

  .testimonial-band-wrap {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    overflow: hidden;
  }

  .testimonial-band {
    position: relative;
    margin: 0;
    padding: 10px 0 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonial-band::-webkit-scrollbar {
    display: none;
  }

  .testimonial-band::before,
  .testimonial-band::after {
    display: none;
  }

  .testimonial-band-wrap::before,
  .testimonial-band-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 34px;
    z-index: 2;
    pointer-events: none;
  }

  .testimonial-band-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(243, 244, 242, 1) 0%, rgba(243, 244, 242, 0.78) 44%, rgba(243, 244, 242, 0) 100%);
  }

  .testimonial-band-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(243, 244, 242, 1) 0%, rgba(243, 244, 242, 0.78) 44%, rgba(243, 244, 242, 0) 100%);
  }

  .testimonial-band-reverse {
    transform: none;
  }

  .testimonial-track {
    gap: 14px;
    width: auto;
    min-width: 100%;
    padding: 2px 0 8px;
  }

  .testimonial-band-forward .testimonial-track,
  .testimonial-band-reverse .testimonial-track {
    animation: none;
  }

  .testimonial-card[aria-hidden="true"]:not([data-loop-clone]) {
    display: none;
  }

  .testimonial-card {
    width: min(252px, calc(100vw - 56px));
    min-height: 154px;
    padding: 13px 13px 12px;
    scroll-snap-align: center;
  }

  .testimonial-card::before {
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 32px;
  }

  .testimonial-card p {
    font-size: 12px;
    line-height: 1.52;
  }

  .testimonial-card footer {
    gap: 3px;
    padding-top: 8px;
  }

  .testimonial-card strong {
    font-size: 12px;
  }

  .testimonial-card span {
    font-size: 11px;
  }

  .feature .container,
  .feature-orange .container {
    gap: 20px;
  }

  .pill {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .feature-list {
    gap: 8px;
  }

  .feature-list li {
    font-size: 14px;
    line-height: 1.58;
  }

  .feature-media-button::after {
    display: none;
  }

  .hero-proof {
    gap: 8px 12px;
  }

  .value-card {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    align-items: center;
    gap: 10px;
    padding: 14px 12px 14px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .value-card::before,
  .value-card::after {
    display: none;
  }

  .value-card + .value-card {
    border-top: 1px solid rgba(15, 23, 42, 0.07);
  }

  .value-top {
    gap: 8px;
  }

  .value-label {
    font-size: 12px;
  }

  .value-card h3 {
    font-size: 15px;
    line-height: 1.32;
    letter-spacing: -0.3px;
  }

  .value-card img {
    width: 84px;
    height: 84px;
    border-radius: 10px;
  }

  .feature,
  .section-testimonials,
  .section-privacy {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .section-testimonials::after {
    top: -28px;
    height: 44px;
    border-radius: 24px 24px 0 0;
  }

  .feature-head,
  .feature-head p {
    max-width: 100%;
  }

  .feature-head {
    padding-left: 14px;
    padding-right: 2px;
  }

  .feature-head h2::before {
    left: -12px;
  }

  .feature-list li {
    padding-left: 18px;
  }

  .feature-list li::before {
    left: 0;
  }

  .site-footer {
    margin: 0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .download-panel {
    width: 172px;
    padding: 10px;
    border-radius: 18px;
  }

  .download-panel-header {
    top: 70px;
    right: 12px;
  }

  .footer-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .privacy-tags {
    gap: 10px;
  }

  .privacy-tags span,
  .footer-points span {
    font-size: 12px;
  }

  .footer-inner {
    min-height: auto;
    padding: 36px 0 24px;
    align-items: center;
    gap: 20px;
  }

  .footer-copy {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .footer-copy h2 {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.16;
    letter-spacing: -0.8px;
  }

  .footer-copy p {
    max-width: 100%;
    margin-top: 8px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-actions {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .footer-actions .btn {
    width: auto;
    min-height: 46px;
    padding-inline: 18px;
  }

  .footer-bottom {
    justify-content: center;
    gap: 8px;
    flex-direction: column;
  }

  .lang-trigger {
    width: 26px;
    height: 26px;
    min-height: 26px;
    gap: 6px;
    padding: 0 8px;
    font-size: 12px;
  }

  .footer-lang-switch {
    position: static;
    transform: none;
  }

  .btn-footer {
    min-height: 46px;
    font-size: 15px;
  }

  .trial-modal {
    width: min(100vw - 16px, 520px);
  }

  .trial-modal-main {
    padding: 24px 18px 22px;
  }

  .trial-stage {
    min-height: 0;
  }

  .trial-modal-copy h2,
  .trial-success h3 {
    font-size: 26px;
  }

  .trial-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trial-success-body {
    gap: 16px;
    padding: 4px 4px 0;
  }

  .trial-success-actions {
    max-width: none;
  }

  .trial-success-visual {
    width: 180px;
    height: 136px;
  }

  .trial-success-mark {
    width: 72px;
    height: 72px;
  }

  .trial-success-star {
    width: 16px;
    height: 16px;
  }

  .trial-submit,
  .trial-secondary {
    width: 100%;
  }

  .image-lightbox {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 12px;
    border-radius: 0;
  }

  .privacy-hero {
    width: 144px;
    height: 102px;
  }

  .privacy-frame-back {
    width: 116px;
    height: 72px;
  }

  .privacy-frame-front {
    width: 126px;
    height: 78px;
  }

  .privacy-column {
    width: 14px;
    top: 24px;
  }

  .privacy-column-a {
    left: 40px;
    height: 48px;
  }

  .privacy-column-b {
    left: 66px;
    height: 58px;
  }

  .privacy-column-c {
    left: 92px;
    top: 32px;
    height: 40px;
  }

  .privacy-line-a {
    left: 26px;
    top: 36px;
    width: 84px;
  }

  .privacy-line-b {
    left: 38px;
    bottom: 28px;
    width: 72px;
  }

  .privacy-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.04);
  }

  .privacy-dot-a {
    left: 28px;
    top: 32px;
  }

  .privacy-dot-b {
    left: 70px;
    top: 24px;
  }

  .privacy-dot-c {
    right: 28px;
    bottom: 24px;
  }

  .image-lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .lang-trigger {
    width: 24px;
    height: 24px;
    min-height: 24px;
    gap: 5px;
    padding: 0 7px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .footer-bottom {
    gap: 8px;
  }
}
