:root {
  --app-height: 100dvh;
  --font-scale: 1;
  --accent-color: #22c5b2;
  --accent-soft: rgba(34, 197, 178, 0.13);
  --accent-focus: rgba(34, 197, 178, 0.18);
  --accent-ink: #02110e;
  --private-bg: #111715;
  --private-panel: rgba(22, 29, 26, 0.96);
  --private-card: rgba(247, 242, 235, 0.075);
  --private-card-strong: rgba(247, 242, 235, 0.12);
  --private-border: rgba(247, 242, 235, 0.13);
  --private-border-strong: rgba(175, 249, 238, 0.28);
  --private-text: rgba(255, 250, 242, 0.92);
  --private-muted: rgba(247, 242, 235, 0.62);
  --private-faint: rgba(247, 242, 235, 0.42);
  --private-input: rgba(255, 255, 255, 0.07);
  --private-shadow: rgba(0, 0, 0, 0.46);
  color-scheme: light dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #f7f7f7;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[data-font-size='compact'] {
  --font-scale: 0.94;
}

html[data-font-size='large'] {
  --font-scale: 1.08;
}

html[data-theme-color='green'] {
  --accent-color: #5bf0a3;
  --accent-soft: rgba(91, 240, 163, 0.14);
  --accent-focus: rgba(91, 240, 163, 0.2);
  --accent-ink: #03130c;
}

html[data-theme-color='pink'] {
  --accent-color: #e73673;
  --accent-soft: rgba(231, 54, 115, 0.14);
  --accent-focus: rgba(231, 54, 115, 0.14);
  --accent-ink: #fff7fb;
}

html[data-theme-color='slate'] {
  --accent-color: #c4caca;
  --accent-soft: rgba(196, 202, 202, 0.14);
  --accent-focus: rgba(51, 65, 85, 0.14);
  --accent-ink: #070808;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  height: 100vh;
  height: var(--app-height);
  min-height: var(--app-height);
  overflow: hidden;
  background: #000;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: contain;
}

html[data-app-surface='private'],
body[data-app-surface='private'] {
  background: var(--private-bg);
}

html[data-app-surface='calculator'],
body[data-app-surface='calculator'] {
  background: #000;
  touch-action: none;
}

#root {
  height: 100vh;
  height: var(--app-height);
  min-height: var(--app-height);
  overflow: hidden;
  font-size: calc(16px * var(--font-scale));
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-logo-mark {
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  -webkit-user-drag: none;
  user-select: none;
}

.calculator-screen {
  display: flex;
  height: 100vh;
  height: var(--app-height);
  min-height: var(--app-height);
  flex-direction: column;
  overflow-y: auto;
  background: #000;
  color: #fff;
  padding: max(env(safe-area-inset-top), 12px) 0 max(env(safe-area-inset-bottom), 10px);
  overscroll-behavior: contain;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  -webkit-user-select: none;
}

.status-spacer {
  min-height: 14px;
  flex: 0 0 auto;
}

.calculator {
  display: flex;
  width: min(100vw, 430px);
  min-height: calc(var(--app-height) - max(env(safe-area-inset-top), 12px) - max(env(safe-area-inset-bottom), 10px) - 14px);
  margin: 0 auto;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 16px;
}

.calculator-display {
  display: flex;
  min-height: clamp(112px, 27dvh, 240px);
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 10px 18px;
  font-size: clamp(56px, 18vw, 82px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: right;
  white-space: nowrap;
}

.calculator-keypad {
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
}

.calculator-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.calculator-key {
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(27px, 8vw, 34px);
  font-weight: 500;
  line-height: 1;
  touch-action: manipulation;
  transition:
    transform 120ms ease,
    filter 120ms ease;
}

.calculator-key:active {
  transform: scale(0.96);
  filter: brightness(1.18);
}

.calculator-key.digit {
  background: #2f3032;
}

.calculator-key.utility {
  background: #a6a6aa;
  color: #050505;
}

.calculator-key.operation {
  background: #ff9f25;
}

.calculator-key.wide {
  aspect-ratio: auto;
  grid-column: span 2;
  justify-content: flex-start;
  padding-left: 30%;
}

.private-screen {
  display: flex;
  height: 100vh;
  height: var(--app-height);
  min-height: var(--app-height);
  flex-direction: column;
  overflow-y: auto;
  background: #f2f3f5;
  color: #15171c;
  padding-top: max(env(safe-area-inset-top), 8px);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.private-header {
  position: relative;
  z-index: 120;
  display: grid;
  flex: 0 0 auto;
  min-height: 48px;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.92);
  backdrop-filter: blur(22px);
}

.private-header h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.header-title {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.header-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-logo-mark {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(34, 197, 178, 0.32);
  box-shadow: 0 0 18px rgba(34, 197, 178, 0.18);
}

.header-version {
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: 6px;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: #1b1d22;
  font-size: 20px;
}

.header-action {
  justify-self: end;
  margin-right: 6px;
  margin-left: 0;
  color: var(--accent-color);
}

.header-menu-wrap {
  position: relative;
  justify-self: end;
}

.header-menu {
  position: fixed;
  top: calc(max(env(safe-area-inset-top), 8px) + 48px);
  right: 10px;
  z-index: 130;
  display: grid;
  width: 172px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 24, 31, 0.18);
}

.header-menu button {
  min-height: 44px;
  background: #fff;
  color: #1d2027;
  padding: 0 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
}

.header-menu button + button {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.header-menu .danger-menu-item {
  color: #c02323;
}

.auth-panel,
.form-panel {
  display: flex;
  width: min(100% - 28px, 420px);
  max-height: calc(var(--app-height) - max(env(safe-area-inset-top), 8px) - max(env(safe-area-inset-bottom), 10px) - 76px);
  margin: 16px auto;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(30, 34, 43, 0.08);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.auth-panel {
  align-items: center;
  text-align: center;
}

.auth-mark {
  display: grid;
  width: 78px;
  height: 78px;
  overflow: hidden;
  place-items: center;
  border-radius: 24px;
  background: #111827;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.auth-logo-mark {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.auth-copy h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.12;
}

.auth-copy p,
.form-panel p,
.friend-form p,
.empty-state p {
  margin: 0;
  color: #6f7480;
  font-size: 14px;
  line-height: 1.45;
}

.primary-button,
.secondary-button,
.danger-button {
  min-height: 48px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}

.secondary-button {
  width: 100%;
  background: #eef0f4;
  color: #1c1f25;
}

.primary-button {
  background: var(--accent-color);
  color: #fff;
}

.danger-button {
  width: 100%;
  background: #fff0f0;
  color: #c02323;
}

.auth-form {
  display: grid;
  width: 100%;
  gap: 10px;
  text-align: left;
}

.auth-form label {
  color: #2b3038;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  height: 48px;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  outline: none;
  background: #f7f8fa;
  color: #17191f;
  padding: 0 14px;
  font-size: 16px;
}

.auth-form input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px var(--accent-focus);
}

.auth-actions {
  display: grid;
  width: 100%;
  gap: 10px;
}

.text-button {
  min-height: 36px;
  border-radius: 8px;
  background: transparent;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
}

.form-panel label,
.friend-form label {
  color: #2b3038;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-panel input,
.friend-form input,
.composer input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  background: #f7f8fa;
  color: #17191f;
}

.form-panel input,
.friend-form input {
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 16px;
}

.form-panel input:focus,
.friend-form input:focus,
.composer input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px var(--accent-focus);
}

.form-panel.compact {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

.error-text {
  margin: 0;
  color: #c92525;
  font-size: 13px;
  line-height: 1.4;
}

.notice-text {
  margin: 0;
  color: #147a38;
  font-size: 13px;
  line-height: 1.4;
}

.entitlement-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #f7f8fa;
  padding: 12px 14px;
}

.entitlement-notice strong {
  display: block;
  color: #1d2027;
  font-size: 13px;
}

.entitlement-notice p {
  margin: 4px 0 0;
  color: #6f7682;
  font-size: 12px;
  line-height: 1.45;
}

.entitlement-notice a {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.private-home {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

.private-content {
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.tab-bar {
  display: grid;
  position: sticky;
  bottom: 0;
  z-index: 20;
  flex: 0 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.95);
  padding: 6px 12px max(env(safe-area-inset-bottom), 6px);
  backdrop-filter: blur(22px);
}

.tab-bar button {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  color: #777d89;
  font-size: 11px;
  font-weight: 700;
  gap: 3px;
}

.tab-bar button.active {
  color: var(--accent-color);
}

.tab-bar svg {
  font-size: 22px;
}

.tab-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.tab-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid rgba(250, 250, 252, 0.95);
  border-radius: 999px;
  background: #d82f2f;
  color: #fff;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.chat-layout,
.chat-list-layout {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.chat-list-layout {
  min-height: 0;
  overflow-y: auto;
  padding: 16px 14px calc(28px + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.chat-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #fff;
}

.chat-list + .chat-list {
  margin-top: 12px;
}

.chat-list-actions {
  display: grid;
  margin-bottom: 12px;
}

.chat-list-actions button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.chat-list-actions button:disabled {
  opacity: 0.55;
}

.chat-list-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  padding: 13px 14px;
  text-align: left;
}

.chat-list-row:last-child {
  border-bottom: 0;
}

.chat-list-row > div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.chat-list-row strong {
  overflow: hidden;
  color: #1d2027;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-list-row span {
  overflow: hidden;
  color: #7d838e;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-list-row .chat-preview.has-message {
  color: #5f6673;
}

.chat-list-row svg {
  color: #78808d;
  font-size: 22px;
}

.group-chat-row .avatar svg,
.group-request-row .avatar svg {
  width: 21px;
  height: 21px;
}

.chat-row-action {
  display: inline-flex;
  min-width: 48px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.unread-badge {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.chat-list-row .unread-badge {
  color: #fff;
}

.conversation-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.95);
  padding: 10px 14px;
}

.conversation-header button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #eef0f4;
  color: var(--accent-color);
}

.conversation-header .conversation-action {
  background: var(--accent-color);
  color: #fff;
}

.conversation-header div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.conversation-header strong {
  overflow: hidden;
  color: #17191f;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-header span {
  color: #7d838e;
  font-size: 12px;
}

.conversation-header .conversation-title-button {
  display: grid;
  width: auto;
  height: auto;
  min-width: 0;
  place-items: start;
  gap: 2px;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.conversation-header .conversation-title-button:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.group-members-modal {
  align-content: start;
}

.group-member-list {
  display: grid;
  gap: 8px;
}

.group-member-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #f7f8fb;
  padding: 10px;
}

.group-member-row > div:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.group-member-row strong {
  overflow: hidden;
  color: #17191f;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.group-member-row span {
  color: #7d838e;
  font-size: 12px;
}

.friend-picker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.95);
  padding: 10px 14px;
}

.friend-picker label {
  color: #717784;
  font-size: 13px;
  font-weight: 800;
}

.friend-picker select {
  min-width: 0;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #17191f;
  padding: 0 10px;
  font: inherit;
}

.inline-friend-picker {
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 0;
  background: transparent;
  padding: 0;
}

.inline-friend-picker select {
  height: 48px;
  border-radius: 10px;
}

.messages {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 18px 14px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.messages .entitlement-notice {
  flex: 0 0 auto;
}

.message-bubble {
  max-width: min(78%, 320px);
  align-self: flex-start;
}

.message-bubble.mine {
  align-self: flex-end;
}

.message-bubble p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff;
  color: #17191f;
  font-size: 15px;
  line-height: 1.35;
}

.message-media {
  display: block;
  overflow: hidden;
  width: min(100%, 260px);
  margin-bottom: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
}

.message-media img,
.message-media video {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.message-bubble.mine p {
  background: var(--accent-color);
  color: #fff;
}

.message-bubble time {
  display: block;
  margin-top: 4px;
  padding: 0 4px;
  color: #838895;
  font-size: 11px;
  text-align: right;
}

.composer {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.95);
  padding: 12px;
}

.composer .media-input {
  display: none;
}

.composer input {
  min-height: 42px;
  flex: 1;
  border-radius: 20px;
  padding: 0 14px;
  font-size: 16px;
}

.composer button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  font-size: 22px;
}

.composer .media-button {
  background: rgba(0, 0, 0, 0.06);
  color: #17191f;
}

.friends-layout {
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  padding: 16px 14px calc(28px + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.profile-layout {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding: 16px 14px calc(18px + env(safe-area-inset-bottom));
}

.friend-notice {
  margin: 0 0 12px;
}

.friends-layout > .entitlement-notice {
  margin-bottom: 12px;
}

.friend-form,
.friend-list,
.friend-requests,
.profile-card {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #fff;
}

.friend-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.inline-form button {
  display: grid;
  min-width: 86px;
  min-height: 48px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.friend-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  overflow: visible;
}

.friend-list:first-child,
.friend-notice + .friend-list {
  margin-top: 0;
}

.friend-requests {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
}

.section-heading span {
  color: #2b3038;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.section-heading strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  padding: 0 7px;
  font-size: 12px;
}

.friend-row {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.friend-request-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.friend-row:has(.friend-action-menu) {
  z-index: 35;
}

.friend-row:last-child {
  border-bottom: 0;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #e8edf6;
  color: #3a4961;
  font-weight: 800;
}

.friend-row div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.friend-request-row > div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.friend-row strong {
  overflow: hidden;
  color: #1d2027;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friend-request-row strong {
  overflow-wrap: anywhere;
  color: #1d2027;
  font-size: 15px;
}

.friend-row span {
  overflow: hidden;
  color: #7d838e;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friend-request-row span {
  color: #7d838e;
  font-size: 12px;
}

.request-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.request-actions button {
  min-height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.accept-button {
  background: var(--accent-color);
  color: #fff;
}

.reject-button {
  background: #eef0f4;
  color: #2b3038;
}

.friend-row button {
  border-radius: 8px;
  background: #fff0f0;
  color: #c02323;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.friend-row-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.friend-row .friend-chat-button,
.friend-row .friend-menu-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  padding: 0;
}

.friend-row .friend-chat-button {
  background: var(--accent-soft);
  color: var(--accent-color);
  font-size: 20px;
}

.friend-row .friend-menu-button {
  background: transparent;
  color: #6f7480;
  font-size: 22px;
}

.friend-action-menu {
  position: absolute;
  top: 48px;
  right: 12px;
  z-index: 30;
  display: grid;
  width: 136px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 24, 31, 0.18);
}

.friend-action-menu button {
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: #1d2027;
  padding: 12px 14px;
  text-align: left;
}

.friend-action-menu button + button {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  color: #c02323;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  background: rgba(18, 22, 30, 0.32);
  padding: max(env(safe-area-inset-top), 18px) 18px max(env(safe-area-inset-bottom), 18px);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mini-modal {
  display: grid;
  width: min(100%, 360px);
  max-height: calc(var(--app-height) - max(env(safe-area-inset-top), 18px) - max(env(safe-area-inset-bottom), 18px) - 24px);
  overflow-y: auto;
  gap: 14px;
  margin: auto 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 22px 72px rgba(20, 24, 31, 0.24);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.friend-add-modal {
  align-content: start;
}

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

.modal-header h2 {
  margin: 0;
  color: #17191f;
  font-size: 18px;
  line-height: 1.2;
}

.modal-header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #eef0f4;
  color: #2b3038;
  font-size: 22px;
}

.mini-modal label {
  color: #2b3038;
  font-size: 13px;
  font-weight: 800;
}

.mini-modal input,
.mini-modal select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  outline: none;
  background: #f7f8fa;
  color: #17191f;
  padding: 0 14px;
  font-size: 16px;
}

.mini-modal select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 20px,
    calc(100% - 14px) 20px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 38px;
}

.settings-modal {
  gap: 16px;
}

.settings-group {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.settings-group legend {
  margin-bottom: 10px;
  color: #2b3038;
  font-size: 13px;
  font-weight: 800;
}

.settings-options,
.color-options {
  display: grid;
  gap: 8px;
}

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

.settings-options.language-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: min(42vh, 360px);
  overflow-y: auto;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
}

.settings-select {
  font-weight: 800;
}

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

.settings-option,
.color-option {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #2b3038;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 800;
}

.settings-option.active,
.color-option.active {
  border-color: var(--accent-color);
  background: var(--accent-soft);
  color: var(--accent-color);
}

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

.color-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}

.color-swatch {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
}

.color-swatch.blue {
  background: #1b6cf0;
}

.color-swatch.green {
  background: #0f9f6e;
}

.color-swatch.pink {
  background: #e73673;
}

.color-swatch.slate {
  background: #334155;
}

.search-result-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  border-radius: 8px;
  background: #f7f8fa;
  padding: 12px;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-result-row strong,
.search-result-row span {
  display: block;
}

.search-result-row strong {
  color: #1d2027;
  font-size: 16px;
}

.search-result-row span,
.modal-copy {
  margin: 0;
  color: #6f7480;
  font-size: 13px;
  line-height: 1.4;
}

.warning-text {
  margin: 0;
  border-radius: 8px;
  background: #fff0f0;
  color: #a51d1d;
  padding: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.search-result-row button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.profile-scroll-area {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.profile-card {
  display: grid;
  overflow: hidden;
}

.profile-card > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.profile-card > .profile-action-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.profile-card > .profile-plan-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.profile-plan-row > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.profile-plan-row .small-action-button {
  min-height: 36px;
  white-space: nowrap;
}

.profile-card > div:last-child {
  border-bottom: 0;
}

.profile-row-main {
  display: grid;
  min-width: 0;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.plan-checkout-modal {
  position: relative;
  width: min(100%, 470px);
  overflow: hidden;
  border-color: rgba(175, 249, 238, 0.16);
  background:
    radial-gradient(circle at 76% 10%, rgba(34, 197, 178, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.085), rgba(247, 242, 235, 0.035)),
    rgba(9, 13, 12, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.08),
    0 34px 100px rgba(0, 0, 0, 0.56);
}

.plan-checkout-modal .modal-header {
  align-items: start;
}

.plan-checkout-hero {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.plan-checkout-hero > span {
  color: rgba(34, 197, 178, 0.9);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.1em;
}

.plan-checkout-hero h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.plan-checkout-hero p {
  margin: 0;
  color: rgba(247, 242, 235, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.plan-billing-option {
  display: grid;
  position: relative;
  min-height: 56px;
  align-content: center;
  justify-items: center;
  gap: 2px;
  overflow: visible;
  border-radius: 16px;
}

.plan-billing-option span {
  color: inherit;
  font-size: 14px;
  font-weight: 860;
}

.plan-billing-option small {
  color: rgba(247, 242, 235, 0.5);
  font-size: 11px;
  font-weight: 720;
}

.plan-billing-option strong {
  position: absolute;
  top: -9px;
  right: 10px;
  display: inline-grid;
  min-height: 20px;
  place-items: center;
  border: 1px solid rgba(175, 249, 238, 0.46);
  border-radius: 999px;
  background: #22c5b2;
  color: #021210;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 920;
  box-shadow:
    0 0 0 1px rgba(175, 249, 238, 0.16),
    0 10px 24px rgba(34, 197, 178, 0.26);
}

.plan-checkout-grid {
  display: grid;
  gap: 14px;
}

.plan-checkout-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.075), rgba(247, 242, 235, 0.028)),
    rgba(247, 242, 235, 0.035);
  padding: 18px 16px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.06),
    0 20px 56px rgba(0, 0, 0, 0.2);
}

.plan-checkout-card.featured {
  border-color: rgba(91, 240, 221, 0.55);
  background:
    linear-gradient(138deg, rgba(34, 197, 178, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.1), rgba(247, 242, 235, 0.035));
  box-shadow:
    inset 0 0 0 1px rgba(175, 249, 238, 0.1),
    0 24px 70px rgba(0, 0, 0, 0.26),
    0 0 60px rgba(34, 197, 178, 0.12);
}

.plan-checkout-card.featured::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, rgba(175, 249, 238, 0.13) 42%, transparent 60%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), transparent 34%);
  opacity: 0.55;
  pointer-events: none;
  content: "";
}

.plan-checkout-card h3,
.plan-checkout-card p,
.plan-checkout-card ul {
  margin: 0;
}

.plan-checkout-card-top,
.plan-checkout-price-zone,
.plan-checkout-card ul,
.plan-checkout-actions {
  position: relative;
  z-index: 1;
}

.plan-checkout-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-checkout-card h3 {
  color: #fffaf2;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.plan-checkout-badge {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  border: 1px solid rgba(247, 242, 235, 0.13);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.065);
  color: rgba(247, 242, 235, 0.72);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 840;
  white-space: nowrap;
}

.plan-checkout-card.featured .plan-checkout-badge {
  border-color: rgba(175, 249, 238, 0.36);
  background: rgba(34, 197, 178, 0.14);
  color: rgba(175, 249, 238, 0.95);
}

.plan-checkout-price-zone {
  display: grid;
  gap: 8px;
  animation: landing-price-reveal 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.plan-checkout-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  color: #fffaf2;
  font-size: 34px;
  font-weight: 820;
  line-height: 1;
}

.plan-checkout-price span {
  color: rgba(247, 242, 235, 0.56);
  font-size: 13px;
  font-weight: 740;
}

.plan-checkout-yearly {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  color: rgba(247, 242, 235, 0.56);
  font-size: 12px;
  font-weight: 760;
}

.plan-checkout-yearly del {
  color: rgba(247, 242, 235, 0.38);
  text-decoration-color: rgba(247, 242, 235, 0.58);
  text-decoration-thickness: 2px;
}

.plan-checkout-yearly strong {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(34, 197, 178, 0.26);
  border-radius: 999px;
  background: rgba(34, 197, 178, 0.11);
  color: rgba(175, 249, 238, 0.92);
  padding: 0 8px;
  font-size: 12px;
  font-weight: 860;
}

.plan-checkout-note {
  color: rgba(247, 242, 235, 0.52);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.plan-checkout-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  color: rgba(247, 242, 235, 0.72);
  font-size: 13px;
  line-height: 1.42;
  list-style: none;
}

.plan-checkout-card li {
  position: relative;
  padding-left: 18px;
}

.plan-checkout-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c5b2;
  content: "";
}

.plan-checkout-actions {
  display: grid;
  gap: 11px;
}

.plan-checkout-card .primary-button {
  min-height: 48px;
  border-radius: 999px;
  background: #22c5b2;
  color: #021210;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(34, 197, 178, 0.2);
}

.plan-checkout-card.featured .primary-button {
  background: #fffaf2;
  color: #070809;
  box-shadow:
    0 12px 34px rgba(255, 250, 242, 0.14),
    0 0 38px rgba(34, 197, 178, 0.18);
}

html[data-app-surface='private'] .mini-modal.plan-checkout-modal {
  border-color: rgba(175, 249, 238, 0.16);
  background:
    radial-gradient(circle at 76% 10%, rgba(34, 197, 178, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.085), rgba(247, 242, 235, 0.035)),
    rgba(9, 13, 12, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.08),
    0 34px 100px rgba(0, 0, 0, 0.56);
}

html[data-app-surface='private'] .plan-checkout-modal .plan-checkout-card {
  border-color: rgba(247, 242, 235, 0.13);
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.075), rgba(247, 242, 235, 0.028)),
    rgba(247, 242, 235, 0.035);
}

html[data-app-surface='private'] .plan-checkout-modal .plan-checkout-card.featured {
  border-color: rgba(91, 240, 221, 0.55);
  background:
    linear-gradient(138deg, rgba(34, 197, 178, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.1), rgba(247, 242, 235, 0.035));
}

html[data-app-surface='private'] .plan-checkout-hero > span,
html[data-app-surface='private'] .plan-checkout-badge,
html[data-app-surface='private'] .plan-checkout-yearly strong {
  color: rgba(175, 249, 238, 0.94);
}

html[data-app-surface='private'] .plan-checkout-hero p,
html[data-app-surface='private'] .plan-billing-option small,
html[data-app-surface='private'] .plan-checkout-note,
html[data-app-surface='private'] .plan-checkout-card ul {
  color: rgba(247, 242, 235, 0.64);
}

.profile-card span {
  color: #7d838e;
  font-size: 14px;
}

.profile-card strong {
  overflow-wrap: anywhere;
  color: #17191f;
  font-size: 15px;
}

.install-icon-card {
  gap: 10px;
  padding: 14px;
}

.profile-card.install-icon-card > div,
.profile-card.install-icon-card > div:last-child {
  border-bottom: 0;
  padding: 0;
}

.install-icon-heading {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.install-icon-heading strong {
  font-size: 15px;
}

.install-icon-note {
  margin: 0;
  color: #7d838e;
  font-size: 12px;
  line-height: 1.45;
}

.install-icon-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding: 1px 0 2px;
}

.install-icon-option {
  display: grid;
  grid-template-rows: 34px auto;
  gap: 5px;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-width: 0;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #f7f8fa;
  padding: 7px 6px;
  color: #2b3038;
  text-align: center;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.install-icon-option.active {
  border-color: var(--accent-color);
  background: rgba(34, 197, 178, 0.08);
  box-shadow: 0 0 0 2px var(--accent-soft);
  transform: translateY(-1px);
}

.install-icon-option img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.install-icon-option span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.install-icon-option small {
  display: none;
  color: #7d838e;
  font-size: 10px;
  line-height: 1.25;
}

.install-icon-open-button {
  display: grid;
  width: 100%;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(34, 197, 178, 0.32);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.install-tutorial-video {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #f7f8fa;
}

.install-tutorial-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050607;
}

.install-tutorial-video div {
  display: grid;
  gap: 4px;
  padding: 0 12px 12px;
}

.install-tutorial-video strong {
  color: #17191f;
  font-size: 13px;
}

.install-tutorial-video p {
  margin: 0;
  color: #7d838e;
  font-size: 12px;
  line-height: 1.45;
}

.install-entry-page {
  display: grid;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(34, 197, 178, 0.18), transparent 36%),
    #050607;
  overflow-y: auto;
  padding: max(env(safe-area-inset-top), 24px) 18px max(env(safe-area-inset-bottom), 24px);
  -webkit-overflow-scrolling: touch;
}

.install-entry-card {
  display: grid;
  width: min(100%, 360px);
  justify-items: center;
  gap: 14px;
  border: 1px solid rgba(247, 242, 235, 0.16);
  border-radius: 28px;
  background: linear-gradient(rgba(247, 242, 235, 0.1), rgba(247, 242, 235, 0.04));
  padding: 28px 22px;
  text-align: center;
  box-shadow:
    inset 0 1px rgba(255, 250, 242, 0.08),
    0 32px 100px rgba(0, 0, 0, 0.48);
}

.install-entry-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.install-entry-card span {
  color: rgba(34, 197, 178, 0.92);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-entry-card h1 {
  margin: 0;
  color: #fffaf2;
  font-size: 34px;
  line-height: 1.08;
}

.install-entry-card p {
  margin: 0;
  color: rgba(247, 242, 235, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.install-entry-steps {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
  text-align: left;
}

.install-entry-steps li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(247, 242, 235, 0.74);
  font-size: 14px;
  line-height: 1.45;
  counter-increment: install-step;
}

.install-entry-steps li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(34, 197, 178, 0.3);
  border-radius: 999px;
  background: rgba(34, 197, 178, 0.12);
  color: rgba(175, 249, 238, 0.96);
  content: counter(install-step);
  font-size: 12px;
  font-weight: 850;
}

.small-action-button {
  display: grid;
  min-width: 64px;
  min-height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-color);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.small-action-button:disabled {
  opacity: 0.55;
}

.cost-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

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

.cost-panel-header div {
  display: grid;
  gap: 3px;
}

.cost-panel-header span,
.metric-card span {
  color: #7d838e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cost-panel-header strong {
  color: #17191f;
  font-size: 20px;
}

.cost-panel-header button {
  border-radius: 8px;
  background: #eef0f4;
  color: #2b3038;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

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

.metric-card {
  display: grid;
  min-width: 0;
  gap: 4px;
  border-radius: 8px;
  background: #f7f8fa;
  padding: 10px;
}

.metric-card strong {
  overflow-wrap: anywhere;
  color: #17191f;
  font-size: 17px;
}

.admin-version-panel {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  background: #f1f6ff;
  padding: 12px;
}

.admin-version-panel > div {
  display: grid;
  min-width: 0;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.admin-version-panel span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.admin-version-panel strong {
  overflow-wrap: anywhere;
  color: #172033;
  font-size: 13px;
}

.cost-panel p {
  margin: 0;
  color: #6f7480;
  font-size: 12px;
  line-height: 1.45;
}

.empty-state {
  display: grid;
  width: 100%;
  min-height: 210px;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #757b87;
  text-align: center;
}

.empty-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: #e9ecf2;
  color: #8a91a0;
  font-size: 25px;
}

.empty-state strong {
  color: #3f4550;
  font-size: 16px;
}

html[data-font-size='compact'] .private-header h1 {
  font-size: 16px;
}

html[data-font-size='compact'] .chat-list-row strong,
html[data-font-size='compact'] .friend-row strong,
html[data-font-size='compact'] .friend-request-row strong,
html[data-font-size='compact'] .conversation-header strong,
html[data-font-size='compact'] .profile-card strong,
html[data-font-size='compact'] .message-bubble p {
  font-size: 14px;
}

html[data-font-size='compact'] .chat-list-row span,
html[data-font-size='compact'] .friend-row span,
html[data-font-size='compact'] .friend-request-row span,
html[data-font-size='compact'] .conversation-header span {
  font-size: 11px;
}

html[data-font-size='large'] .private-header h1 {
  font-size: 18px;
}

html[data-font-size='large'] .chat-list-row strong,
html[data-font-size='large'] .friend-row strong,
html[data-font-size='large'] .friend-request-row strong,
html[data-font-size='large'] .conversation-header strong,
html[data-font-size='large'] .profile-card strong,
html[data-font-size='large'] .message-bubble p {
  font-size: 17px;
}

html[data-font-size='large'] .chat-list-row span,
html[data-font-size='large'] .friend-row span,
html[data-font-size='large'] .friend-request-row span,
html[data-font-size='large'] .conversation-header span,
html[data-font-size='large'] .profile-card span,
html[data-font-size='large'] .modal-copy {
  font-size: 14px;
}

html[data-font-size='large'] .tab-bar button {
  font-size: 13px;
}

html[data-app-surface='private'] .private-screen {
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.035), transparent 280px),
    var(--private-bg);
  color: var(--private-text);
}

html[data-app-surface='private'] .private-header,
html[data-app-surface='private'] .tab-bar,
html[data-app-surface='private'] .conversation-header,
html[data-app-surface='private'] .friend-picker,
html[data-app-surface='private'] .composer {
  border-color: var(--private-border);
  background: rgba(13, 18, 16, 0.9);
  color: var(--private-text);
}

html[data-app-surface='private'] .private-header h1,
html[data-app-surface='private'] .icon-button,
html[data-app-surface='private'] .auth-copy h2,
html[data-app-surface='private'] .chat-list-row strong,
html[data-app-surface='private'] .conversation-header strong,
html[data-app-surface='private'] .friend-row strong,
html[data-app-surface='private'] .friend-request-row strong,
html[data-app-surface='private'] .plan-checkout-card h3,
html[data-app-surface='private'] .plan-checkout-price,
html[data-app-surface='private'] .profile-card strong,
html[data-app-surface='private'] .cost-panel-header strong,
html[data-app-surface='private'] .metric-card strong,
html[data-app-surface='private'] .empty-state strong,
html[data-app-surface='private'] .modal-header h2,
html[data-app-surface='private'] .search-result-row strong {
  color: var(--private-text);
}

html[data-app-surface='private'] .auth-copy p,
html[data-app-surface='private'] .form-panel p,
html[data-app-surface='private'] .friend-form p,
html[data-app-surface='private'] .empty-state p,
html[data-app-surface='private'] .chat-list-row span,
html[data-app-surface='private'] .conversation-header span,
html[data-app-surface='private'] .friend-row span,
html[data-app-surface='private'] .friend-request-row span,
html[data-app-surface='private'] .plan-checkout-card ul,
html[data-app-surface='private'] .plan-checkout-price span,
html[data-app-surface='private'] .plan-checkout-note,
html[data-app-surface='private'] .profile-card span,
html[data-app-surface='private'] .modal-copy,
html[data-app-surface='private'] .search-result-row span,
html[data-app-surface='private'] .cost-panel p,
html[data-app-surface='private'] .cost-panel-header span,
html[data-app-surface='private'] .metric-card span,
html[data-app-surface='private'] .admin-version-panel span,
html[data-app-surface='private'] .entitlement-notice p,
html[data-app-surface='private'] .friend-picker label,
html[data-app-surface='private'] .message-bubble time {
  color: var(--private-muted);
}

html[data-app-surface='private'] .auth-panel,
html[data-app-surface='private'] .form-panel,
html[data-app-surface='private'] .friend-form,
html[data-app-surface='private'] .friend-list,
html[data-app-surface='private'] .friend-requests,
html[data-app-surface='private'] .profile-card,
html[data-app-surface='private'] .cost-panel,
html[data-app-surface='private'] .chat-list,
html[data-app-surface='private'] .mini-modal,
html[data-app-surface='private'] .header-menu,
html[data-app-surface='private'] .friend-action-menu,
html[data-app-surface='private'] .entitlement-notice {
  border-color: var(--private-border);
  background: var(--private-panel);
  box-shadow: 0 20px 54px var(--private-shadow);
}

html[data-app-surface='private'] .chat-list-row,
html[data-app-surface='private'] .friend-row,
html[data-app-surface='private'] .friend-request-row,
html[data-app-surface='private'] .search-result-row,
html[data-app-surface='private'] .plan-checkout-card,
html[data-app-surface='private'] .metric-card,
html[data-app-surface='private'] .admin-version-panel {
  border-color: var(--private-border);
  background: var(--private-card);
}

html[data-app-surface='private'] .plan-checkout-card.featured {
  border-color: var(--accent-color);
}

html[data-app-surface='private'] .chat-list-row .chat-preview.has-message {
  color: rgba(247, 242, 235, 0.74);
}

html[data-app-surface='private'] .message-media {
  border-color: var(--private-border);
  background: rgba(247, 242, 235, 0.04);
}

html[data-app-surface='private'] .header-menu button,
html[data-app-surface='private'] .friend-action-menu button {
  border-color: var(--private-border);
  background: rgba(8, 11, 10, 0.96);
  color: var(--private-text);
}

html[data-app-surface='private'] .auth-form label,
html[data-app-surface='private'] .form-panel label,
html[data-app-surface='private'] .friend-form label,
html[data-app-surface='private'] .mini-modal label,
html[data-app-surface='private'] .settings-group legend,
html[data-app-surface='private'] .section-heading span {
  color: rgba(175, 249, 238, 0.78);
}

html[data-app-surface='private'] .auth-form input,
html[data-app-surface='private'] .form-panel input,
html[data-app-surface='private'] .friend-form input,
html[data-app-surface='private'] .mini-modal input,
html[data-app-surface='private'] .mini-modal select,
html[data-app-surface='private'] .composer input,
html[data-app-surface='private'] .friend-picker select {
  border-color: var(--private-border);
  background: var(--private-input);
  color: var(--private-text);
}

html[data-app-surface='private'] .auth-form input::placeholder,
html[data-app-surface='private'] .form-panel input::placeholder,
html[data-app-surface='private'] .friend-form input::placeholder,
html[data-app-surface='private'] .mini-modal input::placeholder,
html[data-app-surface='private'] .composer input::placeholder {
  color: var(--private-faint);
}

html[data-app-surface='private'] .primary-button,
html[data-app-surface='private'] .inline-form button,
html[data-app-surface='private'] .chat-list-actions button,
html[data-app-surface='private'] .conversation-header .conversation-action,
html[data-app-surface='private'] .composer button,
html[data-app-surface='private'] .accept-button,
html[data-app-surface='private'] .section-heading strong,
html[data-app-surface='private'] .search-result-row button,
html[data-app-surface='private'] .message-bubble.mine p,
html[data-app-surface='private'] .entitlement-notice a,
html[data-app-surface='private'] .unread-badge {
  background: linear-gradient(135deg, var(--accent-color), #18a896);
  color: var(--accent-ink);
  box-shadow: 0 10px 26px rgba(34, 197, 178, 0.18);
}

html[data-app-surface='private'] .composer .media-button {
  border: 1px solid var(--private-border);
  background: rgba(247, 242, 235, 0.05);
  color: var(--private-muted);
  box-shadow: none;
}

html[data-app-surface='private'][data-theme-color='pink'] .primary-button,
html[data-app-surface='private'][data-theme-color='pink'] .inline-form button,
html[data-app-surface='private'][data-theme-color='pink'] .chat-list-actions button,
html[data-app-surface='private'][data-theme-color='pink'] .conversation-header .conversation-action,
html[data-app-surface='private'][data-theme-color='pink'] .composer button,
html[data-app-surface='private'][data-theme-color='pink'] .accept-button,
html[data-app-surface='private'][data-theme-color='pink'] .section-heading strong,
html[data-app-surface='private'][data-theme-color='pink'] .search-result-row button,
html[data-app-surface='private'][data-theme-color='pink'] .message-bubble.mine p,
html[data-app-surface='private'][data-theme-color='pink'] .entitlement-notice a,
html[data-app-surface='private'][data-theme-color='pink'] .unread-badge {
  background: var(--accent-color);
}

html[data-app-surface='private'][data-theme-color='slate'] .primary-button,
html[data-app-surface='private'][data-theme-color='slate'] .inline-form button,
html[data-app-surface='private'][data-theme-color='slate'] .chat-list-actions button,
html[data-app-surface='private'][data-theme-color='slate'] .conversation-header .conversation-action,
html[data-app-surface='private'][data-theme-color='slate'] .composer button,
html[data-app-surface='private'][data-theme-color='slate'] .accept-button,
html[data-app-surface='private'][data-theme-color='slate'] .section-heading strong,
html[data-app-surface='private'][data-theme-color='slate'] .search-result-row button,
html[data-app-surface='private'][data-theme-color='slate'] .message-bubble.mine p,
html[data-app-surface='private'][data-theme-color='slate'] .entitlement-notice a,
html[data-app-surface='private'][data-theme-color='slate'] .unread-badge {
  background: var(--accent-color);
}

html[data-app-surface='private'] .secondary-button,
html[data-app-surface='private'] .reject-button,
html[data-app-surface='private'] .conversation-header button,
html[data-app-surface='private'] .modal-header button {
  background: var(--private-card-strong);
  color: var(--private-text);
}

html[data-app-surface='private'] .conversation-header .conversation-title-button {
  background: transparent;
  color: var(--private-text);
}

html[data-app-surface='private'] .group-member-row {
  border-color: var(--private-border);
  background: var(--private-card);
}

html[data-app-surface='private'] .group-member-row strong {
  color: var(--private-text);
}

html[data-app-surface='private'] .group-member-row span {
  color: var(--private-muted);
}

html[data-app-surface='private'] .danger-button,
html[data-app-surface='private'] .friend-row button {
  background: rgba(255, 88, 88, 0.12);
  color: rgba(255, 150, 150, 0.94);
}

html[data-app-surface='private'] .header-menu .danger-menu-item,
html[data-app-surface='private'] .friend-action-menu button + button {
  color: rgba(255, 150, 150, 0.94);
}

html[data-app-surface='private'] .avatar,
html[data-app-surface='private'] .empty-icon {
  background: var(--accent-soft);
  color: rgba(175, 249, 238, 0.94);
}

html[data-app-surface='private'] .auth-mark {
  background: rgba(5, 6, 7, 0.92);
  box-shadow:
    0 0 0 1px rgba(175, 249, 238, 0.16),
    0 18px 40px rgba(0, 0, 0, 0.24);
}

html[data-app-surface='private'] .message-bubble p {
  background: rgba(247, 242, 235, 0.92);
  color: #111316;
}

html[data-app-surface='private'] .friend-row .friend-chat-button,
html[data-app-surface='private'] .small-action-button,
html[data-app-surface='private'] .install-icon-open-button,
html[data-app-surface='private'] .settings-option.active,
html[data-app-surface='private'] .color-option.active,
html[data-app-surface='private'] .header-version {
  border-color: var(--private-border-strong);
  background: var(--accent-soft);
  color: rgba(175, 249, 238, 0.96);
}

html[data-app-surface='private'] .settings-option,
html[data-app-surface='private'] .color-option,
html[data-app-surface='private'] .install-icon-option,
html[data-app-surface='private'] .install-tutorial-video {
  border-color: var(--private-border);
  background: var(--private-card);
  color: var(--private-text);
}

html[data-app-surface='private'] .install-icon-option.active {
  border-color: var(--private-border-strong);
  background: rgba(34, 197, 178, 0.12);
  box-shadow: 0 0 0 3px rgba(34, 197, 178, 0.12);
}

html[data-app-surface='private'] .install-icon-note,
html[data-app-surface='private'] .install-icon-option small,
html[data-app-surface='private'] .install-tutorial-video p {
  color: var(--private-muted);
}

html[data-app-surface='private'] .install-tutorial-video strong {
  color: var(--private-text);
}

html[data-app-surface='private'] .tab-bar button {
  color: var(--private-faint);
}

html[data-app-surface='private'] .tab-bar button.active {
  color: rgba(175, 249, 238, 0.96);
}

html[data-app-surface='private'] .tab-badge {
  border-color: rgba(5, 6, 7, 0.92);
}

html[data-app-surface='private'] .warning-text {
  background: rgba(255, 88, 88, 0.12);
  color: rgba(255, 170, 170, 0.95);
}

html[data-app-surface='private'] .notice-text {
  color: rgba(175, 249, 238, 0.92);
}

html[data-app-surface='private'] .error-text {
  color: rgba(255, 130, 130, 0.96);
}

html[data-app-surface='private'] .color-swatch.blue {
  background: #22c5b2;
}

html[data-app-surface='private'] .color-swatch.green {
  background: #5bf0a3;
}

html[data-app-surface='private'] .color-swatch.slate {
  background: #c4caca;
}

html[data-app-surface='private'] {
  --private-fs-2xs: 10px;
  --private-fs-xs: 11px;
  --private-fs-sm: 12px;
  --private-fs-base: 13px;
  --private-fs-md: 14px;
  --private-fs-lg: 15px;
  --private-fs-xl: 17px;
  --private-fs-2xl: 20px;
  --private-fs-3xl: 24px;
  --private-fs-icon: 22px;
}

html[data-app-surface='private'][data-font-size='compact'] {
  --private-fs-2xs: 9.5px;
  --private-fs-xs: 10px;
  --private-fs-sm: 11px;
  --private-fs-base: 12px;
  --private-fs-md: 13px;
  --private-fs-lg: 14px;
  --private-fs-xl: 16px;
  --private-fs-2xl: 18px;
  --private-fs-3xl: 22px;
  --private-fs-icon: 20px;
}

html[data-app-surface='private'][data-font-size='large'] {
  --private-fs-2xs: 11.5px;
  --private-fs-xs: 12.5px;
  --private-fs-sm: 14px;
  --private-fs-base: 15px;
  --private-fs-md: 16px;
  --private-fs-lg: 17px;
  --private-fs-xl: 20px;
  --private-fs-2xl: 23px;
  --private-fs-3xl: 28px;
  --private-fs-icon: 25px;
}

html[data-app-surface='private'] .private-header h1 {
  font-size: var(--private-fs-xl);
}

html[data-app-surface='private'] .header-version,
html[data-app-surface='private'] .tab-bar button,
html[data-app-surface='private'] .unread-badge {
  font-size: var(--private-fs-xs);
}

html[data-app-surface='private'] .icon-button,
html[data-app-surface='private'] .tab-bar svg,
html[data-app-surface='private'] .modal-header button,
html[data-app-surface='private'] .friend-menu-button,
html[data-app-surface='private'] .friend-chat-button,
html[data-app-surface='private'] .conversation-action,
html[data-app-surface='private'] .empty-icon {
  font-size: var(--private-fs-icon);
}

html[data-app-surface='private'] .auth-copy h2 {
  font-size: var(--private-fs-3xl);
}

html[data-app-surface='private'] .modal-header h2,
html[data-app-surface='private'] .install-tutorial-video strong {
  font-size: var(--private-fs-xl);
}

html[data-app-surface='private'] .primary-button,
html[data-app-surface='private'] .secondary-button,
html[data-app-surface='private'] .danger-button,
html[data-app-surface='private'] .small-action-button,
html[data-app-surface='private'] .install-icon-open-button,
html[data-app-surface='private'] .inline-form button,
html[data-app-surface='private'] .chat-list-actions button,
html[data-app-surface='private'] .settings-option,
html[data-app-surface='private'] .color-option,
html[data-app-surface='private'] .message-bubble p,
html[data-app-surface='private'] .chat-list-row strong,
html[data-app-surface='private'] .friend-row strong,
html[data-app-surface='private'] .friend-request-row strong,
html[data-app-surface='private'] .conversation-header strong,
html[data-app-surface='private'] .group-member-row strong,
html[data-app-surface='private'] .profile-card strong,
html[data-app-surface='private'] .metric-card strong,
html[data-app-surface='private'] .empty-state strong,
html[data-app-surface='private'] .section-heading strong {
  font-size: var(--private-fs-lg);
}

html[data-app-surface='private'] .auth-copy p,
html[data-app-surface='private'] .form-panel p,
html[data-app-surface='private'] .friend-form p,
html[data-app-surface='private'] .empty-state p,
html[data-app-surface='private'] .modal-copy,
html[data-app-surface='private'] .warning-text,
html[data-app-surface='private'] .install-icon-note,
html[data-app-surface='private'] .install-tutorial-video p,
html[data-app-surface='private'] .profile-card span,
html[data-app-surface='private'] .chat-list-row span,
html[data-app-surface='private'] .friend-row span,
html[data-app-surface='private'] .friend-request-row span,
html[data-app-surface='private'] .conversation-header span,
html[data-app-surface='private'] .group-member-row span,
html[data-app-surface='private'] .metric-card span,
html[data-app-surface='private'] .admin-version-panel span,
html[data-app-surface='private'] .admin-version-panel strong {
  font-size: var(--private-fs-md);
}

html[data-app-surface='private'] .auth-form label,
html[data-app-surface='private'] .form-panel label,
html[data-app-surface='private'] .friend-form label,
html[data-app-surface='private'] .mini-modal label,
html[data-app-surface='private'] .settings-group legend,
html[data-app-surface='private'] .section-heading span,
html[data-app-surface='private'] .error-text,
html[data-app-surface='private'] .notice-text,
html[data-app-surface='private'] .entitlement-notice strong,
html[data-app-surface='private'] .entitlement-notice a,
html[data-app-surface='private'] .install-icon-option small {
  font-size: var(--private-fs-base);
}

html[data-app-surface='private'] .entitlement-notice p,
html[data-app-surface='private'] .message-bubble time {
  font-size: var(--private-fs-sm);
}

html[data-app-surface='private'] .header-menu button,
html[data-app-surface='private'] .friend-action-menu button {
  font-size: var(--private-fs-md);
}

html[data-app-surface='private'] .auth-form input,
html[data-app-surface='private'] .form-panel input,
html[data-app-surface='private'] .friend-form input,
html[data-app-surface='private'] .mini-modal input,
html[data-app-surface='private'] .composer input,
html[data-app-surface='private'] .friend-picker select {
  font-size: max(16px, var(--private-fs-lg));
}

html[data-app-surface='private'] .inline-friend-picker {
  border-bottom: 0;
  background: transparent;
  padding: 0;
}

@media (min-width: 720px) {
  body {
    display: grid;
    place-items: center;
    background: #111318;
  }

  #root {
    width: 390px;
    height: min(900px, calc(var(--app-height) - 40px));
    min-height: min(820px, calc(var(--app-height) - 40px));
    max-height: 900px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  }

  .calculator-screen,
  .private-screen {
    height: 100%;
    min-height: 0;
  }
}

html[data-app-surface='landing'],
body[data-app-surface='landing'],
html[data-app-surface='public'],
body[data-app-surface='public'] {
  height: auto;
  min-height: 100%;
  touch-action: auto;
}

html[data-app-surface='landing'],
body[data-app-surface='landing'] {
  background:
    radial-gradient(circle at 73% 8%, rgba(42, 138, 129, 0.2), transparent 30%),
    radial-gradient(circle at 8% 52%, rgba(127, 145, 177, 0.15), transparent 26%),
    #050607;
  color: #f7f2eb;
}

html[data-app-surface='public'],
body[data-app-surface='public'] {
  background: #f6f7f3;
  color: #121514;
}

html[data-app-surface='landing'],
html[data-app-surface='public'] {
  overflow-x: hidden;
  overflow-y: auto;
}

body[data-app-surface='landing'],
body[data-app-surface='public'] {
  overflow-x: clip;
  overflow-y: visible;
}

html[data-app-surface='landing'] #root,
html[data-app-surface='public'] #root {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: none;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
}

body[data-app-surface='landing'] {
  display: block;
  place-items: initial;
  height: auto;
  min-height: 100vh;
  -webkit-tap-highlight-color: rgba(232, 222, 207, 0.18);
}

body[data-app-surface='public'] {
  display: block;
  place-items: initial;
  height: auto;
  min-height: 100vh;
  background: #f6f7f3;
  -webkit-tap-highlight-color: rgba(23, 126, 108, 0.12);
}

.public-site {
  min-height: 100vh;
  overflow: visible;
  background:
    linear-gradient(180deg, #f7f8f4 0%, #ffffff 48%, #f6f7f3 100%);
  color: #121514;
}

.public-site,
.public-site * {
  box-sizing: border-box;
}

.public-site a {
  color: inherit;
  text-decoration: none;
}

.public-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid rgba(18, 21, 20, 0.08);
  background: rgba(246, 247, 243, 0.82);
  backdrop-filter: blur(22px);
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #121514;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

.public-brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(18, 21, 20, 0.16);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.72),
    0 8px 22px rgba(18, 21, 20, 0.12);
}

.public-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(18, 21, 20, 0.58);
  font-size: 14px;
  font-weight: 680;
}

.public-nav-links a {
  transition: color 180ms ease;
}

.public-nav-links a:hover {
  color: #121514;
}

.public-hero,
.public-product,
.public-workflow,
.public-operations,
.public-trust,
.public-pricing,
.public-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.public-hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.96fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) 0 clamp(72px, 9vw, 116px);
}

.public-hero-copy {
  display: grid;
  min-width: 0;
  gap: 30px;
  align-content: center;
}

.public-hero h1 {
  max-width: 640px;
  margin: 0;
  color: #111514;
  font-size: clamp(56px, 6.6vw, 92px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.public-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(18, 21, 20, 0.64);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 430;
  line-height: 1.62;
}

.public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.public-primary-action,
.public-secondary-action,
.public-price-card button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.public-primary-action {
  min-width: 126px;
  background: #121514;
  color: #fff !important;
  padding: 0 24px;
}

.public-secondary-action {
  border: 1px solid rgba(18, 21, 20, 0.14);
  background: rgba(255, 255, 255, 0.54);
  color: #121514;
  padding: 0 22px;
}

.public-primary-action:hover,
.public-secondary-action:hover,
.public-price-card button:hover {
  transform: translateY(-2px);
}

.public-access-site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.public-access {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  flex: 1;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.public-access-copy {
  display: grid;
  min-width: 0;
  gap: 26px;
}

.public-access-copy > span {
  color: rgba(23, 126, 108, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-access-copy h1 {
  max-width: 660px;
  margin: 0;
  color: #111514;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.public-access-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(18, 21, 20, 0.64);
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 430;
  line-height: 1.66;
}

.public-access-panel {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.public-access-panel::before {
  position: absolute;
  width: min(420px, 78%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 126, 108, 0.18), transparent 68%);
  content: "";
  filter: blur(4px);
}

.public-access-window {
  position: relative;
  display: grid;
  width: min(480px, 100%);
  gap: 24px;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(23, 126, 108, 0.1), rgba(255, 255, 255, 0) 38%),
    rgba(255, 255, 255, 0.86);
  padding: 24px;
  box-shadow:
    0 36px 100px rgba(18, 21, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.public-access-window-top {
  display: flex;
  gap: 8px;
}

.public-access-window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(18, 21, 20, 0.2);
}

.public-access-room {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: 22px;
  background: #ffffff;
  padding: 18px;
}

.public-access-room strong {
  display: block;
  color: #141817;
  font-size: 20px;
  font-weight: 760;
}

.public-access-room p {
  margin: 6px 0 0;
  color: rgba(18, 21, 20, 0.52);
  font-size: 14px;
  font-weight: 520;
}

.public-access-list {
  display: grid;
  gap: 10px;
}

.public-access-list p {
  margin: 0;
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: 16px;
  background: rgba(246, 247, 243, 0.72);
  color: rgba(18, 21, 20, 0.66);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.45;
  padding: 14px 16px;
}

.public-product-preview {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(23, 126, 108, 0.12), transparent 38%),
    #ffffff;
  box-shadow:
    0 36px 100px rgba(18, 21, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.public-preview-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  border-right: 1px solid rgba(18, 21, 20, 0.08);
  background: rgba(18, 21, 20, 0.035);
  padding: 28px 24px;
}

.public-preview-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.public-preview-brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(18, 21, 20, 0.14);
  box-shadow: 0 8px 22px rgba(18, 21, 20, 0.12);
}

.public-preview-sidebar strong {
  color: #121514;
  font-size: 15px;
}

.public-preview-sidebar span {
  color: rgba(18, 21, 20, 0.54);
  font-size: 14px;
  font-weight: 680;
}

.public-preview-main {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
}

.public-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(18, 21, 20, 0.5);
  font-size: 13px;
  font-weight: 720;
}

.public-preview-topbar strong {
  color: #177e6c;
}

.public-room-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  padding: 18px;
  box-shadow: 0 18px 46px rgba(18, 21, 20, 0.07);
}

.public-room-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, #ffffff, transparent 22%),
    linear-gradient(135deg, #20ad96, #0d5f53);
}

.public-room-card strong {
  color: #121514;
  font-size: 18px;
}

.public-room-card p {
  margin: 4px 0 0;
  color: rgba(18, 21, 20, 0.54);
  font-size: 14px;
}

.public-message-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.public-message-list p {
  max-width: 78%;
  margin: 0;
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: 18px 18px 18px 6px;
  background: #f5f6f2;
  color: rgba(18, 21, 20, 0.68);
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.46;
}

.public-message-list p:nth-child(2) {
  justify-self: end;
  border-radius: 18px 18px 6px 18px;
  background: rgba(23, 126, 108, 0.1);
  color: rgba(12, 72, 63, 0.82);
}

.public-product,
.public-trust,
.public-pricing {
  padding: clamp(86px, 10vw, 136px) 0;
  border-top: 1px solid rgba(18, 21, 20, 0.08);
}

.public-section-heading {
  display: grid;
  max-width: 780px;
  gap: 18px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.public-section-heading h2,
.public-workflow h2 {
  margin: 0;
  color: #121514;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 710;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.public-section-heading p {
  margin: 0;
  color: rgba(18, 21, 20, 0.62);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.64;
}

.public-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: 28px;
  background: rgba(18, 21, 20, 0.08);
}

.public-feature {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(24px, 3vw, 34px);
}

.public-feature h3 {
  margin: 0;
  color: #121514;
  font-size: 22px;
  line-height: 1.18;
}

.public-feature p {
  margin: 18px 0 0;
  color: rgba(18, 21, 20, 0.58);
  font-size: 16px;
  line-height: 1.62;
}

.public-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(44px, 8vw, 104px);
  align-items: start;
  border-top: 1px solid rgba(18, 21, 20, 0.08);
  padding: clamp(86px, 10vw, 136px) 0;
}

.public-workflow ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-workflow li {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  row-gap: 8px;
  border-bottom: 1px solid rgba(18, 21, 20, 0.1);
  padding: 0 0 28px;
}

.public-workflow li + li {
  padding-top: 28px;
}

.public-workflow li span {
  grid-row: span 2;
  color: #177e6c;
  font-size: 14px;
  font-weight: 820;
}

.public-workflow li strong {
  color: #121514;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
}

.public-workflow li p {
  margin: 0;
  color: rgba(18, 21, 20, 0.58);
  font-size: 16px;
  line-height: 1.62;
}

.public-operations {
  border-top: 1px solid rgba(18, 21, 20, 0.08);
  padding: clamp(86px, 10vw, 136px) 0;
}

.public-operation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.public-operation-card {
  display: grid;
  min-height: 240px;
  align-content: space-between;
  gap: 32px;
  border: 1px solid rgba(18, 21, 20, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(23, 126, 108, 0.08), rgba(255, 255, 255, 0) 42%),
    rgba(255, 255, 255, 0.84);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.public-operation-card h3 {
  max-width: 360px;
  margin: 0;
  color: #121514;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 720;
  line-height: 1.12;
}

.public-operation-card p {
  margin: 0;
  color: rgba(18, 21, 20, 0.6);
  font-size: 16px;
  line-height: 1.64;
}

.public-trust-list {
  display: grid;
  border-top: 1px solid rgba(18, 21, 20, 0.1);
}

.public-trust-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr 52px;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  border-bottom: 1px solid rgba(18, 21, 20, 0.1);
  padding: 30px 0;
}

.public-trust-row strong {
  color: #121514;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.14;
}

.public-trust-row p {
  margin: 0;
  color: rgba(18, 21, 20, 0.58);
  font-size: 16px;
  line-height: 1.64;
}

.public-trust-row span {
  color: #177e6c;
  font-size: 14px;
  font-weight: 820;
}

.public-billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  min-height: 44px;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 4px;
}

.public-billing-toggle button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: transparent;
  color: rgba(18, 21, 20, 0.54);
  padding: 0 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
}

.public-billing-toggle button.active {
  background: #121514;
  color: #fff;
}

.public-billing-toggle span {
  color: #49e2ba;
  font-size: 12px;
}

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

.public-price-card {
  display: flex;
  min-height: 462px;
  flex-direction: column;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 70px rgba(18, 21, 20, 0.08);
}

.public-price-card.featured {
  border-color: rgba(23, 126, 108, 0.24);
  background:
    linear-gradient(135deg, rgba(23, 126, 108, 0.11), transparent 48%),
    #ffffff;
}

.public-price-card h3 {
  margin: 0;
  color: #121514;
  font-size: 22px;
  letter-spacing: 0.03em;
}

.public-price {
  margin: 40px 0 0;
  color: #121514;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 720;
  line-height: 1;
}

.public-price span {
  color: rgba(18, 21, 20, 0.48);
  font-size: 19px;
  font-weight: 720;
}

.public-annual-note {
  min-height: 44px;
  margin: 14px 0 0;
  color: rgba(18, 21, 20, 0.54);
  font-size: 14px;
  line-height: 1.5;
}

.public-price-card ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.public-price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(18, 21, 20, 0.66);
  font-size: 16px;
  line-height: 1.45;
}

.public-price-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #177e6c;
  content: "";
}

.public-price-card button {
  width: 100%;
  margin-top: auto;
  border: 0;
  background: #121514;
  color: #fff;
}

.public-price-card button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.public-checkout-consent,
.landing-checkout-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  max-width: 780px;
  line-height: 1.5;
}

.public-checkout-consent {
  margin: 0 auto 26px;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(18, 21, 20, 0.72);
  padding: 14px 16px;
  font-size: 13px;
}

.public-checkout-consent input,
.landing-checkout-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #177e6c;
}

.public-price-card .public-checkout-consent.compact {
  max-width: none;
  margin: 4px 0 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  padding: 10px 11px;
  color: rgba(18, 21, 20, 0.64);
  font-size: 11.5px;
  line-height: 1.45;
}

.public-checkout-consent.compact label,
.landing-checkout-consent.compact label {
  min-width: 0;
}

.public-checkout-consent.compact a,
.landing-checkout-consent.compact a {
  color: inherit;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.public-checkout-consent.compact input,
.landing-checkout-consent.compact input {
  width: 17px;
  height: 17px;
}

.public-checkout-message {
  max-width: 760px;
  margin: 22px 0 0;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(18, 21, 20, 0.66);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
}

.checkout-confirm-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  background: rgba(7, 8, 9, 0.64);
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
}

.checkout-confirm-dialog {
  width: min(440px, 100%);
  max-height: min(620px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 22px;
  background: #ffffff;
  color: #121514;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 22px;
}

.checkout-confirm-dialog.dark {
  border-color: rgba(247, 242, 235, 0.14);
  background: #151918;
  color: #fffaf2;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
}

.checkout-confirm-dialog h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.checkout-confirm-dialog p {
  margin: 10px 0 0;
  color: rgba(18, 21, 20, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-confirm-dialog.dark p {
  color: rgba(247, 242, 235, 0.68);
}

.checkout-confirm-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(18, 21, 20, 0.1);
  border-radius: 16px;
  background: rgba(18, 21, 20, 0.035);
  color: rgba(18, 21, 20, 0.74);
  padding: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-confirm-dialog.dark .checkout-confirm-consent {
  border-color: rgba(247, 242, 235, 0.14);
  background: rgba(247, 242, 235, 0.055);
  color: rgba(247, 242, 235, 0.76);
}

.checkout-confirm-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #22c5b2;
}

.checkout-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;
  margin-top: 18px;
}

.checkout-confirm-actions button {
  min-height: 48px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
}

.checkout-confirm-secondary {
  border: 1px solid rgba(18, 21, 20, 0.1);
  background: rgba(18, 21, 20, 0.06);
  color: #121514;
}

.checkout-confirm-dialog.dark .checkout-confirm-secondary {
  border-color: rgba(247, 242, 235, 0.14);
  background: rgba(247, 242, 235, 0.08);
  color: #fffaf2;
}

.checkout-confirm-primary {
  border: 0;
  background: #22c5b2;
  color: #07100f;
}

.checkout-confirm-primary:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.public-footer {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(18, 21, 20, 0.1);
  color: rgba(18, 21, 20, 0.56);
  font-size: 14px;
}

.public-footer strong {
  color: #121514;
}

.public-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.landing-page {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 640px),
    #050607;
  color: #f7f2eb;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid rgba(247, 242, 235, 0.09);
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(24px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f7f2eb;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.landing-brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(247, 242, 235, 0.22);
  box-shadow:
    0 0 0 1px rgba(247, 242, 235, 0.08),
    0 0 28px rgba(34, 197, 178, 0.34);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(247, 242, 235, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.landing-nav-links a,
.landing-nav-link-button {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.landing-nav-link-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.landing-nav-links a:hover,
.landing-nav-link-button:hover {
  color: #f7f2eb;
}

.landing-language-select {
  min-width: 104px;
  height: 36px;
  color: #f7f2eb;
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.08), rgba(247, 242, 235, 0.02)),
    rgba(5, 6, 7, 0.86);
  padding: 0 34px 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.landing-language-select:hover,
.landing-language-select:focus-visible {
  border-color: rgba(34, 197, 178, 0.54);
  color: #fffaf2;
}

.landing-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 156px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 0 clamp(58px, 7vw, 86px);
}

.landing-hero-bg-video {
  display: none;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: 680px;
}

.landing-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fffaf2;
  font-size: clamp(50px, 6.5vw, 82px);
  font-weight: 730;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

.landing-hero-subtitle {
  margin: 34px 0 0;
  color: rgba(247, 242, 235, 0.72);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

.landing-primary-action,
.landing-secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.landing-primary-action {
  min-width: 126px;
  padding: 0 24px;
  background: #f7f2eb;
  color: #050607 !important;
  box-shadow: 0 18px 46px rgba(247, 242, 235, 0.18);
}

.landing-secondary-action {
  padding: 0 22px;
  border: 1px solid rgba(247, 242, 235, 0.22);
  background: transparent;
  color: rgba(247, 242, 235, 0.82);
}

.landing-primary-action:hover,
.landing-secondary-action:hover {
  transform: translateY(-2px);
}

.landing-secondary-action:hover {
  border-color: rgba(247, 242, 235, 0.46);
  background: rgba(247, 242, 235, 0.05);
}

.landing-device-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.landing-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.landing-orbit-one {
  right: 4%;
  bottom: 7%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(51, 214, 193, 0.14);
  background: radial-gradient(circle, rgba(44, 173, 160, 0.16), transparent 66%);
}

.landing-hero-media {
  position: relative;
  z-index: 2;
  display: block;
  width: min(620px, 100%);
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 46px 90px rgba(0, 0, 0, 0.58));
  transform: translateX(10px);
}

.landing-hero-media {
  aspect-ratio: 16 / 9;
  clip-path: inset(0 4.5% 0 0 round 28px);
  object-fit: cover;
  object-position: 47% center;
}

.landing-reel {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
  gap: clamp(58px, 8vw, 116px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(86px, 11vw, 150px) 0 clamp(76px, 10vw, 136px);
  border-top: 1px solid rgba(247, 242, 235, 0.1);
}

.landing-reel-visual {
  position: sticky;
  top: 96px;
  min-height: 620px;
}

.landing-reel-stage {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.1);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(247, 242, 235, 0.08), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 70% 58%, rgba(34, 197, 178, 0.18), transparent 32%),
    #070809;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 52px 130px rgba(0, 0, 0, 0.48);
}

.landing-reel-stage::before,
.landing-reel-stage::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.landing-reel-stage::before {
  right: -90px;
  bottom: 86px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(34, 197, 178, 0.14);
  background: radial-gradient(circle, rgba(34, 197, 178, 0.2), transparent 66%);
  opacity: 0.7;
  transition:
    opacity 480ms ease,
    transform 700ms ease;
}

.landing-reel-stage::after {
  top: 18%;
  left: -22%;
  width: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 178, 0.9), transparent);
  box-shadow: 0 0 26px rgba(34, 197, 178, 0.52);
  opacity: 0.52;
  transform: rotate(-18deg);
  transition:
    opacity 420ms ease,
    transform 700ms ease;
}

.landing-reel-frame {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  width: min(540px, 112%);
  max-width: none;
  border-radius: 28px;
  opacity: 0;
  filter: drop-shadow(0 46px 80px rgba(0, 0, 0, 0.58));
  pointer-events: none;
  transition:
    filter 520ms ease,
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.landing-reel-frame.active {
  opacity: 1;
}

.landing-reel-stage.is-daily .landing-reel-frame {
  transform: translateX(-10px) rotate(-2deg) scale(0.94);
}

.landing-reel-stage.is-quiet .landing-reel-frame {
  transform: translateX(8px) rotate(0deg) scale(1);
}

.landing-reel-stage.is-room .landing-reel-frame {
  transform: translateX(6px) rotate(1deg) scale(1.02);
}

.landing-reel-stage.is-invite .landing-reel-frame {
  transform: translateX(-2px) rotate(2deg) scale(1.06);
}

.landing-reel-stage.is-expire .landing-reel-frame {
  transform: translateX(10px) rotate(3deg) scale(0.98);
  filter: drop-shadow(0 54px 88px rgba(0, 0, 0, 0.64)) saturate(0.9);
}

.landing-reel-stage.is-invite::before {
  opacity: 1;
  transform: translate(-26px, -18px) scale(1.1);
}

.landing-reel-stage.is-expire::after {
  opacity: 0.86;
  transform: rotate(-12deg) translateX(56px);
}

.landing-reel-pulse {
  position: absolute;
  right: 16%;
  bottom: 19%;
  z-index: 1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 178, 0.2), transparent 70%);
  filter: blur(4px);
  animation: landingPulse 3.8s ease-in-out infinite;
}

.landing-reel-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  width: min(280px, calc(100% - 56px));
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(247, 242, 235, 0.13);
  border-radius: 24px;
  background: rgba(5, 6, 7, 0.62);
  backdrop-filter: blur(22px);
}

.landing-reel-caption span {
  color: rgba(34, 197, 178, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.landing-reel-caption strong {
  color: #fffaf2;
  font-size: 18px;
  line-height: 1.35;
}

.landing-reel-copy {
  min-width: 0;
}

.landing-reel-mobile-deck {
  display: none;
}

.landing-reel-steps {
  display: grid;
  gap: 18px;
}

.landing-reel-step {
  min-height: 230px;
  padding: 30px 0 30px 34px;
  border-left: 1px solid rgba(247, 242, 235, 0.14);
  opacity: 0.5;
  transition:
    border-color 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.landing-reel-step-media {
  display: none;
}

.landing-reel-step.active {
  border-color: rgba(34, 197, 178, 0.86);
  opacity: 1;
  transform: translateX(6px);
}

.landing-reel-step > span {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(34, 197, 178, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.landing-reel-step h3 {
  max-width: 560px;
  margin: 0;
  color: #fffaf2;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.landing-reel-step p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: 18px;
  line-height: 1.75;
}

@keyframes landingPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

.landing-phone {
  position: absolute;
  width: 286px;
  height: 552px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: #0b0d10;
  box-shadow:
    inset 0 0 0 9px #111316,
    0 42px 110px rgba(0, 0, 0, 0.58);
}

.landing-phone::before {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #050607;
  content: "";
  transform: translateX(-50%);
}

.landing-phone-back {
  top: 36px;
  left: 10px;
  opacity: 0.64;
  transform: rotate(-8deg) scale(0.92);
}

.landing-phone-front {
  top: 4px;
  right: 36px;
  transform: rotate(5deg);
}

.landing-phone-screen {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  border-radius: 34px;
}

.calculator-preview {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 68px 18px 22px;
  background: #000;
}

.calculator-preview-value {
  margin-bottom: 22px;
  color: #fff;
  font-size: 62px;
  font-weight: 250;
  line-height: 1;
  text-align: right;
}

.calculator-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.calculator-preview-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: #2f3032;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

.calculator-preview-grid span:nth-child(-n + 3) {
  background: #a6a6aa;
  color: #050505;
}

.calculator-preview-grid span:nth-child(4n),
.calculator-preview-grid span:last-child {
  background: #ff9f25;
}

.calculator-preview-grid .wide {
  aspect-ratio: auto;
  grid-column: span 2;
  justify-content: flex-start;
  padding-left: 28px;
}

.private-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 58px 22px 26px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.92), rgba(222, 229, 224, 0.82)),
    #eef1ec;
  color: #111316;
}

.private-preview-top {
  display: flex;
  justify-content: space-between;
  color: rgba(17, 19, 22, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.private-preview-thread {
  display: grid;
  gap: 16px;
}

.private-preview-thread span {
  display: block;
  width: 76%;
  height: 42px;
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(24, 30, 35, 0.08);
}

.private-preview-thread span:nth-child(2) {
  width: 62%;
  margin-left: auto;
  border-radius: 18px 18px 6px 18px;
  background: rgba(34, 197, 178, 0.22);
}

.private-preview-thread span:nth-child(3) {
  width: 54%;
}

.private-preview-caption {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.private-preview-caption strong {
  color: #111316;
  font-size: 17px;
}

.private-preview-caption span {
  color: rgba(17, 19, 22, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.landing-spaces,
.landing-unlock-demo,
.landing-pricing,
.landing-checkout-success,
.landing-finale {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-spaces,
.landing-unlock-demo,
.landing-pricing {
  padding: clamp(84px, 10vw, 128px) 0;
}

.landing-section-heading {
  display: grid;
  max-width: 820px;
  gap: 20px;
  margin-bottom: clamp(44px, 7vw, 76px);
}

.landing-section-heading h2 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 710;
  line-height: 1.08;
  letter-spacing: 0;
}

.landing-section-heading p {
  margin: 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.68;
}

.landing-region-note {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(34, 197, 178, 0.2);
  border-radius: 999px;
  background: rgba(34, 197, 178, 0.08);
  color: rgba(175, 249, 238, 0.88) !important;
  padding: 0 14px;
  font-size: 14px !important;
  font-weight: 780;
  line-height: 1.2 !important;
}

.landing-billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(292px, 100%);
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(247, 242, 235, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.055), rgba(247, 242, 235, 0.018)),
    rgba(5, 6, 7, 0.54);
  padding: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.26);
}

.landing-pricing-controls {
  display: flex;
  justify-content: center;
  margin: 16px 0 0;
}

.landing-billing-option {
  display: inline-flex;
  position: relative;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 242, 235, 0.48);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.02em;
  padding: 0 10px;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.landing-billing-option::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.landing-billing-option.active {
  background: rgba(247, 242, 235, 0.06);
  color: rgba(175, 249, 238, 0.96);
  box-shadow: none;
}

.landing-billing-option.active::before {
  opacity: 1;
  transform: scale(1.45);
}

.landing-billing-option strong {
  position: absolute;
  top: -10px;
  right: 7px;
  display: inline-flex;
  min-height: 20px;
  min-width: 42px;
  max-width: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 197, 178, 0.38);
  border-radius: 999px;
  background: #22c5b2;
  color: #021210;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(175, 249, 238, 0.16),
    0 10px 24px rgba(34, 197, 178, 0.22),
    0 8px 18px rgba(0, 0, 0, 0.28);
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(0);
}

.landing-billing-option.active strong {
  border-color: rgba(175, 249, 238, 0.54);
  box-shadow:
    0 0 0 1px rgba(175, 249, 238, 0.22),
    0 12px 28px rgba(34, 197, 178, 0.3),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.landing-space-list {
  display: grid;
  border-top: 1px solid rgba(247, 242, 235, 0.12);
}

.landing-space-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid rgba(247, 242, 235, 0.12);
}

.landing-space-row span {
  color: rgba(34, 197, 178, 0.8);
  font-size: 15px;
  font-weight: 800;
}

.landing-space-row h3 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.landing-space-row p {
  margin: 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.75;
}

.landing-unlock-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  border-top: 1px solid rgba(247, 242, 235, 0.08);
  border-bottom: 1px solid rgba(247, 242, 235, 0.08);
  isolation: isolate;
}

.landing-unlock-copy {
  display: grid;
  max-width: 650px;
  gap: 22px;
}

.landing-unlock-copy > span {
  color: rgba(34, 197, 178, 0.92);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-unlock-copy h2 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 730;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.landing-unlock-copy > p {
  margin: 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.72;
}

.landing-unlock-steps {
  display: grid;
  gap: 16px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.landing-unlock-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-items: baseline;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(247, 242, 235, 0.08);
}

.landing-unlock-steps li:last-child {
  border-bottom: 0;
}

.landing-unlock-steps span {
  grid-row: span 2;
  color: rgba(34, 197, 178, 0.82);
  font-size: 13px;
  font-weight: 840;
}

.landing-unlock-steps strong {
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.28;
}

.landing-unlock-steps p {
  margin: 0;
  color: rgba(247, 242, 235, 0.52);
  font-size: 15px;
  line-height: 1.62;
}

.landing-unlock-actions {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  justify-items: start;
}

.landing-unlock-hint {
  display: inline-flex;
  max-width: min(390px, 100%);
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(34, 197, 178, 0.2);
  border-radius: 999px;
  background: rgba(34, 197, 178, 0.08);
  color: rgba(175, 249, 238, 0.9);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.landing-unlock-outside-feedback {
  min-height: 24px;
  margin: -4px 0 0;
  color: rgba(247, 242, 235, 0.58);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.5;
  transition: color 180ms ease;
}

.landing-unlock-demo.feedback-success .landing-unlock-outside-feedback {
  color: rgba(175, 249, 238, 0.9);
}

.landing-unlock-demo.feedback-error .landing-unlock-outside-feedback {
  color: rgba(255, 150, 150, 0.92);
}

.landing-unlock-stage {
  position: relative;
  display: grid;
  min-height: clamp(520px, 58vw, 660px);
  align-content: center;
  align-items: center;
  justify-items: center;
}

.landing-unlock-stage::before {
  position: absolute;
  inset: 4% -10% 0;
  z-index: -1;
  background:
    radial-gradient(circle at 56% 26%, rgba(34, 197, 178, 0.22), transparent 34%),
    radial-gradient(circle at 42% 72%, rgba(247, 242, 235, 0.08), transparent 36%);
  filter: blur(24px);
  opacity: 0.9;
  content: "";
  transform: translate3d(0, 0, 0);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-unlock-demo.is-open .landing-unlock-stage::before {
  opacity: 1;
  transform: translateY(-14px) scale(1.06);
}

.landing-unlock-simulation-note {
  position: relative;
  z-index: 2;
  max-width: min(320px, 90%);
  margin: 0 0 14px;
  border: 1px solid rgba(34, 197, 178, 0.22);
  border-radius: 999px;
  background: rgba(34, 197, 178, 0.08);
  color: rgba(218, 255, 250, 0.86);
  padding: 8px 13px;
  text-align: center;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.landing-unlock-phone {
  position: relative;
  width: min(318px, 72vw);
  aspect-ratio: 318 / 640;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.18);
  border-radius: 46px;
  background: #090b0d;
  box-shadow:
    inset 0 0 0 10px #121417,
    0 46px 120px rgba(0, 0, 0, 0.62);
  transform: rotate(3deg);
  transition:
    box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-unlock-phone::before {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 5;
  width: 88px;
  height: 25px;
  border-radius: 999px;
  background: #020303;
  content: "";
  transform: translateX(-50%);
}

.landing-unlock-demo.is-opening .landing-unlock-phone,
.landing-unlock-demo.is-open .landing-unlock-phone {
  box-shadow:
    inset 0 0 0 10px #121417,
    0 52px 132px rgba(0, 0, 0, 0.68),
    0 0 76px rgba(34, 197, 178, 0.16);
  transform: rotate(0deg) translateY(-4px);
}

.landing-unlock-screen {
  position: absolute;
  inset: 10px;
  display: grid;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 8%, rgba(247, 242, 235, 0.08), transparent 22%),
    #050607;
  padding: 34px 18px 20px;
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-unlock-calculator {
  pointer-events: auto;
  padding-top: 4px;
}

.landing-unlock-status {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  color: rgba(247, 242, 235, 0.68);
  font-size: 11px;
  font-weight: 760;
}

.landing-unlock-display {
  display: flex;
  min-height: 132px;
  align-items: flex-end;
  justify-content: flex-end;
  color: #fffaf2;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 0;
}

.landing-unlock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.landing-unlock-key {
  display: inline-flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.14);
  color: #fffaf2;
  cursor: pointer;
  font: inherit;
  font-size: 19px;
  font-weight: 560;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.landing-unlock-key:not(:disabled):active {
  transform: scale(0.94);
}

.landing-unlock-key:disabled {
  cursor: default;
  opacity: 0.82;
}

.landing-unlock-key.wide {
  grid-column: span 2;
  aspect-ratio: auto;
  justify-content: flex-start;
  padding-left: 22px;
}

.landing-unlock-key.op {
  background: #e49721;
  color: #fffaf2;
}

.landing-unlock-chat {
  grid-template-rows: 44px minmax(0, 1fr) 52px;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  padding: 34px 0 0;
  transform: translateY(24px) scale(0.965);
}

.landing-unlock-demo.is-opening .landing-unlock-calculator {
  opacity: 0.38;
  transform: translateY(-16px) scale(0.965);
}

.landing-unlock-demo.is-open .landing-unlock-calculator {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px) scale(0.94);
}

.landing-unlock-demo.is-open .landing-unlock-chat {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.landing-unlock-lock-button {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 242, 235, 0.14);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.055);
  cursor: pointer;
  padding: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.landing-unlock-lock-button:hover {
  border-color: rgba(175, 249, 238, 0.34);
  background: rgba(34, 197, 178, 0.09);
  transform: translateY(-1px);
}

.landing-unlock-lock-button svg {
  width: 17px;
  height: 17px;
  color: rgba(247, 242, 235, 0.9);
  stroke-width: 1.85px;
}

.landing-unlock-app-header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(247, 242, 235, 0.1);
  background: rgba(15, 20, 18, 0.82);
  backdrop-filter: blur(18px);
}

.landing-unlock-panel-wrap {
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 178, 0.08), transparent 38%),
    rgba(17, 23, 21, 0.82);
}

.landing-unlock-panel {
  min-height: 0;
  height: 100%;
}

.landing-unlock-panel-chat {
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr) 44px;
}

.landing-unlock-panel-simple {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 12px;
}

.landing-unlock-app-title {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 250, 242, 0.94);
  font-size: 15px;
  font-weight: 780;
}

.landing-unlock-app-title > span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid rgba(34, 197, 178, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 250, 242, 0.86), transparent 12%),
    linear-gradient(135deg, rgba(34, 197, 178, 0.96), rgba(17, 84, 78, 0.96));
  box-shadow: 0 0 18px rgba(34, 197, 178, 0.18);
}

.landing-unlock-app-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-unlock-menu-dots {
  justify-self: center;
  color: #fffaf2;
  font-size: 17px;
  letter-spacing: 1px;
  opacity: 0.74;
}

.landing-unlock-conversation-header {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
  min-height: 54px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(247, 242, 235, 0.09);
  background: rgba(247, 242, 235, 0.035);
}

.landing-unlock-conversation-header > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.07);
  color: rgba(175, 249, 238, 0.94);
}

.landing-unlock-conversation-header > span svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.35px;
}

.landing-unlock-conversation-header div {
  min-width: 0;
}

.landing-unlock-conversation-header strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 250, 242, 0.92);
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-unlock-conversation-header p {
  overflow: hidden;
  margin: 3px 0 0;
  color: rgba(247, 242, 235, 0.5);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-unlock-thread {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 9px;
  overflow: hidden;
  padding: 14px 12px;
}

.landing-unlock-thread span {
  justify-self: center;
  color: rgba(247, 242, 235, 0.42);
  font-size: 12px;
  font-weight: 720;
}

.landing-unlock-thread p {
  max-width: 84%;
  margin: 0;
  border: 1px solid rgba(247, 242, 235, 0.1);
  border-radius: 18px;
  background: rgba(247, 242, 235, 0.075);
  color: rgba(247, 242, 235, 0.82);
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.42;
}

.landing-unlock-thread p:nth-of-type(2) {
  justify-self: end;
  border-color: rgba(34, 197, 178, 0.22);
  background: rgba(34, 197, 178, 0.12);
  color: rgba(218, 255, 250, 0.9);
}

.landing-unlock-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 10px;
  border-top: 1px solid rgba(247, 242, 235, 0.09);
  background: rgba(15, 20, 18, 0.86);
}

.landing-unlock-composer span {
  min-width: 0;
  border: 1px solid rgba(247, 242, 235, 0.1);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.055);
  color: rgba(247, 242, 235, 0.4);
  padding: 8px 12px;
  font-size: 12px;
}

.landing-unlock-composer strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-color);
  color: #02110e;
  font-size: 18px;
}

.landing-unlock-section-title {
  display: grid;
  gap: 5px;
}

.landing-unlock-section-title span {
  color: rgba(34, 197, 178, 0.9);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-unlock-section-title strong {
  color: rgba(255, 250, 242, 0.92);
  font-size: 17px;
  line-height: 1.25;
}

.landing-unlock-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(247, 242, 235, 0.1);
  border-radius: 16px;
  background: rgba(247, 242, 235, 0.055);
  padding: 8px;
}

.landing-unlock-search-row span {
  color: rgba(247, 242, 235, 0.45);
  padding-left: 6px;
  font-size: 12px;
}

.landing-unlock-search-row strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-color);
  color: #02110e;
  font-size: 18px;
}

.landing-unlock-list {
  display: grid;
  gap: 8px;
}

.landing-unlock-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(247, 242, 235, 0.09);
  border-radius: 16px;
  background: rgba(247, 242, 235, 0.06);
  padding: 10px;
}

.landing-unlock-list article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 178, 0.14);
  color: rgba(218, 255, 250, 0.9);
  font-size: 11px;
  font-weight: 840;
}

.landing-unlock-list strong,
.landing-unlock-profile-card strong {
  color: rgba(255, 250, 242, 0.9);
  font-size: 13px;
}

.landing-unlock-list p {
  margin: 3px 0 0;
  color: rgba(247, 242, 235, 0.48);
  font-size: 11px;
}

.landing-unlock-profile-card {
  display: grid;
  border: 1px solid rgba(247, 242, 235, 0.1);
  border-radius: 18px;
  background: rgba(247, 242, 235, 0.055);
  overflow: hidden;
}

.landing-unlock-profile-card div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
}

.landing-unlock-profile-card div + div {
  border-top: 1px solid rgba(247, 242, 235, 0.08);
}

.landing-unlock-profile-card span {
  color: rgba(247, 242, 235, 0.46);
  font-size: 12px;
}

.landing-unlock-profile-note {
  margin: 0;
  color: rgba(247, 242, 235, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.landing-unlock-tabbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 52px;
  padding: 5px 8px 8px;
  border-top: 1px solid rgba(247, 242, 235, 0.09);
  background: rgba(9, 13, 12, 0.96);
}

.landing-unlock-tabbar button {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(247, 242, 235, 0.48);
  cursor: pointer;
  font-size: 10px;
  font-weight: 760;
}

.landing-unlock-tabbar button.active {
  background: rgba(34, 197, 178, 0.08);
  color: rgba(175, 249, 238, 0.96);
}

.landing-price-carousel-shell {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin-top: 2px;
  contain: paint;
}

.landing-price-carousel-shell::before,
.landing-price-carousel-shell::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(10vw, 96px);
  pointer-events: none;
  content: "";
}

.landing-price-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, #020303 0%, rgba(2, 3, 3, 0) 100%);
}

.landing-price-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, #020303 0%, rgba(2, 3, 3, 0) 100%);
}

.landing-price-grid {
  display: flex;
  width: 100%;
  max-width: 100vw;
  gap: clamp(14px, 2.8vw, 24px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: max(22px, calc((100vw - min(480px, 68vw)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 18px max(22px, calc((100vw - min(480px, 68vw)) / 2)) 22px;
  -webkit-overflow-scrolling: touch;
}

.landing-price-grid::-webkit-scrollbar {
  display: none;
}

.landing-price-card {
  position: relative;
  display: flex;
  flex: 0 0 min(480px, 68vw);
  flex-direction: column;
  min-height: 478px;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(247, 242, 235, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.08), rgba(247, 242, 235, 0.025)),
    rgba(247, 242, 235, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  opacity: 0.58;
  scroll-snap-align: center;
  transform: scale(0.935) translateY(6px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.landing-price-card.plan-value {
  border-color: rgba(196, 202, 202, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(196, 202, 202, 0.14),
    0 24px 80px rgba(0, 0, 0, 0.18);
}

.landing-price-card.plan-value::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 202, 202, 0.24);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(229, 232, 230, 0.18),
    inset 0 0 22px rgba(196, 202, 202, 0.08);
  content: "";
  pointer-events: none;
}

.landing-price-card.featured {
  border-color: rgba(34, 197, 178, 0.42);
  background:
    linear-gradient(135deg, rgba(34, 197, 178, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.1), rgba(247, 242, 235, 0.03));
}

.landing-price-card.featured::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, rgba(175, 249, 238, 0.12) 42%, transparent 58%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), transparent 36%);
  opacity: 0.34;
  pointer-events: none;
  transform: translateX(-18%);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.landing-price-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
}

.landing-price-card.plan-value.active {
  border-color: rgba(210, 214, 214, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(210, 214, 214, 0.2),
    0 36px 100px rgba(0, 0, 0, 0.32),
    0 0 48px rgba(196, 202, 202, 0.1);
}

.landing-price-card.featured.active {
  border-color: rgba(91, 240, 221, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(175, 249, 238, 0.12),
    0 38px 110px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(34, 197, 178, 0.12);
}

.landing-pricing[data-billing='yearly'] .landing-price-card.featured.active {
  border-color: rgba(175, 249, 238, 0.76);
  background:
    linear-gradient(142deg, rgba(34, 197, 178, 0.24), transparent 46%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.13), rgba(247, 242, 235, 0.035));
  box-shadow:
    inset 0 0 0 1px rgba(175, 249, 238, 0.18),
    0 42px 118px rgba(0, 0, 0, 0.48),
    0 0 92px rgba(34, 197, 178, 0.2);
}

.landing-price-card.featured.active::before {
  opacity: 0.72;
  transform: translateX(0);
}

.landing-price-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fffaf2;
  font-size: 25px;
  letter-spacing: 0.02em;
}

.landing-price-card.featured h3 {
  color: #eafffb;
}

.landing-price-motion {
  position: relative;
  z-index: 1;
  animation: landing-price-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-price {
  margin: 42px 0 8px;
  color: #fffaf2;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 730;
  line-height: 1;
}

.landing-price span {
  color: rgba(247, 242, 235, 0.54);
  font-size: 21px;
  font-weight: 700;
}

.landing-price-stack {
  display: grid;
  gap: 14px;
  margin: 38px 0 0;
  min-height: 118px;
  align-content: start;
}

.landing-price-stack .landing-price {
  margin: 0;
}

.landing-price-yearly-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.landing-yearly {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin: 0;
  color: rgba(247, 242, 235, 0.6);
  font-size: 15px;
  font-weight: 700;
}

.landing-yearly.muted {
  color: rgba(247, 242, 235, 0.48);
}

.landing-yearly-label {
  color: rgba(34, 197, 178, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.landing-yearly-original {
  color: rgba(247, 242, 235, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(247, 242, 235, 0.56);
  text-decoration-thickness: 2px;
}

.landing-yearly strong {
  color: #fffaf2;
  font-size: 18px;
  font-weight: 820;
}

.landing-yearly-save {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(34, 197, 178, 0.2);
  border-radius: 999px;
  background: rgba(34, 197, 178, 0.1);
  color: rgba(175, 249, 238, 0.9);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.landing-yearly-total {
  margin: -4px 0 0;
  color: rgba(247, 242, 235, 0.5);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.landing-price-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.landing-price-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 242, 235, 0.72);
  font-size: 18px;
  line-height: 1.45;
}

.landing-price-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c5b2;
  content: "";
}

.landing-checkout-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: auto;
  padding-top: 34px;
}

.landing-checkout-button {
  min-height: 48px;
  border: 1px solid rgba(247, 242, 235, 0.86);
  border-radius: 999px;
  background: #fffaf2;
  color: #070809;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.landing-checkout-button:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.landing-checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
}

.landing-checkout-button.secondary {
  border-color: rgba(247, 242, 235, 0.22);
  background: rgba(247, 242, 235, 0.035);
  color: #fffaf2;
}

.landing-checkout-button.secondary:hover {
  border-color: rgba(34, 197, 178, 0.44);
  background: rgba(34, 197, 178, 0.1);
}

.landing-price-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: calc(clamp(44px, 7vw, 76px) * -0.36) 0 14px;
}

.landing-price-pagination button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 242, 235, 0.48);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.02em;
  padding: 0 9px;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.landing-price-pagination button span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-price-pagination button.active {
  background: rgba(247, 242, 235, 0.06);
  color: rgba(175, 249, 238, 0.96);
}

.landing-price-pagination button.active span {
  opacity: 1;
  transform: scale(1.45);
}

.landing-checkout-consent {
  width: min(760px, 100%);
  margin: 4px 0 0;
  border: 1px solid rgba(247, 242, 235, 0.14);
  border-radius: 18px;
  background: rgba(247, 242, 235, 0.055);
  color: rgba(247, 242, 235, 0.72);
  padding: 14px 16px;
  font-size: 13px;
}

.landing-checkout-consent.compact {
  width: 100%;
  margin: 0;
  border-radius: 14px;
  background: rgba(247, 242, 235, 0.045);
  color: rgba(247, 242, 235, 0.64);
  padding: 10px 11px;
  font-size: 11.5px;
  line-height: 1.45;
}

.landing-checkout-consent input {
  accent-color: #22c5b2;
}

@keyframes landing-price-reveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-price-card,
  .landing-price-card.featured::before,
  .landing-price-motion,
  .landing-price-pagination button,
  .landing-price-pagination button span,
  .landing-unlock-phone,
  .landing-unlock-stage::before,
  .landing-unlock-screen {
    animation: none;
    transition: none;
  }

  .landing-price-grid {
    scroll-behavior: auto;
  }
}

.landing-checkout-message {
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 22px 0 0;
  border: 1px solid rgba(247, 242, 235, 0.14);
  border-radius: 18px;
  background: rgba(247, 242, 235, 0.055);
  color: rgba(247, 242, 235, 0.72);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
}

.landing-checkout-success {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  border-top: 1px solid rgba(247, 242, 235, 0.1);
  padding: clamp(86px, 11vw, 148px) 0;
}

.landing-checkout-success-copy {
  display: grid;
  gap: 22px;
}

.landing-checkout-success-copy > span,
.landing-success-video-copy > span {
  color: rgba(34, 197, 178, 0.92);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-checkout-success-copy h2 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 730;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.landing-checkout-success-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.72;
}

.landing-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.landing-activation-card {
  display: grid;
  width: min(100%, 520px);
  gap: 12px;
  margin-top: 8px;
  padding: 20px;
  border: 1px solid rgba(247, 242, 235, 0.11);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.07), rgba(247, 242, 235, 0.028)),
    rgba(5, 6, 7, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.045),
    0 26px 80px rgba(0, 0, 0, 0.28);
}

.landing-activation-status {
  display: grid;
  gap: 6px;
  margin-bottom: 6px;
}

.landing-activation-status span,
.landing-activation-code span {
  color: rgba(34, 197, 178, 0.9);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-activation-status p,
.landing-activation-note {
  margin: 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.landing-activation-card label {
  color: rgba(247, 242, 235, 0.72);
  font-size: 13px;
  font-weight: 720;
}

.landing-activation-card input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(247, 242, 235, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #fffaf2;
  padding: 0 14px;
  font: inherit;
}

.landing-activation-card input:focus {
  border-color: rgba(34, 197, 178, 0.64);
  box-shadow: 0 0 0 4px rgba(34, 197, 178, 0.12);
}

.landing-activation-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(34, 197, 178, 0.18);
  border-radius: 16px;
  background: rgba(34, 197, 178, 0.06);
}

.landing-activation-code strong {
  color: #fffaf2;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.landing-activation-card .landing-primary-action {
  width: 100%;
  margin-top: 4px;
}

.landing-activation-card .landing-primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.landing-entry-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background:
    radial-gradient(circle at 50% 22%, rgba(34, 197, 178, 0.16), transparent 36%),
    rgba(2, 3, 3, 0.78);
  padding: max(env(safe-area-inset-top), 18px) 18px max(env(safe-area-inset-bottom), 18px);
  backdrop-filter: blur(18px);
  animation: landing-entry-modal-fade 220ms ease both;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.landing-entry-modal {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  gap: 18px;
  border: 1px solid rgba(247, 242, 235, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.1), rgba(247, 242, 235, 0.035)),
    rgba(5, 6, 7, 0.92);
  padding: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.06),
    0 38px 120px rgba(0, 0, 0, 0.58);
  animation: landing-entry-modal-rise 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-entry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(247, 242, 235, 0.12);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.045);
  color: rgba(247, 242, 235, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.landing-entry-modal-close:hover {
  border-color: rgba(247, 242, 235, 0.24);
  background: rgba(247, 242, 235, 0.08);
  color: #fffaf2;
  transform: scale(1.03);
}

.landing-entry-modal > span {
  color: rgba(34, 197, 178, 0.92);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-entry-modal h2 {
  max-width: 320px;
  margin: 0;
  color: #fffaf2;
  font-size: clamp(32px, 8vw, 46px);
  font-weight: 730;
  line-height: 1.08;
  letter-spacing: 0;
}

.landing-entry-modal p {
  margin: 0;
  color: rgba(247, 242, 235, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.landing-entry-modal p strong {
  color: #fffaf2;
  font-weight: 860;
}

.landing-entry-modal-note {
  color: rgba(247, 242, 235, 0.5) !important;
  font-size: 14px !important;
}

.landing-entry-modal-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(34, 197, 178, 0.22);
  border-radius: 18px;
  background: rgba(34, 197, 178, 0.075);
  padding: 14px 16px;
}

.landing-entry-modal-code span {
  color: rgba(175, 249, 238, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-entry-modal-code strong {
  color: #eafffb;
  font-size: 20px;
  font-weight: 840;
  letter-spacing: 0.02em;
}

.landing-entry-modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 12px;
  margin-top: 2px;
}

.landing-entry-modal-actions .landing-primary-action,
.landing-entry-modal-actions .landing-secondary-action {
  min-height: 48px;
  padding-inline: 18px;
}

@keyframes landing-entry-modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes landing-entry-modal-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.landing-success-video-panel {
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.075), rgba(247, 242, 235, 0.024)),
    rgba(247, 242, 235, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 242, 0.035),
    0 34px 100px rgba(0, 0, 0, 0.34);
}

.landing-success-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #030404;
  object-fit: cover;
}

.landing-success-video-copy {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3.3vw, 34px);
}

.landing-success-video-copy p {
  margin: 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: 16px;
  line-height: 1.68;
}

.landing-success-video-copy ol {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding-left: 22px;
  color: rgba(247, 242, 235, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.landing-interlude {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 72svh;
  align-items: center;
  margin: 0 auto;
  border-top: 1px solid rgba(247, 242, 235, 0.08);
  border-bottom: 1px solid rgba(247, 242, 235, 0.08);
  background:
    radial-gradient(circle at 50% 52%, rgba(247, 242, 235, 0.055), transparent 32%),
    radial-gradient(circle at 50% 68%, rgba(34, 197, 178, 0.08), transparent 34%);
  text-align: center;
  isolation: isolate;
}

.landing-interlude::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.64) 46%, #050607 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 24px);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.landing-interlude > div {
  max-width: 720px;
  margin: 0 auto;
}

.landing-interlude h2 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(42px, 6.6vw, 82px);
  font-weight: 730;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.landing-interlude p {
  max-width: 640px;
  margin: 28px auto 0;
  color: rgba(247, 242, 235, 0.62);
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 420;
  line-height: 1.72;
}

.landing-finale {
  display: grid;
  min-height: 58svh;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  justify-items: center;
  border-top: 1px solid rgba(247, 242, 235, 0.09);
  background:
    radial-gradient(circle at 50% 48%, rgba(247, 242, 235, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.018), transparent 42%);
  padding: clamp(72px, 9vw, 124px) 0 clamp(32px, 5vw, 58px);
  text-align: center;
}

.landing-finale h2 {
  align-self: center;
  justify-self: center;
  margin: 0;
  color: #fffaf2;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.landing-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-self: end;
  justify-content: center;
  margin-top: 0;
  color: rgba(247, 242, 235, 0.58);
  font-size: 14px;
}

.landing-policy-links a {
  border-bottom: 1px solid rgba(247, 242, 235, 0.24);
  padding-bottom: 3px;
}

.policy-page {
  min-height: 100vh;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.public-policy-site {
  background:
    linear-gradient(180deg, #f7f8f4 0%, #ffffff 48%, #f6f7f3 100%);
}

.policy-document {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 112px) 0 0;
}

.policy-header {
  display: grid;
  gap: 18px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(18, 21, 20, 0.1);
}

.policy-header p,
.policy-header span {
  margin: 0;
  color: rgba(23, 126, 108, 0.9);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-header span {
  color: rgba(18, 21, 20, 0.48);
  letter-spacing: 0;
  text-transform: none;
}

.policy-header h1 {
  max-width: 760px;
  margin: 0;
  color: #121514;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 730;
  letter-spacing: 0;
  line-height: 1.02;
}

.policy-header strong {
  max-width: 720px;
  color: rgba(18, 21, 20, 0.68);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 440;
  line-height: 1.66;
}

.policy-section-list {
  display: grid;
  gap: 0;
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
  gap: clamp(24px, 4vw, 54px);
  padding: 34px 0;
  border-bottom: 1px solid rgba(18, 21, 20, 0.09);
}

.policy-section h2 {
  margin: 0;
  color: #121514;
  font-size: 18px;
  font-weight: 720;
}

.policy-section p,
.policy-footer p {
  margin: 0;
  color: rgba(18, 21, 20, 0.62);
  font-size: 16px;
  line-height: 1.76;
}

.policy-footer {
  display: grid;
  gap: 22px;
  padding-top: 40px;
}

.policy-footer a {
  width: max-content;
  border: 1px solid rgba(18, 21, 20, 0.14);
  border-radius: 999px;
  padding: 13px 18px;
  color: #121514;
  font-size: 14px;
  font-weight: 720;
}

@media (max-width: 640px) {
  .policy-document {
    width: min(100% - 30px, 880px);
    padding-top: 48px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .landing-policy-links {
    gap: 14px;
  }
}

@media (max-width: 860px) {
  body[data-app-surface='public'],
  html[data-app-surface='public'] #root,
  .public-site {
    width: 100%;
    max-width: 100%;
  }

  .public-nav {
    width: min(100% - 28px, 1180px);
    min-height: 66px;
  }

  .public-brand {
    font-size: 14px;
  }

  .public-nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .public-nav-links a:nth-child(1),
  .public-nav-links a:nth-child(2) {
    display: none;
  }

  .public-hero,
  .public-access,
  .public-product,
  .public-workflow,
  .public-operations,
  .public-trust,
  .public-pricing,
  .public-footer {
    width: min(100% - 28px, 1180px);
  }

  .public-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 54px 0 76px;
  }

  .public-access {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(360px, calc(100vw - 44px));
    max-width: min(360px, calc(100vw - 44px));
    padding: 54px 0 70px;
  }

  .public-access-copy,
  .public-access-panel,
  .public-access-window {
    width: 100%;
    max-width: 100%;
  }

  .public-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 1.02;
  }

  .public-access-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.02;
  }

  .public-hero p {
    font-size: 18px;
  }

  .public-access-copy p {
    max-width: 100%;
    font-size: 17px;
  }

  .public-access .public-actions {
    width: 100%;
  }

  .public-access-panel {
    min-height: 0;
  }

  .public-access-window {
    border-radius: 26px;
    padding: 20px;
  }

  .public-access .public-primary-action,
  .public-access .public-secondary-action {
    flex: 1 1 100%;
    min-width: 0;
    padding: 0 18px;
  }

  .public-product-preview {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 26px;
  }

  .public-preview-sidebar {
    grid-template-columns: repeat(4, auto);
    gap: 14px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 21, 20, 0.08);
    padding: 18px;
  }

  .public-preview-sidebar strong {
    margin-bottom: 0;
  }

  .public-preview-brand {
    margin-bottom: 0;
  }

  .public-preview-main {
    padding: 22px;
  }

  .public-message-list p {
    max-width: 92%;
  }

  .public-product,
  .public-workflow,
  .public-operations,
  .public-trust,
  .public-pricing {
    padding: 72px 0;
  }

  .public-feature-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .public-operation-grid {
    grid-template-columns: 1fr;
  }

  .public-operation-card {
    min-height: 0;
    border-radius: 24px;
  }

  .public-feature {
    min-height: auto;
  }

  .public-workflow {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .public-trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .public-trust-row span {
    justify-self: start;
  }

  .public-price-grid {
    grid-template-columns: 1fr;
  }

  .public-price-card {
    min-height: 0;
    border-radius: 26px;
    padding: 28px;
  }

  .public-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 34px 0;
  }

  .public-footer div {
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .landing-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .landing-device-stage {
    min-height: 430px;
  }

  .landing-phone-back {
    left: 12%;
  }

  .landing-phone-front {
    right: 16%;
  }

  .landing-hero-media {
    width: min(620px, 92vw);
    transform: none;
  }

  .landing-reel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .landing-checkout-success {
    grid-template-columns: 1fr;
  }

  .landing-unlock-demo {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .landing-unlock-copy {
    max-width: 760px;
  }

  .landing-unlock-stage {
    min-height: 560px;
  }

  .landing-reel-visual {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .landing-reel-stage {
    min-height: 520px;
  }

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

  .landing-space-row {
    grid-template-columns: 56px 1fr;
  }

  .landing-space-row p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  body[data-app-surface='landing'],
  html[data-app-surface='landing'] #root,
  .landing-page {
    width: calc(100vw - 1px);
    max-width: calc(100vw - 1px);
  }

  .landing-nav {
    width: min(100% - 28px, 1180px);
  }

  .landing-nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .landing-language-select {
    min-width: 76px;
    max-width: 104px;
    height: 34px;
    padding-left: 11px;
    padding-right: 22px;
    font-size: 12px;
  }

  .landing-billing-toggle {
    width: min(292px, 100%);
  }

  .landing-billing-option {
    flex-direction: row;
    gap: 6px;
    min-height: 34px;
  }

  .landing-billing-option strong {
    max-width: 82px;
  }

  .landing-nav-links a:first-child {
    display: none;
  }

  .landing-hero,
  .landing-interlude,
  .landing-spaces,
  .landing-unlock-demo,
  .landing-pricing,
  .landing-checkout-success,
  .landing-finale {
    width: min(100% - 28px, 1180px);
  }

  .landing-hero {
    width: 100%;
    min-height: calc(100svh - 72px);
    grid-template-columns: 1fr;
    align-content: start;
    margin: 0;
    overflow: hidden;
    padding: 58px 14px 0;
    isolation: isolate;
    background: #050607;
  }

  .landing-hero::before,
  .landing-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
  }

  .landing-hero::before {
    background:
      linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.94) 24%, rgba(5, 6, 7, 0.34) 48%, rgba(5, 6, 7, 0.2) 66%, rgba(5, 6, 7, 0.52) 88%, #050607 100%),
      radial-gradient(circle at 50% 62%, transparent 0 34%, rgba(5, 6, 7, 0.34) 82%);
  }

  .landing-hero::after {
    background:
      linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.86) 10%, transparent 32%, transparent 66%, rgba(5, 6, 7, 0.92) 88%, #050607 100%),
      radial-gradient(circle at 52% 66%, rgba(34, 197, 178, 0.1), transparent 45%);
  }

  .landing-interlude {
    min-height: calc(100svh - 72px);
    margin-top: 0;
  }

  .landing-interlude > div {
    max-width: 330px;
  }

  .landing-interlude h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .landing-interlude p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.78;
  }

  .landing-checkout-success {
    gap: 32px;
    padding: 78px 0 92px;
  }

  .landing-unlock-demo {
    padding: 72px 0 78px;
  }

  .landing-unlock-copy {
    gap: 18px;
  }

  .landing-unlock-copy h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .landing-unlock-steps {
    gap: 12px;
  }

  .landing-unlock-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    padding-bottom: 14px;
  }

  .landing-unlock-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    margin-top: 6px;
  }

  .landing-unlock-hint {
    justify-content: center;
    min-height: 46px;
    border-radius: 22px;
    padding: 8px 14px;
    text-align: center;
  }

  .landing-unlock-outside-feedback {
    min-height: 22px;
    font-size: 13px;
    text-align: center;
  }

  .landing-unlock-stage {
    min-height: min(560px, calc(100svh - 86px));
  }

  .landing-unlock-phone {
    width: min(296px, 78vw);
    border-radius: 42px;
    transform: rotate(0deg);
  }

  .landing-unlock-screen {
    border-radius: 32px;
    padding: 32px 16px 18px;
  }

  .landing-unlock-calculator {
    padding-top: 4px;
  }

  .landing-unlock-display {
    min-height: 116px;
    font-size: 56px;
  }

  .landing-unlock-grid {
    gap: 9px;
  }

  .landing-unlock-key {
    font-size: 17px;
  }

  .landing-checkout-success-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .landing-success-video-panel {
    border-radius: 26px;
  }

  .landing-entry-modal {
    gap: 16px;
    border-radius: 24px;
    padding: 24px 20px 20px;
  }

  .landing-entry-modal-actions {
    grid-template-columns: 1fr;
  }

  .landing-finale {
    min-height: 58svh;
    padding: 78px 0 30px;
  }

  .landing-finale h2 {
    max-width: 320px;
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .landing-hero-bg-video {
    position: absolute;
    top: 128px;
    right: -8%;
    bottom: 0;
    left: -8%;
    z-index: 0;
    display: block;
    width: 116%;
    height: calc(100% - 128px);
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  .landing-hero-copy {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .landing-hero-subtitle br:nth-of-type(3) {
    display: none;
  }

  .landing-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .landing-actions .landing-primary-action,
  .landing-actions .landing-secondary-action {
    width: calc(100vw - 28px);
    max-width: 100%;
  }

  .landing-device-stage {
    display: none;
  }

  .landing-orbit {
    display: none;
  }

  .landing-hero-media {
    width: 100%;
    max-width: 450px;
    margin-top: 8px;
    border-radius: 20px;
  }

  .landing-reel {
    position: relative;
    display: block;
    width: 100%;
    height: var(--landing-reel-height);
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(247, 242, 235, 0.1);
    isolation: isolate;
  }

  .landing-reel-visual {
    display: none;
  }

  .landing-reel-mobile-deck {
    position: sticky;
    top: 72px;
    display: block;
    width: 100vw;
    max-width: 100%;
    height: calc(100svh - 72px);
    min-height: 690px;
    margin: 0 auto;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 36%, rgba(34, 197, 178, 0.12), transparent 42%),
      #050607;
  }

  .landing-reel-mobile-ambient {
    position: absolute;
    inset: -1px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .landing-reel-mobile-ambient::before,
  .landing-reel-mobile-ambient::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
  }

  .landing-reel-mobile-ambient::before {
    background:
      radial-gradient(circle at 50% 38%, transparent 0 28%, rgba(5, 6, 7, 0.12) 58%, rgba(5, 6, 7, 0.82) 100%),
      linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.08) 15%, rgba(5, 6, 7, 0.08) 48%, rgba(5, 6, 7, 0.8) 78%, #050607 100%);
  }

  .landing-reel-mobile-ambient::after {
    background:
      linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.7) 12%, transparent 31%, transparent 68%, rgba(5, 6, 7, 0.78) 88%, #050607 100%),
      linear-gradient(180deg, transparent 0 38%, rgba(5, 6, 7, 0.54) 66%, #050607 100%),
      radial-gradient(circle at 50% 66%, rgba(34, 197, 178, 0.16), transparent 48%);
    opacity: 0.92;
  }

  .landing-reel-mobile-ambient-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    filter: brightness(0.78) saturate(0.92) contrast(1.04);
    transform: scale(1.16) translateY(-18px);
    transition:
      opacity 900ms ease,
      filter 900ms ease,
      transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .landing-reel-mobile-ambient-frame.active {
    opacity: 1;
    filter: brightness(0.82) saturate(0.96) contrast(1.05);
    transform: scale(1.1) translateY(-26px);
  }

  .landing-reel-mobile-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: grid;
    width: min(calc(100vw - 28px), 430px);
    margin: 0 auto;
    align-content: end;
    grid-template-rows: auto;
    min-height: 0;
    padding-bottom: max(58px, env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 620ms ease,
      visibility 0s linear 620ms;
  }

  .landing-reel-mobile-slide.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 620ms ease;
  }

  .landing-reel-mobile-media {
    display: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    filter: saturate(1.02) contrast(1.02);
    box-shadow:
      0 0 0 1px rgba(247, 242, 235, 0.08),
      0 34px 120px rgba(0, 0, 0, 0.58),
      0 0 150px rgba(34, 197, 178, 0.14);
    object-fit: cover;
    opacity: 0;
    mix-blend-mode: normal;
    transform: translateY(18px) scale(0.985);
    transition:
      opacity 620ms ease,
      transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .landing-reel-mobile-copy {
    display: grid;
    gap: 14px;
    padding: 0 2px;
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 560ms ease 120ms,
      transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms;
  }

  .landing-reel-mobile-slide.active .landing-reel-mobile-media,
  .landing-reel-mobile-slide.active .landing-reel-mobile-copy {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .landing-reel-mobile-copy span {
    color: rgba(34, 197, 178, 0.86);
    font-size: 14px;
    font-weight: 800;
    text-shadow: 0 0 24px rgba(34, 197, 178, 0.34);
  }

  .landing-reel-mobile-copy h3 {
    max-width: 390px;
    margin: 0;
    color: #fffaf2;
    font-size: clamp(32px, 10vw, 45px);
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: 0 18px 52px rgba(0, 0, 0, 0.88);
  }

  .landing-reel-mobile-copy p {
    max-width: 390px;
    margin: 0;
    color: rgba(247, 242, 235, 0.62);
    font-size: 17px;
    line-height: 1.68;
    text-shadow: 0 12px 38px rgba(0, 0, 0, 0.9);
  }

  .landing-reel-copy {
    display: none;
  }

  .landing-reel-stage {
    min-height: 334px;
    border-radius: 30px;
  }

  .landing-reel-frame {
    width: 100%;
    max-width: 430px;
    border-radius: 20px;
  }

  .landing-reel-caption {
    right: 16px;
    bottom: 16px;
    width: min(242px, calc(100% - 32px));
    padding: 14px;
    border-radius: 20px;
  }

  .landing-reel-caption strong {
    font-size: 15px;
  }

  .landing-reel-copy .landing-section-heading {
    margin-bottom: 24px;
  }

  .landing-reel-steps {
    gap: 44px;
  }

  .landing-reel-step {
    min-height: 0;
    padding: 0 0 46px;
    border-bottom: 1px solid rgba(247, 242, 235, 0.1);
    border-left: 0;
    opacity: 1;
    transform: none;
  }

  .landing-reel-step.active {
    border-color: rgba(247, 242, 235, 0.1);
    transform: none;
  }

  .landing-reel-step-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 24px;
    border: 1px solid rgba(247, 242, 235, 0.08);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    object-fit: cover;
  }

  .landing-reel-step h3 {
    font-size: 28px;
  }

  .landing-reel-step p {
    font-size: 16px;
  }

  .landing-phone {
    width: 190px;
    height: 394px;
    border-radius: 34px;
    box-shadow:
      inset 0 0 0 7px #111316,
      0 34px 82px rgba(0, 0, 0, 0.5);
  }

  .landing-phone::before {
    width: 70px;
    height: 20px;
  }

  .landing-phone-back {
    top: 34px;
    left: 0;
  }

  .landing-phone-front {
    top: 8px;
    right: 2px;
  }

  .calculator-preview {
    padding: 56px 14px 18px;
  }

  .calculator-preview-value {
    font-size: 46px;
  }

  .calculator-preview-grid {
    gap: 7px;
  }

  .calculator-preview-grid span {
    font-size: 14px;
  }

  .private-preview {
    padding: 50px 17px 22px;
  }

  .landing-price-grid {
    grid-template-columns: 1fr;
  }

  .landing-space-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .landing-space-row p {
    grid-column: auto;
  }

  .landing-price-card {
    flex-basis: min(292px, 74vw);
    min-height: 486px;
    border-radius: 28px;
    padding: 32px 28px;
  }

  .landing-checkout-actions {
    grid-template-columns: 1fr;
  }
}
