:root {
  --bg: #07111f;
  --bg-soft: #0d1728;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eff6ff;
  --muted: #9db0c7;
  --primary: #4f8cff;
  --primary-2: #7c5cff;
  --accent: #18c29c;
  --warning: #f7b84b;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.22), transparent 30%),
    radial-gradient(circle at right top, rgba(124, 92, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #08111d 40%, #0a1322 100%);
  line-height: 1.55;
}

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

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

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

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #dce8ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(8px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #46e3c0);
  box-shadow: 0 0 20px rgba(24, 194, 156, 0.6);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 760px;
}

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

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-position 0.35s ease, color 0.35s ease;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 58px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 14px 38px rgba(79, 140, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-demo-download {
  background: linear-gradient(135deg, #ffb13b, #ff7a00);
  border-color: rgba(255, 145, 0, 0.36);
  color: #1d1200;
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.28);
  animation: demo-download-pulse 2.4s ease-in-out infinite;
}

.btn-demo-download:hover {
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.34);
  filter: brightness(1.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 12, 22, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand img {
  height: 100px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d6e2f2;
  font-size: 16px;
  font-weight: 600;
}

nav a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: color 0.25s ease, opacity 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6ea0ff, #9f7dff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

nav a:hover {
  opacity: 1;
  color: #ffffff;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #cfdcf0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  opacity: 1;
  color: #ffffff;
  transform: translateY(-1px);
}

.lang-switch a.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero {
  padding: 50px 0 44px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 56px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 26px;
}

.hero-copy p {
  max-width: 700px;
}

.hero-promo-card {
  margin-top: 2px;
  padding: 24px 26px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-promo-card h3 {
  margin: 0;
  max-width: 92%;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.12;
}

.hero-promo-card p {
  max-width: none;
}

.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(254, 116, 0, 0.12);
  border: 1px solid rgba(254, 116, 0, 0.22);
  color: #ffb067;
  font-size: 13px;
  font-weight: 700;
}

.hero-promo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-promo-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dbe8f8;
  font-size: 15px;
  line-height: 1.6;
}

.hero-promo-list li::before {
  content: "•";
  color: #FE7400;
  font-size: 20px;
  line-height: 1;
}

.promo-highlight {
  color: #FE7400;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
}

.promo-highlight strong {
  font-weight: 800;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.point {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.point strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.point span {
  color: var(--muted);
  font-size: 14px;
}

.visual-wrap {
  position: relative;
  isolation: isolate;
  padding-top: 10px;
}

.glow {
  position: absolute;
  inset: auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.28), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.glow.one {
  top: -20px;
  left: -20px;
}

.glow.two {
  right: 20px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(24, 194, 156, 0.2), transparent 70%);
}

.dashboard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.dashboard-body {
  padding: 22px;
  display: grid;
  gap: 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

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

.hero-step-card {
  position: relative;
  min-height: 176px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(8, 17, 32, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-step-card h3 {
  margin: 0;
  max-width: 78%;
  font-size: 20px;
  line-height: 1.08;
}

.accent-title {
  color: #FE7400;
}

.hero-step-card p {
  margin: 16px 0 0;
  max-width: 88%;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero-step-no {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #FE7400;
  opacity: 0.12;
}

.js-paddle-checkout {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.js-paddle-checkout::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.26) 50%, transparent 75%);
  transform: translateX(-135%) skewX(-20deg);
  animation: buy-wave 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.js-paddle-checkout::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 rgba(110, 160, 255, 0);
  animation: buy-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.js-paddle-checkout > * {
  position: relative;
  z-index: 1;
}

.js-paddle-checkout:hover {
  transform: translateY(-3px);
}

.btn-primary.js-paddle-checkout {
  background-size: 200% 200%;
  animation: buy-gradient 5.5s ease infinite;
}

.btn-secondary.js-paddle-checkout {
  border-color: rgba(124, 92, 255, 0.26);
  box-shadow: 0 10px 28px rgba(79, 140, 255, 0.12);
}

@keyframes buy-wave {
  0% {
    transform: translateX(-150%) skewX(-20deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  55% {
    opacity: 0.95;
  }
  100% {
    transform: translateX(170%) skewX(-20deg);
    opacity: 0;
  }
}

@keyframes buy-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(110, 160, 255, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(110, 160, 255, 0.28);
  }
}

@keyframes buy-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.panel {
  background: rgba(8, 17, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #d9e6f6;
}

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

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat .label {
  color: var(--muted);
  font-size: 13px;
}

.stat .value {
  font-size: 28px;
  font-weight: 800;
  margin-top: 6px;
  letter-spacing: -0.03em;
}

.progress {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.progress-bar {
  margin-top: 12px;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.table {
  display: grid;
  gap: 10px;
}

.row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.row:last-child {
  border-bottom: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(24, 194, 156, 0.12);
  color: #b8ffef;
  font-size: 12px;
  border: 1px solid rgba(24, 194, 156, 0.18);
  width: fit-content;
}

.pill.warning {
  background: rgba(247, 184, 75, 0.12);
  color: #ffe4b3;
  border-color: rgba(247, 184, 75, 0.16);
}

.logo-strip {
  padding: 12px 0 0;
}

.logo-boxes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.logo-box {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  text-align: center;
  color: #c7d5e6;
  font-weight: 600;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin-bottom: 44px;
}

.cards-3,
.steps,
.use-cases,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.22), rgba(124, 92, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 24px;
}

.card p {
  color: var(--muted);
  margin-top: 12px;
}

.card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #dbe8f8;
  font-size: 15px;
}

.card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.card ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.step-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.step-no {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: #FE7400;
  opacity: 0.12;
  position: absolute;
  top: 18px;
  right: 22px;
  letter-spacing: -0.06em;
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 24px;
  align-items: stretch;
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 100%;
}

.quote blockquote {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0;
}

.pricing {
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: linear-gradient(135deg, var(--accent), #36ddb7);
  color: #05231b;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 20px 0 18px;
}

.price strong {
  font-size: clamp(46px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
}

.pricing-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #dbe8f8;
}

.pricing-item::before {
  content: "•";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta .section-head {
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

.cta-panel {
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(79, 140, 255, 0.14), rgba(124, 92, 255, 0.08));
  box-shadow: var(--shadow);
}

.legal-hero {
  padding: 88px 0 30px;
}

.legal-shell {
  display: grid;
  gap: 22px;
}

.legal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(30px, 4vw, 52px);
}

.legal-card h2 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 14px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.meta-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce8ff;
  font-size: 13px;
}

.inline-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-page {
  min-height: calc(100vh - 81px);
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.status-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.status-card h1 {
  font-size: clamp(34px, 5vw, 60px);
  margin-bottom: 18px;
}

.status-card p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.status-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-size: 36px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(124, 92, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
  padding: 32px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

body.demo-modal-open {
  overflow: hidden;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.72);
  backdrop-filter: blur(14px);
}

.demo-modal__dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: linear-gradient(180deg, rgba(13, 23, 40, 0.98), rgba(7, 17, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.demo-modal__content {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.demo-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #ebf2ff;
  background: rgba(255, 255, 255, 0.08);
}

.demo-modal__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #ffd2a0;
  border: 1px solid rgba(255, 145, 0, 0.25);
  background: rgba(255, 145, 0, 0.12);
}

.demo-modal__lead,
.demo-form__hint {
  color: var(--muted);
}

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

.demo-form__field {
  display: grid;
  gap: 8px;
}

.demo-form__field span {
  font-size: 14px;
  font-weight: 700;
  color: #eef5ff;
}

.demo-form__field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

.demo-form__field input:focus {
  outline: none;
  border-color: rgba(79, 140, 255, 0.64);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.15);
}

.demo-form__submit {
  width: 100%;
}

.demo-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.demo-form__feedback {
  display: none;
}

.demo-form__feedback.is-visible {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-form__feedback.is-success {
  background: rgba(24, 194, 156, 0.12);
  border-color: rgba(24, 194, 156, 0.32);
}

.demo-form__feedback.is-error {
  background: rgba(255, 99, 132, 0.12);
  border-color: rgba(255, 99, 132, 0.28);
}

.demo-form__feedback-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.demo-form__feedback-body {
  color: #deebff;
  font-size: 14px;
}

.demo-form__feedback-body a {
  color: #ffd090;
  text-decoration: underline;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .dashboard-grid,
  .hero-steps-grid,
  .cards-3,
  .steps,
  .use-cases,
  .faq-grid,
  .logo-boxes {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .visual-wrap {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  nav {
    display: none;
  }

  .hero-grid,
  .split,
  .dashboard-grid,
  .hero-steps-grid,
  .cards-3,
  .steps,
  .use-cases,
  .faq-grid,
  .logo-boxes {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-promo-card {
    margin-top: 0;
  }

  .section,
  .legal-hero {
    padding: 68px 0;
  }

  .dashboard-body,
  .panel,
  .card,
  .cta-panel,
  .legal-card {
    padding: 20px;
  }

  .header-inner {
    min-height: 72px;
    flex-wrap: wrap;
  }

  .btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .site-actions {
    width: 100%;
    justify-content: space-between;
  }

  .demo-modal__dialog {
    width: min(100% - 20px, 560px);
    margin-top: 20px;
  }

  .demo-modal__content {
    padding: 22px;
  }
}

@keyframes demo-download-pulse {
  0%, 100% {
    box-shadow: 0 14px 34px rgba(255, 122, 0, 0.24);
  }
  50% {
    box-shadow: 0 20px 46px rgba(255, 122, 0, 0.42);
  }
}
