:root {
  --bg: #0e1115;
  --surface: #11161d;
  --surface-2: #0f141b;
  --title: #ffffff;
  --accent: #07a58c;
  --paragraph: #7e8a9a;
  --h3: #24dbc9;
  --border: rgba(126, 138, 154, 0.24);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #0a0f14 0%, #0e1115 36%, #0e1115 100%);
  color: var(--title);
  line-height: 1.55;
}

.home-page {
  background:
    radial-gradient(ellipse 34% 26% at 12% 180px, rgba(7, 165, 140, 0.22) 0%, rgba(7, 165, 140, 0.08) 40%, rgba(7, 165, 140, 0) 72%),
    radial-gradient(ellipse 32% 25% at 74% 780px, rgba(7, 165, 140, 0.2) 0%, rgba(7, 165, 140, 0.08) 38%, rgba(7, 165, 140, 0) 72%),
    radial-gradient(ellipse 36% 27% at 28% 1380px, rgba(7, 165, 140, 0.22) 0%, rgba(7, 165, 140, 0.09) 40%, rgba(7, 165, 140, 0) 72%),
    radial-gradient(ellipse 30% 24% at 86% 1980px, rgba(7, 165, 140, 0.18) 0%, rgba(7, 165, 140, 0.07) 36%, rgba(7, 165, 140, 0) 70%),
    radial-gradient(ellipse 34% 26% at 42% 2580px, rgba(7, 165, 140, 0.2) 0%, rgba(7, 165, 140, 0.08) 38%, rgba(7, 165, 140, 0) 72%),
    radial-gradient(ellipse 32% 24% at 9% 3180px, rgba(7, 165, 140, 0.18) 0%, rgba(7, 165, 140, 0.07) 36%, rgba(7, 165, 140, 0) 70%),
    linear-gradient(180deg, #0a0f14 0%, #0e1115 36%, #0e1115 100%);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
}

h1,
h2 {
  color: var(--title);
}

h3 {
  color: var(--h3);
}

p,
label,
li {
  color: var(--paragraph);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 20, 0.96);
  border-bottom: 1px solid rgba(36, 219, 201, 0.15);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1240px;
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 212px;
  height: auto;
  display: block;
}

.desktop-nav,
.desktop-actions {
  display: none;
}

.lang-menu {
  position: relative;
}

.lang-menu summary {
  list-style: none;
  min-width: 78px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(126, 138, 154, 0.32);
  border-radius: 10px;
  background: rgba(15, 20, 27, 0.9);
  cursor: pointer;
}

.lang-menu summary::-webkit-details-marker {
  display: none;
}

.lang-current {
  color: var(--title);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.lang-caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid #7e8a9a;
  border-bottom: 2px solid #7e8a9a;
  transform: rotate(45deg) translateY(-1px);
}

.lang-menu[open] .lang-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-dropdown {
  position: absolute;
  right: 0;
  margin-top: 8px;
  min-width: 180px;
  padding: 8px;
  background: #10161e;
  border: 1px solid rgba(126, 138, 154, 0.3);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.lang-item {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paragraph);
  font-size: 0.84rem;
}

.lang-item:hover {
  color: var(--title);
  background: rgba(126, 138, 154, 0.12);
}

.lang-item.is-active {
  color: #061b1a;
  background: linear-gradient(135deg, #07a58c 0%, #24dbc9 100%);
}

.lang-item-code {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.desktop-lang {
  display: none;
}

.mobile-menu {
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--title);
  display: block;
  position: relative;
  transition: transform 0.2s ease;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.mobile-menu[open] .menu-icon {
  background: transparent;
}

.mobile-menu[open] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  margin-top: 10px;
  min-width: 245px;
  position: absolute;
  right: 0;
  display: grid;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.mobile-lang {
  margin: 2px 0 6px;
}

.mobile-lang,
.mobile-lang summary,
.mobile-lang .lang-dropdown {
  width: 100%;
}

.mobile-lang summary {
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  justify-content: flex-start;
  position: relative;
}

.mobile-lang .lang-current {
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 22px;
}

.mobile-lang .lang-caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-55%) rotate(45deg);
}

.mobile-lang[open] .lang-caret {
  transform: translateY(-40%) rotate(-135deg);
}

.mobile-lang .lang-dropdown {
  position: static;
  margin-top: 8px;
  min-width: 0;
  max-height: 196px;
  overflow-y: auto;
}

.nav-link {
  color: var(--paragraph);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--title);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 11px;
  padding: 0 16px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid rgba(7, 165, 140, 0.6);
  background: rgba(10, 16, 24, 0.95);
  color: #24dbc9;
}

.btn-outline:hover {
  border-color: #24dbc9;
  background: rgba(36, 219, 201, 0.1);
}

.btn-primary {
  background: linear-gradient(95deg, #09b19a 0%, #19ccb8 56%, #d8f9f3 100%);
  color: #062625;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.site-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 30px) 16px 44px;
}

.site-main.home-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.content-shell {
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.95) 0%, rgba(15, 20, 27, 0.9) 100%);
  border: 1px solid rgba(126, 138, 154, 0.18);
  border-radius: 16px;
  padding: 24px;
}

.content-shell.home-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.hero {
  position: relative;
  overflow: visible;
  border-radius: 0;
  width: 100%;
  padding: 62px 0 70px;
  background: transparent;
  border: 0;
  text-align: center;
}

.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero-badge {
  position: relative;
  margin: 0 auto 20px;
  min-height: 36px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(36, 219, 201, 0.28);
  background: rgba(12, 21, 31, 0.84);
  color: #8a98ab;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  padding: 0 16px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #11d7c4;
  box-shadow: 0 0 12px rgba(17, 215, 196, 0.8);
}

.hero-title {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  line-height: 1.05;
  font-size: clamp(2rem, 5.7vw, 3rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

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

.hero-title-line-accent {
  margin-top: 6px;
  color: var(--accent);
}

.hero-lead {
  position: relative;
  margin: 26px auto 0;
  max-width: 640px;
  font-size: clamp(1.04rem, 1.85vw, 1.2rem);
  line-height: 1.5;
  color: #8694a8;
}

.hero-cta-group {
  position: relative;
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 202px;
  min-height: 48px;
  font-size: 0.97rem;
  border-radius: 12px;
}

.hero-btn-primary {
  border: 0;
  color: #062625;
  background: linear-gradient(95deg, #09b19a 0%, #19ccb8 56%, #d8f9f3 100%);
}

.hero-btn-secondary {
  color: #f5f7fa;
  border: 1px solid rgba(126, 138, 154, 0.35);
  background: rgba(10, 16, 24, 0.95);
}

.hero-btn-secondary:hover {
  border-color: rgba(36, 219, 201, 0.6);
  background: rgba(14, 21, 29, 0.95);
}

.features {
  padding: 24px 0 12px;
}

.features-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.features-kicker {
  margin: 0;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  color: #17cfbc;
}

.features-title {
  margin: 14px auto 0;
  text-align: center;
  line-height: 1.13;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

.features-title span {
  display: block;
}

.features-title-muted {
  color: #8a97aa;
}

.features-grid {
  margin-top: 54px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.feature-card {
  min-height: 196px;
  padding: 22px 22px 20px;
  border-radius: 12px;
  border: 1px solid rgba(20, 179, 164, 0.35);
  background: linear-gradient(180deg, rgba(29, 36, 48, 0.82) 0%, rgba(24, 31, 42, 0.78) 100%);
}

.feature-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f0f3f8;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(18, 130, 124, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

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

.feature-text {
  margin: 12px 0 0;
  color: #8b98aa;
  font-size: 1.03rem;
  line-height: 1.5;
}

.how-it-works {
  padding: 56px 0 24px;
}

.how-it-works-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.how-it-works-kicker {
  margin: 0;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  color: #12c5b2;
}

.how-it-works-title {
  margin: 12px auto 0;
  text-align: center;
  line-height: 1.14;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.how-it-works-grid {
  margin-top: 44px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.how-step-card {
  min-height: 172px;
}

.how-step-number {
  margin: 0;
  color: rgba(18, 197, 178, 0.48);
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.how-step-title {
  margin: 16px 0 0;
  color: #f1f4f8;
  font-size: 1.85rem;
  line-height: 1.2;
}

.how-step-text {
  margin: 10px 0 0;
  color: #8593a8;
  font-size: 1.03rem;
  line-height: 1.6;
  max-width: 290px;
}

.home-questions {
  padding: 48px 0 36px;
}

.home-questions-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 22px;
  border: 1px solid rgba(20, 179, 164, 0.25);
  border-radius: 14px;
  background: rgba(14, 20, 28, 0.55);
  text-align: center;
}

.home-questions-title {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.15;
}

.home-questions-text {
  margin: 12px auto 0;
  max-width: 900px;
  color: #8fa0b3;
  font-size: 1.04rem;
  line-height: 1.6;
}

.home-questions-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-questions-btn {
  min-width: 190px;
  min-height: 44px;
}

.home-early {
  padding: 26px 0 56px;
}

.home-early-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 22px;
  border: 1px solid rgba(36, 219, 201, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 18%, rgba(36, 219, 201, 0.2) 0%, rgba(36, 219, 201, 0) 40%),
    linear-gradient(180deg, rgba(12, 20, 30, 0.9) 0%, rgba(10, 16, 24, 0.88) 100%);
  text-align: center;
}

.home-early-title {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.14;
  text-wrap: balance;
}

.home-early-text {
  margin: 12px auto 0;
  max-width: 780px;
  color: #9eb0c3;
  font-size: 1.04rem;
  line-height: 1.6;
}

.home-early-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.home-early-btn {
  min-width: 248px;
  min-height: 46px;
}

.faqs-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 6px 22px 20px;
}

.faqs-title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  text-align: center;
}

.accent-text {
  color: var(--accent);
}

.faqs-intro {
  margin: 14px auto 0;
  text-align: center;
  max-width: 760px;
  color: #8b98aa;
  font-size: 1.05rem;
}

.faq-list {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(20, 179, 164, 0.24);
  background: rgba(18, 24, 33, 0.72);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #7f8ca0;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item h3 {
  margin: 0;
  color: #f2f5f8;
  font-size: 1.18rem;
  line-height: 1.35;
}

.faq-item p {
  margin: 10px 0 0;
  color: #94a1b3;
  font-size: 1rem;
  line-height: 1.6;
}

.faqs-cta {
  margin-top: 44px;
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(20, 179, 164, 0.22);
  border-radius: 14px;
  background: rgba(14, 20, 28, 0.62);
}

.faqs-cta h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.faqs-cta p {
  margin: 10px auto 0;
  max-width: 700px;
  color: #8fa0b3;
}

.faqs-cta-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 6px 22px 20px;
}

.contact-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.contact-intro {
  margin: 12px auto 0;
  text-align: center;
  max-width: 720px;
  color: #8fa0b3;
}

.contact-form {
  margin-top: 28px;
  border: 1px solid rgba(20, 179, 164, 0.24);
  background: rgba(18, 24, 33, 0.72);
  border-radius: 12px;
  padding: 18px;
}

.contact-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #9aa8bb;
}

.contact-status[data-type="loading"] {
  color: #a9d8cf;
}

.contact-status[data-type="success"] {
  color: #6de0b3;
}

.contact-status[data-type="error"] {
  color: #ff9a9a;
}

.contact-thanks {
  margin-top: 28px;
  border: 1px solid rgba(36, 219, 201, 0.4);
  border-radius: 12px;
  background: rgba(7, 165, 140, 0.12);
  padding: 24px 20px;
  text-align: center;
}

.contact-thanks-text {
  margin: 0;
  color: #d3f6ef;
  font-size: 1.06rem;
  line-height: 1.6;
}

.early-access-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 22px 24px;
}

.early-access-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.early-access-title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  line-height: 1.2;
}

.early-access-lead {
  margin: 12px auto 0;
  color: #9badc1;
  max-width: 940px;
  font-size: 1.08rem;
}

.early-access-form-title {
  margin: 24px 0 0;
  color: #f2f5f8;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.early-access-form-subtitle {
  margin: 8px auto 0;
  color: #9badc1;
  font-size: 1.05rem;
}

.early-access-form {
  margin: 26px auto 0;
  max-width: 1120px;
  border: 1px solid rgba(126, 138, 154, 0.2);
  border-radius: 14px;
  background: rgba(5, 10, 16, 0.52);
  padding: 22px;
}

.early-access-form label {
  display: block;
  margin: 12px 0 6px;
  color: #f0f4f9;
  font-size: 1.02rem;
  font-weight: 600;
}

.early-access-form input,
.early-access-form select {
  width: 100%;
  margin: 0;
  min-height: 46px;
  padding: 11px 12px;
  background: rgba(17, 23, 32, 0.76);
  color: #ecf2fa;
  border: 1px solid rgba(126, 138, 154, 0.28);
  border-radius: 8px;
}

.early-access-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8fa0b4 50%), linear-gradient(135deg, #8fa0b4 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 12px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.early-access-form input:focus,
.early-access-form select:focus {
  border-color: var(--accent);
  outline: 1px solid rgba(7, 165, 140, 0.36);
}

.early-access-field-note {
  margin: 6px 0 2px;
  color: #8898aa;
  font-size: 0.9rem;
}

.early-access-legal {
  margin: 20px 0 0;
  color: #f0f4f9;
  font-size: 1.02rem;
  line-height: 1.52;
}

.early-access-legal a {
  color: #24dbc9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.early-access-submit {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
}

.early-access-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.early-access-status {
  min-height: 24px;
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.97rem;
  color: #98a8bc;
}

.early-access-status[data-type="loading"] {
  color: #a9d8cf;
}

.early-access-status[data-type="success"] {
  color: #6de0b3;
}

.early-access-status[data-type="error"] {
  color: #ff9a9a;
}

.early-access-footnote {
  margin: 6px 0 0;
  text-align: center;
  color: #7f8ea2;
  font-size: 0.87rem;
}

.early-access-thanks {
  margin: 26px auto 0;
  max-width: 1120px;
  border: 1px solid rgba(36, 219, 201, 0.42);
  border-radius: 14px;
  background: rgba(7, 165, 140, 0.12);
  padding: 34px 22px;
  text-align: center;
}

.early-access-thanks-title {
  margin: 0;
  color: #def7f2;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.2;
}

.early-access-thanks-text {
  margin: 10px auto 0;
  max-width: 720px;
  color: #bee9e1;
  font-size: 1.03rem;
  line-height: 1.55;
}

.help-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6px 22px 20px;
}

.help-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.help-intro,
.help-streaming-note {
  margin: 12px auto 0;
  text-align: center;
  max-width: 780px;
  color: #8fa0b3;
}

.help-streaming-note {
  margin-top: 8px;
  font-size: 0.94rem;
}

.help-video-grid {
  margin-top: 30px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.help-video-card {
  border: 1px solid rgba(20, 179, 164, 0.24);
  background: rgba(18, 24, 33, 0.72);
  border-radius: 12px;
  padding: 18px;
}

.help-video-card h2 {
  margin: 0;
  font-size: 1.16rem;
  color: #f2f5f8;
}

.help-video-card p {
  margin: 10px 0 0;
  color: #94a1b3;
}

.help-video-frame {
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px dashed rgba(126, 138, 154, 0.5);
  border-radius: 10px;
  background: rgba(10, 16, 24, 0.8);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
}

.help-video-placeholder {
  color: #7f8ea3;
  font-size: 0.92rem;
}

.help-video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.privacy-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 6px 22px 20px;
}

.privacy-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
}

.privacy-intro {
  margin: 14px auto 0;
  max-width: 840px;
  text-align: center;
  color: #8fa0b3;
}

.privacy-block {
  margin-top: 24px;
}

.privacy-block h2 {
  margin: 0;
  color: #f2f5f8;
  font-size: 1.18rem;
  line-height: 1.3;
}

.privacy-block p {
  margin: 10px 0 0;
  color: #94a1b3;
}

.privacy-block ul {
  margin: 10px 0 0;
  padding-left: 22px;
  color: #94a1b3;
}

.privacy-block li {
  margin: 6px 0;
}

.privacy-block a {
  color: #24dbc9;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.privacy-block a:hover {
  color: #48ead7;
}

.demo-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6px 22px 24px;
}

.demo-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.demo-intro {
  margin: 12px auto 0;
  text-align: center;
  max-width: 760px;
  color: #8fa0b3;
}

.demo-controls {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: end;
}

.demo-field label {
  display: inline-block;
  margin-bottom: 4px;
  color: #93a2b5;
}

.demo-field input {
  margin: 0;
}

.demo-status {
  min-height: 24px;
  margin: 0;
  color: #9aa8bb;
}

.demo-status-wrap {
  margin: 12px 0 0;
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-loading-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(36, 219, 201, 0.2);
  border-top-color: #24dbc9;
  animation: demo-spin 0.9s linear infinite;
  flex: 0 0 16px;
}

.demo-status[data-type="loading"] {
  color: #a9d8cf;
}

.demo-status[data-type="error"] {
  color: #ff8f8f;
}

.demo-status[data-type="success"] {
  color: #6de0b3;
}

.demo-status[data-type="warn"] {
  color: #f7d075;
}

@keyframes demo-spin {
  to {
    transform: rotate(360deg);
  }
}

.demo-success-note {
  margin: 12px 0 0;
  border: 1px solid rgba(36, 219, 201, 0.45);
  background: rgba(7, 165, 140, 0.14);
  color: #b9f3e9;
  border-radius: 10px;
  padding: 12px 14px;
}

.is-hidden {
  display: none;
}

.demo-block {
  margin-top: 18px;
  border: 1px solid rgba(20, 179, 164, 0.24);
  background: rgba(18, 24, 33, 0.72);
  border-radius: 12px;
  padding: 16px;
}

.demo-block h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: #f2f5f8;
}

.demo-month-label {
  margin: 0;
  font-weight: 600;
  color: #dce6f2;
  text-transform: capitalize;
  text-align: center;
}

.demo-calendar-nav {
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.demo-calendar-nav .btn {
  min-height: 38px;
  padding: 0 10px;
  font-size: 0.86rem;
  flex: 0 0 auto;
  width: auto;
}

.demo-calendar-nav .demo-month-label {
  flex: 1 1 auto;
  text-align: center;
}

.demo-calendar-head,
.demo-calendar-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.demo-weekday-cell {
  text-align: center;
  color: #8190a2;
  font-size: 0.84rem;
}

.demo-day-cell {
  min-height: 72px;
  border-radius: 10px;
  border: 1px solid rgba(126, 138, 154, 0.24);
  background: rgba(10, 16, 24, 0.74);
  color: #a0aec0;
  padding: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-day-cell.is-empty {
  border-style: dashed;
  opacity: 0.2;
}

.demo-day-cell:disabled {
  cursor: not-allowed;
}

.demo-day-cell.is-available {
  cursor: pointer;
  border-color: rgba(36, 219, 201, 0.7);
  background: rgba(7, 165, 140, 0.14);
  color: #e9f6f4;
}

.demo-day-cell.is-available:hover {
  background: rgba(7, 165, 140, 0.24);
}

.demo-day-number {
  font-weight: 600;
}

.demo-day-hint {
  font-size: 0.74rem;
  color: #9adacf;
}

.demo-slots-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.demo-selected-day {
  margin: 0;
  color: #9ab0c7;
}

.demo-timezone-note {
  margin: -2px 0 10px;
  color: #7e91a8;
  font-size: 0.88rem;
}

.demo-days-grid,
.demo-slots-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.demo-day-btn,
.demo-slot-btn {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(126, 138, 154, 0.35);
  background: rgba(10, 16, 24, 0.9);
  color: #d8e0ea;
  cursor: pointer;
  text-align: left;
  padding: 0 12px;
}

.demo-day-btn:hover,
.demo-slot-btn:hover {
  border-color: rgba(36, 219, 201, 0.58);
}

.demo-day-btn:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.demo-day-btn.is-active,
.demo-slot-btn.is-active {
  border-color: #24dbc9;
  background: rgba(7, 165, 140, 0.18);
}

.demo-form {
  display: grid;
  gap: 10px;
}

.demo-form textarea {
  margin: 0;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 14px;
  padding: 11px 12px;
  background: #0c1117;
  color: var(--title);
  border: 1px solid rgba(126, 138, 154, 0.45);
  border-radius: 10px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 1px solid rgba(7, 165, 140, 0.36);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.captcha-wrap {
  margin: 8px 0 14px;
}

.captcha-note {
  margin: 4px 0 14px;
  color: #9aa7b7;
  font-size: 0.92rem;
}

.site-footer {
  background: #090f15;
}

.footer-shell {
  max-width: 1920px;
  margin: 0 auto;
  padding: 16px 16px 22px;
  border-top: 1px solid rgba(126, 138, 154, 0.2);
}

.footer-main-row {
  display: grid;
  gap: 18px;
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(126, 138, 154, 0.18);
}

.footer-brand-block {
  max-width: 420px;
}

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

.footer-logo img {
  width: 238px;
  height: auto;
  display: block;
}

.footer-copy {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.34;
}

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

.footer-link {
  color: var(--paragraph);
  font-size: 0.92rem;
  white-space: nowrap;
  line-height: 1;
}

.footer-link-strong {
  color: #8f9bae;
}

.footer-link:hover {
  color: var(--title);
}

.footer-legal {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.2;
  color: rgba(126, 138, 154, 0.78);
}

@media (min-width: 900px) {
  .footer-shell {
    padding: 18px 44px 20px;
  }

  .footer-main-row {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 18px 18px 16px;
  }

  .footer-nav {
    justify-content: flex-end;
    gap: 26px;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  .header-inner {
    padding: 0 22px;
  }

  .brand img {
    width: 290px;
  }

  .mobile-menu {
    display: none;
  }

  .desktop-nav {
    display: flex;
    margin-left: auto;
    gap: 34px;
  }

  .desktop-lang {
    display: inline-flex;
    margin-left: 12px;
  }

  .desktop-actions {
    display: flex;
    gap: 12px;
    margin-left: 10px;
  }

  .site-main {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 64px;
  }

  .site-main.home-main {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 72px;
  }

  .hero {
    padding: 78px 0 96px;
    border-radius: 0;
  }

  .hero-content {
    padding: 0 22px;
  }

  .hero-badge {
    margin-bottom: 22px;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-title-line-accent {
    margin-top: 4px;
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-cta-group {
    margin-top: 28px;
    gap: 14px;
  }

  .hero-btn {
    min-width: 214px;
    min-height: 48px;
  }

  .features {
    padding-top: 36px;
    padding-bottom: 16px;
  }

  .how-it-works {
    padding-top: 68px;
    padding-bottom: 26px;
  }

  .home-questions {
    padding-top: 58px;
    padding-bottom: 40px;
  }

  .home-questions-content {
    padding: 36px 34px;
  }

  .home-questions-actions {
    margin-top: 24px;
    gap: 14px;
  }

  .home-questions-btn {
    min-width: 210px;
  }

  .home-early {
    padding-top: 28px;
    padding-bottom: 62px;
  }

  .home-early-content {
    padding: 40px 36px;
  }

  .home-early-actions {
    margin-top: 24px;
  }

  .home-early-btn {
    min-width: 270px;
  }

  .how-it-works-grid {
    margin-top: 48px;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .how-step-title {
    font-size: 1.02rem;
  }

  .how-step-text {
    font-size: 0.99rem;
    max-width: 278px;
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .feature-card {
    min-height: 206px;
    padding: 24px 22px 22px;
  }

  .feature-title {
    font-size: 1.4rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }

  .help-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .early-access-page {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .early-access-form {
    padding: 26px 24px;
  }

  .demo-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    gap: 12px;
  }

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

  .footer-shell {
    padding: 18px 62px 20px;
  }

  .footer-logo img {
    width: 230px;
  }

  .footer-copy {
    max-width: 430px;
    font-size: 0.94rem;
  }

  .footer-nav {
    gap: 30px;
  }

  .footer-link {
    font-size: 0.91rem;
  }

  .footer-legal {
    margin-top: 14px;
    font-size: 0.84rem;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
