:root {
  --bg: #07110d;
  --bg-soft: #0d1c16;
  --bg-deep: #040907;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.09);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4fff9;
  --muted: #a8b8b0;
  --muted-strong: #d6e2dc;
  --accent: #35e07f;
  --accent-strong: #69f3a2;
  --accent-soft: rgba(53, 224, 127, 0.16);
  --accent-border: rgba(53, 224, 127, 0.42);
  --warning: #ffd166;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(13, 28, 22, 0.94), rgba(4, 9, 7, 0.98) 42%, rgba(10, 18, 25, 0.96)),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(53, 224, 127, 0.06), transparent 34%, rgba(255, 209, 102, 0.04) 68%, transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

body.menu-open {
  overflow: hidden;
}

.wa-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
  color: currentColor;
  fill: currentColor;
}

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

button {
  border: 0;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 13, 0.78);
  backdrop-filter: blur(22px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  min-width: 230px;
  display: grid;
  align-items: center;
}

.brand-logo {
  width: 154px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(53, 224, 127, 0.14));
}

.brand-subtitle {
  max-width: 250px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.main-nav a,
.footer-nav a {
  color: var(--muted);
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--bg-deep);
  background: var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 10px 26px rgba(53, 224, 127, 0.2);
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--accent-strong);
  box-shadow: 0 14px 34px rgba(53, 224, 127, 0.28);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(82dvh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 78px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.hero-copy {
  max-width: var(--container);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--accent-strong);
  border: 1px solid rgba(53, 224, 127, 0.24);
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 720;
}

h1 {
  max-width: 1180px;
  margin: 24px auto 22px;
  color: var(--text);
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.03;
  font-weight: 860;
}

.hero-lead {
  max-width: 930px;
  margin: 0 auto 18px;
  color: var(--muted-strong);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.hero-support {
  max-width: 900px;
  margin: 0 auto 34px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease),
    color 180ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--accent), #9dffc5);
  box-shadow: 0 18px 42px rgba(53, 224, 127, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(53, 224, 127, 0.34);
}

.btn-secondary,
.btn-plan {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-plan:hover,
.btn-plan:focus-visible {
  border-color: var(--accent-border);
  background: rgba(53, 224, 127, 0.12);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 680;
}

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(53, 224, 127, 0.42);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.demo-section {
  padding-top: 78px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.demo-section .hero-visual {
  max-width: 1074px;
  margin: 0 auto;
}

.demo-preview-switch {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto 16px;
  padding: 4px;
  border: 1px solid rgba(134, 150, 160, 0.24);
  border-radius: 999px;
  background: rgba(17, 27, 33, 0.78);
}

.demo-preview-switch button {
  min-height: 36px;
  padding: 0 16px;
  color: #aebac1;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

.demo-preview-switch button:hover,
.demo-preview-switch button:focus-visible,
.demo-preview-switch button.active {
  color: #d9fdd3;
  background: #0a332c;
}

.demo-heading {
  margin-bottom: 28px;
}

.demo-disclaimer {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(168, 184, 176, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.wa-demo {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: #050606;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.wa-demo.is-mobile-preview {
  width: min(390px, 100%);
  min-height: auto;
  margin: 0 auto;
  border-radius: 14px;
}

.wa-app {
  display: grid;
  grid-template-columns: clamp(344px, 34vw, 380px) minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  height: 760px;
  background: #111b21;
}

.wa-demo.is-mobile-preview .wa-app {
  grid-template-columns: 1fr;
  height: min(720px, 78dvh);
  min-height: 620px;
}

.wa-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid rgba(134, 150, 160, 0.24);
  background: #111b21;
}

.wa-demo.is-mobile-preview .wa-sidebar {
  height: 100%;
  max-height: none;
  border-right: 0;
  border-bottom: 0;
}

.wa-sidebar-head,
.wa-dialog-head {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #202c33;
}

.wa-sidebar-head {
  flex: 0 0 auto;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 16px 12px;
  background: #111b21;
}

.wa-title {
  color: #e9edef;
  font-size: 21px;
  line-height: 1;
}

.wa-device-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 8px;
  padding: 0 10px;
  color: #aebac1;
  border-radius: 999px;
  background: #2a3942;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.wa-head-actions,
.wa-dialog-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aebac1;
}

.wa-back-button {
  display: none;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: #aebac1;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.wa-back-button:hover,
.wa-back-button:focus-visible {
  color: #e9edef;
  background: rgba(255, 255, 255, 0.06);
}

.wa-search {
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 16px 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: #202c33;
}

.wa-search-small-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #8696a0;
}

.wa-search input {
  min-width: 0;
  height: 100%;
  padding: 0;
  color: #e9edef;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
}

.wa-search input:focus {
  box-shadow: none;
  background: transparent;
}

.wa-filters {
  flex: 0 0 auto;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.wa-filters::-webkit-scrollbar {
  display: none;
}

.wa-filters button {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 0 13px;
  color: #aebac1;
  border: 1px solid rgba(134, 150, 160, 0.2);
  border-radius: 999px;
  background: #111b21;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.wa-filters button:hover,
.wa-filters button:focus-visible,
.wa-filters button.active {
  color: #d9fdd3;
  border-color: rgba(0, 168, 132, 0.52);
  background: #0a332c;
}

.wa-chat-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-color: rgba(134, 150, 160, 0.42) transparent;
}

.wa-chat-button {
  width: calc(100% - 20px);
  min-height: 78px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 10px;
  padding: 9px 8px;
  color: #e9edef;
  border-bottom: 1px solid rgba(134, 150, 160, 0.16);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.wa-chat-button:hover,
.wa-chat-button:focus-visible {
  border-radius: 12px;
  background: #182229;
}

.wa-chat-button.active {
  border-bottom-color: transparent;
  border-radius: 12px;
  background: #2a2f32;
}

.wa-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  border-radius: 999px;
  background: var(--avatar-bg, linear-gradient(135deg, #667781, #3b4a54));
  font-size: 18px;
  font-weight: 800;
}

.wa-chat-button > .wa-avatar {
  grid-row: 1 / span 2;
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-chat-main {
  min-width: 0;
}

.wa-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wa-chat-name {
  overflow: hidden;
  color: #e9edef;
  font-size: 16px;
  font-weight: 740;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-chat-status {
  min-width: 34px;
  display: grid;
  justify-items: end;
  gap: 7px;
  flex: 0 0 auto;
}

.wa-chat-time {
  color: #aebac1;
  font-size: 12px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.wa-chat-preview {
  overflow: hidden;
  margin-top: 2px;
  color: #aebac1;
  font-size: 14px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-chat-meta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 4px;
}

.wa-chat-meta:empty {
  display: none;
}

.wa-unread {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  color: #06231d;
  border-radius: 999px;
  background: #25d366;
  font-size: 11px;
  font-weight: 850;
}

.wa-chat-label {
  max-width: 124px;
  overflow: hidden;
  padding: 2px 8px;
  color: #00d6b0;
  border: 1px solid rgba(0, 214, 176, 0.62);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-empty-list {
  padding: 26px 18px;
  color: #aebac1;
  font-size: 14px;
  text-align: center;
}

.wa-dialog {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background-color: #0b141a;
  background:
    linear-gradient(rgba(11, 20, 26, 0.88), rgba(11, 20, 26, 0.88)),
    radial-gradient(circle at 22px 18px, rgba(233, 237, 239, 0.05) 0 1px, transparent 1px 44px),
    radial-gradient(circle at 52px 58px, rgba(233, 237, 239, 0.035) 0 1px, transparent 1px 36px),
    linear-gradient(135deg, transparent 0 44%, rgba(233, 237, 239, 0.03) 45% 46%, transparent 47% 100%);
  background-size: auto, 88px 88px, 104px 104px, 72px 72px;
}

.wa-demo.is-mobile-preview .wa-dialog {
  display: none;
  height: 100%;
  min-height: 0;
}

.wa-demo.is-mobile-preview.chat-open .wa-sidebar {
  display: none;
}

.wa-demo.is-mobile-preview.chat-open .wa-dialog {
  display: flex;
}

.wa-demo.is-mobile-preview .wa-back-button {
  display: grid;
}

.wa-dialog.is-empty {
  background: #0f1514;
}

.wa-dialog-head {
  border-bottom: 1px solid rgba(134, 150, 160, 0.18);
}

.wa-dialog.is-empty .wa-dialog-head,
.wa-dialog.is-empty .wa-message-list,
.wa-dialog.is-empty .wa-composer {
  display: none;
}

.wa-empty-state {
  flex: 1;
  min-height: 0;
  display: none;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 42px;
  color: #aebac1;
  text-align: center;
}

.wa-dialog.is-empty .wa-empty-state {
  display: grid;
}

.wa-empty-icon {
  width: 92px;
  height: 82px;
  position: relative;
  margin-bottom: 36px;
}

.wa-empty-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: #aebac1;
}

.wa-empty-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  border-top: 26px solid #aebac1;
  border-right: 24px solid transparent;
  transform: rotate(-8deg);
}

.wa-empty-state strong {
  color: #e9edef;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.1;
  font-weight: 400;
}

.wa-empty-state span {
  color: #aebac1;
  font-size: 15px;
  line-height: 1.45;
}

.wa-dialog-head .wa-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  font-size: 16px;
}

.wa-dialog-title {
  min-width: 0;
  flex: 1;
}

.wa-dialog-head strong,
.wa-dialog-head span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-dialog-head strong {
  color: #e9edef;
  font-size: 17px;
  line-height: 1.2;
}

.wa-dialog-head span {
  margin-top: 2px;
  color: #aebac1;
  font-size: 13px;
}

.wa-message-list {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding: 28px 20px 12px;
  scrollbar-color: rgba(134, 150, 160, 0.42) transparent;
}

.wa-message {
  position: relative;
  max-width: min(72%, 460px);
  padding: 8px 10px 19px;
  color: #e9edef;
  border-radius: 8px;
  background: #202c33;
  font-size: 14px;
  line-height: 1.38;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.wa-message::before {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
}

.wa-message.incoming {
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-message.incoming::before {
  left: -8px;
  background: linear-gradient(225deg, #202c33 0 50%, transparent 51%);
}

.wa-message.outgoing {
  align-self: flex-end;
  border-top-right-radius: 2px;
  background: #005c4b;
}

.wa-message.outgoing::before {
  right: -8px;
  background: linear-gradient(135deg, #005c4b 0 50%, transparent 51%);
}

.wa-message-author {
  display: block;
  margin-bottom: 2px;
  color: #00a884;
  font-size: 12px;
  font-weight: 800;
}

.wa-message-text {
  color: #f0f2f3;
  overflow-wrap: anywhere;
}

.wa-message-time {
  position: absolute;
  right: 8px;
  bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #aebac1;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.wa-message.outgoing .wa-message-time {
  color: rgba(233, 237, 239, 0.74);
}

.wa-message.has-image {
  width: min(72%, 390px);
  max-width: 390px;
  padding: 8px 8px 20px;
}

.wa-message.has-image .wa-image-card {
  width: 100%;
}

.wa-checks {
  width: 16px;
  height: 11px;
  display: block;
  color: #53bdeb;
  fill: currentColor;
}

.wa-checks::before,
.wa-checks::after {
  display: none;
}

.wa-message.system {
  align-self: center;
  max-width: 86%;
  padding: 6px 10px;
  color: #d1d7db;
  border-radius: 8px;
  background: rgba(32, 44, 51, 0.86);
  font-size: 12px;
  text-align: center;
}

.wa-message.system::before,
.wa-message.system .wa-message-time {
  display: none;
}

.wa-image-card {
  width: min(360px, 100%);
  display: grid;
  gap: 7px;
}

.wa-image-preview {
  aspect-ratio: 4 / 3.15;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.38) 0 5px, transparent 6px),
    linear-gradient(155deg, #d8d1bf 0 28%, #b7af9d 29% 52%, #efe7d3 53% 100%);
}

.wa-image-preview::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 12%;
  height: 58%;
  border: 3px solid #24282c;
  border-radius: 8px 8px 3px 3px;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.26) 47% 48%, transparent 49% 100%),
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.15), transparent 22%),
    #171f28;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.wa-image-preview::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 4%;
  height: 10%;
  border-radius: 4px 4px 10px 10px;
  background:
    repeating-linear-gradient(90deg, #c9c7bd 0 8px, #1c2227 9px 15px),
    #24282c;
  box-shadow: 0 -8px 0 #2b3135;
}

.wa-image-screen {
  position: absolute;
  left: 25%;
  top: 24%;
  width: 34%;
  height: 1px;
  background: rgba(238, 238, 238, 0.42);
  transform: rotate(40deg);
  z-index: 1;
}

.wa-image-caption {
  color: #f0f2f3;
  font-size: 13px;
  font-weight: 700;
}

.wa-file-card {
  width: min(260px, 100%);
  display: grid;
  gap: 9px;
}

.wa-file-preview {
  min-height: 106px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(134, 150, 160, 0.18);
  border-radius: 7px;
  background: #111b21;
}

.wa-file-preview span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 30px;
  color: #fff;
  border-radius: 6px;
  background: #ea3d61;
  font-size: 12px;
  font-weight: 850;
}

.wa-file-name {
  color: #f0f2f3;
  font-weight: 760;
}

.wa-file-meta {
  color: #aebac1;
  font-size: 12px;
}

.wa-composer {
  min-height: 66px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #202c33;
}

.wa-composer button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #aebac1;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.wa-composer button:hover,
.wa-composer button:focus-visible {
  color: #e9edef;
  background: rgba(255, 255, 255, 0.06);
}

.wa-composer button[type="submit"] {
  width: 46px;
  height: 46px;
  color: #d1d7db;
  background: #2a3942;
}

.wa-composer button[type="submit"]:hover,
.wa-composer button[type="submit"]:focus-visible {
  color: #fff;
  background: #00a884;
}

.wa-composer input {
  height: 46px;
  min-width: 0;
  padding: 0 18px;
  color: #e9edef;
  border: 0;
  border-radius: 999px;
  background: #2a3942;
  box-shadow: none;
  font-size: 15px;
}

.wa-composer input:focus {
  background: #2a3942;
  box-shadow: 0 0 0 3px rgba(0, 168, 132, 0.28);
}

.mockup-shell {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: #101514;
  box-shadow: var(--shadow);
}

.mockup-browser {
  height: 42px;
  display: grid;
  grid-template-columns: 10px 10px 10px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #202124;
}

.mockup-browser > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mockup-address {
  min-width: 0;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #e9edef;
  border-radius: 999px;
  background: #111b21;
  font-size: 12px;
}

.mockup-body {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  height: 558px;
  background: #0b1110;
}

.mockup-list {
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #111b19;
}

.mockup-list-head {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
}

.mockup-list-head strong,
.detail-header strong,
.chat-row strong {
  color: #f4f7f5;
}

.mockup-list-head strong {
  font-size: 17px;
}

.mockup-list-head span,
.detail-header span {
  color: #aebac1;
  font-size: 12px;
}

.mockup-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-actions span {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 6px;
}

.mockup-actions span:first-child {
  border: 2px solid #aebac1;
}

.mockup-actions span:first-child::before,
.mockup-actions span:nth-child(2)::before,
.mockup-actions span:nth-child(2)::after,
.detail-actions span:first-child::before {
  content: "";
  position: absolute;
}

.mockup-actions span:first-child::before {
  width: 8px;
  height: 2px;
  left: 5px;
  top: 8px;
  background: #aebac1;
  box-shadow: 0 4px 0 #aebac1;
}

.mockup-actions span:nth-child(2)::before,
.mockup-actions span:nth-child(2)::after {
  left: 9px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #aebac1;
  box-shadow: 0 7px 0 #aebac1;
}

.mockup-actions span:nth-child(2)::before {
  top: 2px;
}

.mockup-actions span:nth-child(2)::after {
  top: 16px;
  box-shadow: none;
}

.mockup-search {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 14px 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: #202827;
}

.mockup-search span {
  width: 14px;
  height: 14px;
  border: 2px solid #8fa2ad;
  border-radius: 999px;
  position: relative;
}

.mockup-search span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #8fa2ad;
  transform: rotate(45deg);
}

.mockup-search p {
  margin: 0;
  color: #9fb0b9;
}

.mockup-tabs {
  display: flex;
  gap: 8px;
  margin: 0 14px 12px;
  overflow: hidden;
}

.mockup-tabs span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #aebac1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #151f1d;
  font-size: 12px;
  white-space: nowrap;
}

.mockup-tabs .active {
  color: #d8ffe8;
  border-color: rgba(53, 224, 127, 0.38);
  background: rgba(53, 224, 127, 0.18);
}

.chat-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
}

.chat-row.active {
  background: #2a302f;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f5fffb;
  border-radius: 999px;
  background: #2b6e75;
  font-weight: 800;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar.photo {
  background:
    radial-gradient(circle at 50% 34%, #9fb3bd 0 15%, transparent 16%),
    radial-gradient(circle at 50% 82%, #334955 0 31%, transparent 32%),
    linear-gradient(145deg, #455965, #1b2b33);
}

.avatar.blue {
  background: #1c4594;
}

.avatar.brown {
  background:
    radial-gradient(circle at 50% 38%, #9ed6c5 0 10%, transparent 11%),
    radial-gradient(circle at 50% 70%, #9ed6c5 0 14%, transparent 15%),
    #a26335;
}

.chat-row p,
.chat-row small {
  max-width: 190px;
  overflow: hidden;
  margin: 2px 0 0;
  color: #aebac1;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-row small {
  width: fit-content;
  display: block;
  margin-top: 5px;
  padding: 2px 7px;
  color: #26d7b0;
  border: 1px solid rgba(38, 215, 176, 0.6);
  border-radius: 999px;
  font-size: 10px;
}

.chat-row time {
  align-self: start;
  margin-top: 4px;
  color: #9fb0b9;
  font-size: 11px;
}

.mockup-detail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background:
    linear-gradient(rgba(17, 27, 33, 0.94), rgba(17, 27, 33, 0.94)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 14px);
}

.detail-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #17211f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-header .avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.detail-header > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.detail-actions span:first-child {
  border: 0;
}

.detail-actions span:first-child::before {
  width: 14px;
  height: 14px;
  left: 3px;
  top: 2px;
  border: 2px solid #aebac1;
  border-radius: 999px;
}

.detail-actions span:first-child::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 4px;
  width: 8px;
  height: 2px;
  background: #aebac1;
  border-radius: 999px;
  transform: rotate(45deg);
}

.message-stack {
  display: grid;
  gap: 10px;
  align-content: start;
  flex: 1;
  padding: 18px 14px 16px;
  overflow: hidden;
}

.access-panel {
  width: min(430px, 94%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(53, 224, 127, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(53, 224, 127, 0.16), rgba(255, 255, 255, 0.05)),
    #18221f;
}

.access-panel strong,
.access-panel span {
  display: block;
}

.access-panel strong {
  color: #f4fff9;
  font-size: 13px;
}

.access-panel span {
  margin-top: 2px;
  color: #aebac1;
  font-size: 11px;
  line-height: 1.35;
}

.access-panel button {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 0 12px;
  color: #07110d;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  font: inherit;
  font-size: 11px;
  font-weight: 820;
  pointer-events: none;
}

.message {
  position: relative;
  max-width: min(390px, 92%);
  padding: 9px 10px 17px;
  color: #e9edef;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.42;
  background: #202827;
}

.message::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  border-top: 8px solid #202827;
  border-left: 8px solid transparent;
}

.message strong {
  display: block;
  margin-bottom: 3px;
  color: #00d6b0;
  font-size: 12px;
}

.message p {
  margin: 0;
  color: #f0f2f3;
}

.message time {
  position: absolute;
  right: 9px;
  bottom: 4px;
  color: #9aa8ad;
  font-size: 10px;
}

.message.system {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1px;
  justify-self: start;
  width: min(280px, 80%);
  padding: 0;
  overflow: hidden;
  background: #202827;
}

.message.system::before {
  display: none;
}

.message.system span {
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #00d6b0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.message.system time {
  position: static;
  display: grid;
  place-items: end;
  padding: 0 8px 4px;
}

.message.compact {
  max-width: 284px;
}

.message.quoted {
  max-width: 400px;
}

.quote {
  display: grid;
  gap: 2px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-left: 4px solid #00d6b0;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.18);
}

.quote b {
  color: #ff5d9e;
  font-size: 12px;
}

.quote span {
  color: #aebac1;
  font-size: 12px;
}

.message.wide {
  max-width: 420px;
}

.link-like {
  color: #53bdeb;
}

.mockup-composer {
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #0f1716;
}

.mockup-composer div {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #aebac1;
  border-radius: 999px;
  background: #202827;
}

.plus,
.mic,
.send {
  width: 34px;
  height: 34px;
  position: relative;
  border-radius: 999px;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 16px;
  width: 16px;
  height: 2px;
  background: #aebac1;
  border-radius: 999px;
}

.plus::after {
  transform: rotate(90deg);
}

.mic::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 10px;
  height: 16px;
  border: 2px solid #aebac1;
  border-radius: 8px;
}

.mic::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 16px;
  height: 10px;
  border-bottom: 2px solid #aebac1;
  border-radius: 0 0 10px 10px;
}

.send {
  background: #202827;
}

.send::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #aebac1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading-wide {
  max-width: 880px;
}

.section-heading h2,
.form-copy h2,
.cta-panel h2 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 850;
}

.section-heading p,
.form-copy p,
.cta-panel p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.card-grid,
.feature-grid,
.pricing-grid,
.honesty-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.glass-card,
.feature-card,
.pricing-card,
.honesty-grid article,
.lead-card,
.faq-item {
  border: 1px solid var(--card-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.glass-card,
.feature-card,
.honesty-grid article {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.glass-card {
  min-height: 204px;
}

.glass-card h3,
.feature-card h3,
.honesty-grid h3,
.pricing-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

.glass-card p,
.feature-card p,
.honesty-grid p,
.pricing-card p {
  margin-bottom: 0;
}

.glass-card,
.feature-card,
.pricing-card,
.honesty-grid article,
.faq-item {
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.glass-card:hover,
.feature-card:hover,
.pricing-card:hover,
.honesty-grid article:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 224, 127, 0.26);
}

.feature-card {
  min-height: 210px;
}

.how-section {
  position: relative;
}

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

.work-steps article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(53, 224, 127, 0.12), rgba(255, 255, 255, 0.04)),
    var(--card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.work-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--bg-deep);
  border-radius: 14px;
  background: var(--accent);
  font-weight: 850;
}

.work-steps h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.22;
}

.work-steps p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(53, 224, 127, 0.22), rgba(255, 209, 102, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(53, 224, 127, 0.22);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 999px;
}

.feature-icon::before {
  width: 18px;
  height: 3px;
  left: 11px;
  top: 15px;
}

.feature-icon::after {
  width: 12px;
  height: 3px;
  left: 11px;
  top: 23px;
  opacity: 0.72;
}

.audience-section,
.pricing-section,
.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.niche-line {
  max-width: 980px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.7;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.pricing-card.popular {
  border-color: rgba(53, 224, 127, 0.45);
  background:
    linear-gradient(145deg, rgba(53, 224, 127, 0.16), rgba(255, 255, 255, 0.055)),
    var(--card);
}

.pricing-top p {
  min-height: 54px;
}

.price {
  margin: 28px 0 18px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1;
  font-weight: 860;
}

.price span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 640;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-strong);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.honesty-section {
  padding-top: 66px;
}

.honesty-panel {
  padding: 0;
}

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

.honesty-grid article {
  min-height: 190px;
}

.form-section {
  position: relative;
  padding-top: 96px;
  padding-bottom: 110px;
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 52%;
  width: min(520px, 42vw);
  height: 520px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 224, 127, 0.12), transparent 68%);
  filter: blur(12px);
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 6vw, 84px);
  align-items: start;
}

.form-copy {
  position: static;
  width: 100%;
  max-width: none;
}

.form-copy h2 {
  margin-top: 18px;
}

.form-note {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(53, 224, 127, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(53, 224, 127, 0.12), rgba(53, 224, 127, 0.035)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.16);
}

.form-note strong {
  color: var(--text);
}

.form-note span {
  color: var(--muted);
}

.research-focus-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.research-focus-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.research-focus-head span:last-child {
  color: var(--accent-strong);
}

.research-focus-list ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.research-focus-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.research-focus-index {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent-strong);
  border: 1px solid rgba(53, 224, 127, 0.3);
  border-radius: 11px;
  background: rgba(53, 224, 127, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.research-focus-list li > span:last-child {
  display: grid;
  gap: 3px;
  padding-top: 1px;
}

.research-focus-list strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.research-focus-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.research-focus-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.research-focus-foot span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(53, 224, 127, 0.09);
}

.lead-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(53, 224, 127, 0.12), transparent 34%);
}

.lead-card > * {
  position: relative;
}

.research-card {
  padding-bottom: 26px;
}

.research-form-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.research-form-intro > div:first-child {
  display: grid;
  gap: 8px;
}

.research-form-eyebrow {
  color: var(--text);
  font-size: 14px;
  font-weight: 820;
}

.research-form-helper,
.research-question-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.research-protection {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(0, 8, 5, 0.2);
}

.research-protection p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.research-progress-wrap {
  display: grid;
  gap: 8px;
}

.research-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.research-progress-meta span:last-child {
  color: var(--accent-strong);
}

.research-progress {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.research-progress > span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #95f6bc);
  box-shadow: 0 0 18px rgba(53, 224, 127, 0.5);
  transition: width 240ms var(--ease);
}

.research-form {
  display: grid;
  gap: 24px;
}

.research-step[hidden],
.research-success[hidden],
.research-button[hidden] {
  display: none;
}

.research-step {
  display: grid;
  gap: 14px;
}

.research-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 4px;
}

.research-step-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #062516;
  border-radius: 13px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(53, 224, 127, 0.18);
}

.research-step-kicker {
  margin: 0 0 4px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.research-step-heading h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.15;
}

.research-question {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 19px;
  background: rgba(0, 8, 5, 0.26);
}

fieldset.research-question {
  display: grid;
  gap: 12px;
}

.research-question legend,
.research-label {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.4;
}

.research-question-hint {
  margin: -5px 0 2px;
}

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

.research-choice {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.35;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.research-choice:hover {
  color: var(--text);
  border-color: rgba(53, 224, 127, 0.38);
  background: rgba(53, 224, 127, 0.06);
  transform: translateY(-1px);
}

.research-choice:focus-within {
  border-color: rgba(53, 224, 127, 0.72);
  box-shadow: 0 0 0 3px rgba(53, 224, 127, 0.12);
}

.research-choice:has(input:checked) {
  color: var(--text);
  border-color: rgba(53, 224, 127, 0.62);
  background: linear-gradient(135deg, rgba(53, 224, 127, 0.14), rgba(53, 224, 127, 0.045));
}

.research-choice input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0 11px 0 0;
  accent-color: var(--accent);
}

.research-select-wrap {
  position: relative;
}

.research-select-wrap select,
.research-text-input,
.research-textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(1, 10, 7, 0.7);
  box-shadow: none;
}

.research-select-wrap select {
  height: 54px;
  padding: 0 42px 0 14px;
  appearance: none;
}

.research-select-chevron {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--accent-strong);
  pointer-events: none;
  transform: translateY(-55%);
}

.research-text-input {
  height: 52px;
  padding: 0 14px;
}

.research-textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.research-select-wrap select:focus,
.research-text-input:focus,
.research-textarea:focus {
  border-color: rgba(53, 224, 127, 0.72);
  box-shadow: 0 0 0 3px rgba(53, 224, 127, 0.12);
}

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

.research-question-optional {
  background: rgba(255, 255, 255, 0.018);
}

.research-error {
  min-height: 0;
  margin: 0;
  color: #ffadad;
  font-size: 12px;
  line-height: 1.4;
}

.research-error:empty {
  display: none;
}

.research-question.has-error {
  border-color: rgba(255, 107, 107, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.08);
}

.research-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.research-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 128px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 820;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), opacity 180ms var(--ease);
}

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

.research-button:disabled {
  cursor: wait;
  opacity: 0.56;
}

.research-button-primary {
  color: #062516;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(53, 224, 127, 0.16);
}

.research-button-primary:hover:not(:disabled) {
  background: #8af3b5;
}

.research-button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.research-button-secondary:hover:not(:disabled) {
  border-color: rgba(53, 224, 127, 0.38);
  background: rgba(53, 224, 127, 0.08);
}

.research-form-status {
  min-height: 0;
  margin: -10px 0 0;
  color: #ffadad;
  font-size: 13px;
  line-height: 1.45;
}

.research-form-status:empty {
  display: none;
}

.research-success {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(53, 224, 127, 0.32);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(53, 224, 127, 0.14), rgba(53, 224, 127, 0.035));
}

.research-success-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #062516;
  border-radius: 16px;
  background: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.research-success h4,
.research-success p {
  margin: 0;
}

.research-success h4 {
  color: var(--text);
  font-size: 25px;
}

.research-success > p:not(.research-step-kicker) {
  max-width: 48ch;
  color: var(--muted-strong);
  line-height: 1.55;
}

.research-submit-target {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.research-form-fallback {
  margin: 18px 4px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.research-form-fallback a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-card-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--accent-strong);
  border: 1px solid rgba(53, 224, 127, 0.28);
  border-radius: 999px;
  background: rgba(53, 224, 127, 0.1);
  font-size: 12px;
  font-weight: 820;
}

.lead-card-head h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

.lead-card-head p {
  flex: 0 0 auto;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

label {
  display: flex;
  align-items: flex-end;
  min-height: 19px;
  color: rgba(244, 255, 249, 0.82);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    rgba(3, 12, 9, 0.72);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

input,
select {
  height: 58px;
  padding: 0 16px;
}

textarea {
  min-height: 138px;
  padding: 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(168, 184, 176, 0.6);
}

select {
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(53, 224, 127, 0.68);
  background:
    linear-gradient(180deg, rgba(53, 224, 127, 0.035), rgba(255, 255, 255, 0)),
    rgba(3, 12, 9, 0.84);
  box-shadow:
    0 0 0 4px rgba(53, 224, 127, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(255, 107, 107, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 770;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(53, 224, 127, 0.46);
  outline-offset: -5px;
}

.faq-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: transform 180ms var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  max-width: 920px;
  margin-bottom: 0;
}

.final-cta {
  padding-top: 54px;
}

.cta-panel {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 7vw, 70px);
  border: 1px solid rgba(53, 224, 127, 0.24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(53, 224, 127, 0.16), rgba(255, 255, 255, 0.05) 45%, rgba(255, 209, 102, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 980px;
  margin-top: 0;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 28px;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 7, 0.52);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) auto minmax(260px, 0.95fr);
  align-items: center;
  gap: 24px;
}

.footer-inner strong {
  color: var(--text);
  font-size: 18px;
}

.footer-inner p {
  margin: 4px 0 0;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  max-width: 360px;
  justify-self: end;
  text-align: right;
}

:focus-visible {
  outline: 3px solid rgba(53, 224, 127, 0.58);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 118px;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead,
  .hero-support,
  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: min(980px, 100%);
    margin: 0 auto;
  }

  .pain-grid,
  .feature-grid,
  .work-steps,
  .pricing-grid,
  .honesty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .disclaimer {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-copy {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 176px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-subtitle {
    max-width: 220px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }

  .main-nav a {
    padding: 0 12px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .mockup-shell {
    min-height: auto;
    border-radius: 22px;
  }

  .demo-preview-switch {
    display: none;
  }

  .wa-demo {
    min-height: auto;
    border-radius: 14px;
  }

  .wa-app {
    grid-template-columns: 1fr;
    height: min(720px, 78dvh);
    min-height: 620px;
  }

  .wa-sidebar {
    height: 100%;
    max-height: none;
    border-right: 0;
    border-bottom: 0;
  }

  .wa-dialog {
    display: none;
    height: 100%;
    min-height: 0;
  }

  .wa-demo.chat-open .wa-sidebar {
    display: none;
  }

  .wa-demo.chat-open .wa-dialog {
    display: flex;
  }

  .wa-back-button {
    display: grid;
  }

  .mockup-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .mockup-list {
    max-height: 360px;
  }

  .mockup-detail {
    min-height: 460px;
  }

  .pain-grid,
  .feature-grid,
  .work-steps,
  .pricing-grid,
  .honesty-grid {
    grid-template-columns: 1fr;
  }

  .glass-card,
  .feature-card,
  .pricing-card,
  .honesty-grid article {
    min-height: auto;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-top p {
    min-height: auto;
  }

  .lead-card {
    padding: 20px;
    border-radius: 24px;
  }

  .research-card {
    padding: 18px;
  }

  .research-form-intro {
    gap: 14px;
  }

  .research-choice-list,
  .research-choice-grid,
  .research-optional-grid {
    grid-template-columns: 1fr;
  }

  .research-focus-list ol {
    grid-template-columns: 1fr;
  }

  .research-question {
    padding: 15px;
  }

  .research-form-actions {
    position: sticky;
    bottom: 12px;
    z-index: 2;
    margin: 0 -4px;
    padding: 10px 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(4, 15, 11, 0.86);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
  }

  .research-button {
    min-width: 0;
    flex: 1 1 0;
  }

  .faq-question {
    min-height: 66px;
    padding: 0 18px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 150px;
  }

  .header-inner {
    padding: 10px 0;
    gap: 8px;
    justify-content: space-between;
  }

  .brand {
    justify-content: flex-start;
    flex: 1 1 auto;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-logo {
    width: 132px;
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
  }

  .main-nav {
    gap: 4px;
    padding: 4px;
  }

  .main-nav a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-lead,
  .hero-support,
  .hero-content h1 {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions,
  .hero-badges {
    justify-content: flex-start;
  }

  .hero-badges span {
    width: 100%;
    justify-content: flex-start;
  }

  .access-panel {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-header {
    padding: 8px 12px;
  }

  .message.wide {
    max-width: 100%;
  }

  .mockup-composer {
    grid-template-columns: 30px minmax(0, 1fr) 30px 40px;
    gap: 7px;
    padding: 9px 10px;
  }

  .wa-sidebar-head,
  .wa-dialog-head {
    padding: 9px 12px;
  }

  .wa-chat-button {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 12px;
  }

  .wa-filters {
    flex-wrap: wrap;
    overflow: visible;
  }

  .wa-filters button {
    flex: 1 1 auto;
  }

  .wa-avatar {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .wa-message {
    max-width: 86%;
  }

  .wa-chat-label {
    max-width: 94px;
  }

  .wa-composer {
    grid-template-columns: 34px minmax(0, 1fr) 34px 42px;
    gap: 6px;
    padding: 9px 10px;
  }

  .wa-composer button {
    width: 34px;
    height: 34px;
  }

  .wa-composer button[type="submit"] {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .main-nav a {
    min-height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
