:root {
      --bg: #07090f;
      --bg-soft: #0c111d;
      --panel: rgba(15, 20, 34, 0.78);
      --panel-strong: rgba(22, 28, 46, 0.88);
      --line: rgba(255, 255, 255, 0.1);
      --text: #f7f9ff;
      --muted: #96a4bd;
      --soft: #dce6fb;
      --brand: #1264ff;
      --brand-strong: #0857f7;
      --cyan: #42c8ff;
      --green: #31d6a0;
      --violet: #7188ff;
      --amber: #ffc766;
      --rose: #ff6f9f;
      --brand-glow: rgba(18, 100, 255, 0.38);
      --focus: rgba(66, 200, 255, 0.78);
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
      --radius: 8px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 0%, rgba(18, 100, 255, 0.26), transparent 31rem),
        radial-gradient(circle at 82% 10%, rgba(66, 200, 255, 0.13), transparent 28rem),
        radial-gradient(circle at 50% 58%, rgba(113, 136, 255, 0.08), transparent 34rem),
        linear-gradient(180deg, #05070d 0%, #081022 42%, #05070d 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
      z-index: -2;
    }

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

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid var(--focus);
      outline-offset: 4px;
    }

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

    .page {
      position: relative;
      min-height: 100vh;
    }

    .ambient {
      position: fixed;
      inset: auto auto 12% 50%;
      width: 46rem;
      height: 46rem;
      pointer-events: none;
      background: conic-gradient(from 120deg, rgba(18, 100, 255, 0.2), rgba(66, 200, 255, 0.15), rgba(255, 255, 255, 0.08), rgba(18, 100, 255, 0.2));
      filter: blur(80px);
      transform: translateX(-50%);
      animation: drift 16s ease-in-out infinite alternate;
      z-index: -3;
    }

    .container {
      width: min(100% - 40px, var(--max));
      margin-inline: auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(7, 9, 15, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
    }

    .brand-logo {
      width: auto;
      height: 34px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
    }

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

    .nav-links a:hover {
      color: var(--text);
    }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 8px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.06);
      font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-login {
  border-color: transparent;
  color: var(--soft);
  background: transparent;
}

.nav-login:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 100, 255, 0.52);
  background: rgba(18, 100, 255, 0.13);
}

    .hero {
      position: relative;
      padding: 92px 0 88px;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -1px;
      width: min(92vw, 1180px);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(18, 100, 255, 0.58), rgba(255, 255, 255, 0.2), transparent);
      transform: translateX(-50%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      align-items: center;
      gap: 58px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 22px;
      padding: 8px 11px;
      border: 1px solid rgba(66, 200, 255, 0.26);
      border-radius: 999px;
      color: #d8ecff;
      background: rgba(18, 100, 255, 0.14);
      font-size: 13px;
      font-weight: 700;
    }

    .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 rgba(18, 100, 255, 0.8);
      animation: pulse 1.8s infinite;
    }

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

    h1 {
      max-width: 780px;
      margin-bottom: 24px;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(120deg, #ffffff, #9fd7ff 42%, #2d7bff 78%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-copy {
      max-width: 660px;
      margin-bottom: 32px;
      color: var(--soft);
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.6;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

.btn {
  position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 8px;
      cursor: pointer;
      font: inherit;
      font-size: 15px;
      font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  isolation: isolate;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .btn-primary {
      color: #02122e;
      background: linear-gradient(135deg, #ffffff 0%, #d8ebff 8%, var(--cyan) 38%, var(--brand) 100%);
      box-shadow: 0 18px 46px rgba(18, 100, 255, 0.28);
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 7px;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 32%);
      pointer-events: none;
      opacity: 0.68;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 58px rgba(18, 100, 255, 0.38);
    }

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

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.1);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 640px;
      gap: 12px;
    }

    .metric {
      padding: 15px;
      border: 1px solid rgba(66, 200, 255, 0.14);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(18, 100, 255, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.04);
    }

    .metric strong {
      display: block;
      margin-bottom: 4px;
      font-size: 22px;
    }

    .metric span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .product-card {
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      background:
        radial-gradient(circle at 88% 10%, rgba(66, 200, 255, 0.16), transparent 12rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(11, 15, 26, 0.82);
      box-shadow: var(--shadow);
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: linear-gradient(130deg, rgba(18, 100, 255, 0.42), transparent 34%, rgba(66, 200, 255, 0.2));
      opacity: 0.75;
      pointer-events: none;
    }

    .mock-top {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      background: rgba(7, 9, 15, 0.72);
    }

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

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

    .mock-status {
      color: #c8e4ff;
      font-size: 12px;
      font-weight: 800;
    }

    .inbox {
      position: relative;
      display: grid;
      grid-template-columns: 142px 1fr;
      min-height: 470px;
    }

    .inbox-sidebar {
      padding: 14px;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.025);
    }

    .side-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 9px;
      padding: 10px;
      border-radius: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .side-item.active {
      color: var(--text);
      background: rgba(18, 100, 255, 0.16);
    }

    .badge {
      min-width: 22px;
      padding: 3px 6px;
      border-radius: 999px;
      text-align: center;
      color: #ffffff;
      background: var(--brand);
      font-size: 11px;
      font-weight: 900;
    }

    .chat {
      display: flex;
      flex-direction: column;
      padding: 18px;
      gap: 14px;
    }

    .chat-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .avatar {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      color: #ffffff;
      background: linear-gradient(135deg, #ffffff, var(--cyan) 38%, var(--brand));
      font-weight: 900;
    }

    .contact strong,
    .contact span {
      display: block;
    }

    .contact strong {
      font-size: 14px;
    }

    .contact span {
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
    }

    .ai-chip {
      padding: 8px 10px;
      border: 1px solid rgba(66, 200, 255, 0.24);
      border-radius: 999px;
      color: #d8ecff;
      background: rgba(18, 100, 255, 0.14);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .bubble {
      max-width: 84%;
      padding: 12px 13px;
      border-radius: 14px;
      color: var(--soft);
      background: rgba(255, 255, 255, 0.07);
      font-size: 13px;
      line-height: 1.48;
    }

    .bubble.ai {
      align-self: flex-end;
      color: #ffffff;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(66, 200, 255, 0.96) 34%, rgba(18, 100, 255, 0.96));
    }

    .automation {
      margin-top: auto;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.05);
    }

    .automation-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 13px;
      font-weight: 900;
    }

    .flow {
      display: grid;
      grid-template-columns: 1fr 24px 1fr 24px 1fr;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }

    .flow-step {
      padding: 9px 8px;
      border-radius: 8px;
      color: var(--soft);
      background: rgba(255, 255, 255, 0.07);
      text-align: center;
    }

    .flow-arrow {
      text-align: center;
      color: var(--cyan);
    }

    .section {
      padding: 92px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
      align-items: end;
      gap: 30px;
      margin-bottom: 34px;
    }

    .kicker {
      margin-bottom: 12px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 0;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-copy {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }

    .social {
      padding: 42px 0 22px;
    }

    .social-wrap {
      display: grid;
      grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
      align-items: center;
      gap: 28px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      background:
        linear-gradient(90deg, rgba(18, 100, 255, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.035);
    }

    .social-wrap p {
      margin-bottom: 0;
      color: var(--soft);
      line-height: 1.55;
    }

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

    .logo {
      display: grid;
      place-items: center;
      min-height: 56px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: var(--radius);
      color: rgba(255, 255, 255, 0.72);
      background: rgba(255, 255, 255, 0.04);
      font-size: 13px;
      font-weight: 900;
      transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
    }

    .logo:hover {
      transform: translateY(-2px);
      border-color: rgba(66, 200, 255, 0.3);
      color: #ffffff;
      background: rgba(18, 100, 255, 0.12);
    }

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

    .feature-card,
    .use-card,
    .benefit-card {
      position: relative;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        var(--panel);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .feature-card::after,
    .use-card::after,
    .benefit-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(18, 100, 255, 0.16), transparent 46%, rgba(66, 200, 255, 0.08));
      opacity: 0;
      transition: opacity 180ms ease;
      pointer-events: none;
    }

    .feature-card:hover,
    .use-card:hover,
    .benefit-card:hover {
      transform: translateY(-4px);
      border-color: rgba(18, 100, 255, 0.34);
      background: var(--panel-strong);
    }

    .feature-card:hover::after,
    .use-card:hover::after,
    .benefit-card:hover::after {
      opacity: 1;
    }

    .icon {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      margin-bottom: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      color: var(--brand);
      background: rgba(255, 255, 255, 0.06);
    }

    .icon svg {
      width: 20px;
      height: 20px;
      stroke-width: 2;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 18px;
      line-height: 1.25;
    }

    .card-copy {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

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

    .use-card {
      min-height: 248px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .use-card:nth-child(1) .icon { color: var(--brand); }
    .use-card:nth-child(2) .icon { color: var(--cyan); }
    .use-card:nth-child(3) .icon { color: var(--amber); }
    .use-card:nth-child(4) .icon { color: var(--rose); }

    .tag {
      display: inline-flex;
      align-self: flex-start;
      margin-top: 20px;
      padding: 7px 9px;
      border-radius: 999px;
      color: var(--soft);
      background: rgba(255, 255, 255, 0.07);
      font-size: 12px;
      font-weight: 800;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 26px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
      overflow: hidden;
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 34px;
      border-radius: 8px;
      color: #ffffff;
      background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 32%, var(--brand) 100%);
      font-weight: 900;
    }

    .step::after {
      content: "";
      position: absolute;
      top: 46px;
      right: -30%;
      width: 60%;
      height: 1px;
      background: linear-gradient(90deg, rgba(18, 100, 255, 0.58), transparent);
    }

    .benefits-band {
      border-block: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(90deg, rgba(18, 100, 255, 0.16), transparent 32%, rgba(66, 200, 255, 0.08)),
        rgba(255, 255, 255, 0.025);
    }

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

    .benefit-card strong {
      display: block;
      margin-bottom: 10px;
      font-size: clamp(30px, 4vw, 48px);
      letter-spacing: 0;
      color: #ffffff;
      text-shadow: 0 0 28px rgba(18, 100, 255, 0.44);
    }

    .scarcity {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin: 18px 0;
      padding: 12px;
      border: 1px solid rgba(66, 200, 255, 0.18);
      border-radius: var(--radius);
      background: rgba(18, 100, 255, 0.12);
      color: var(--soft);
      font-size: 13px;
      line-height: 1.4;
    }

    .scarcity strong {
      margin: 0;
      font-size: 18px;
      color: #ffffff;
      white-space: nowrap;
    }

    .cta {
      padding: 96px 0 104px;
    }

    .cta-box {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(270px, 0.48fr);
      align-items: center;
      gap: 28px;
      padding: clamp(28px, 5vw, 54px);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 18px;
      background:
        radial-gradient(circle at 18% 14%, rgba(18, 100, 255, 0.32), transparent 22rem),
        radial-gradient(circle at 80% 70%, rgba(66, 200, 255, 0.16), transparent 20rem),
        rgba(12, 17, 29, 0.9);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%);
      pointer-events: none;
    }

    .cta-box > * {
      position: relative;
    }

    .cta h2 {
      margin-bottom: 18px;
      max-width: 760px;
    }

    .cta p {
      max-width: 680px;
      margin-bottom: 0;
      color: var(--soft);
      font-size: 17px;
      line-height: 1.7;
    }

    .cta-panel {
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.055);
    }

    .cta-panel strong {
      display: block;
      margin-bottom: 8px;
      font-size: 28px;
    }

    .cta-panel span {
      display: block;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

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

.contact-section {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.contact-copy {
  padding-top: 20px;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(18, 100, 255, 0.64);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 0%, rgba(18, 100, 255, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(12, 17, 29, 0.88);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input {
  min-height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(220, 230, 251, 0.48);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(66, 200, 255, 0.48);
  background: rgba(18, 100, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(18, 100, 255, 0.16);
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 13px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(49, 214, 160, 0.28);
  color: #d8fff0;
  background: rgba(49, 214, 160, 0.12);
}

.form-status.error {
  border: 1px solid rgba(255, 111, 159, 0.28);
  color: #ffe0ea;
  background: rgba(255, 111, 159, 0.12);
}

.form-status.loading {
  border: 1px solid rgba(66, 200, 255, 0.28);
  color: #d8ecff;
  background: rgba(18, 100, 255, 0.12);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 42px 0;
      color: var(--muted);
      background: rgba(7, 9, 15, 0.78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 0.45fr));
      gap: 28px;
    }

    .footer p {
      max-width: 360px;
      margin: 16px 0 0;
      line-height: 1.6;
      font-size: 14px;
    }

    .footer h4 {
      margin: 0 0 12px;
      color: var(--text);
      font-size: 14px;
    }

    .footer a {
      display: block;
      margin-top: 9px;
      font-size: 14px;
      transition: color 180ms ease;
    }

    .footer a:hover {
      color: var(--text);
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 640ms ease, transform 640ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(18, 100, 255, 0.72); }
      70% { box-shadow: 0 0 0 10px rgba(18, 100, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(18, 100, 255, 0); }
    }

    @keyframes drift {
      from { transform: translateX(-54%) translateY(0) rotate(0deg); }
      to { transform: translateX(-46%) translateY(-24px) rotate(18deg); }
    }

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

    @media (max-width: 1040px) {
  .hero-grid,
  .section-head,
  .social-wrap,
  .cta-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

      .feature-card:last-child {
        grid-column: span 2;
      }

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

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

      .nav-inner {
        min-height: 64px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding: 64px 0 56px;
      }

      .hero-grid {
        gap: 34px;
      }

      .actions,
      .btn {
        width: 100%;
      }

  .hero-metrics,
  .logos,
  .cards,
  .use-grid,
  .benefit-grid,
  .steps,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

      .feature-card:last-child {
        grid-column: auto;
      }

      .product-card {
        border-radius: 12px;
      }

      .inbox {
        grid-template-columns: 1fr;
      }

      .inbox-sidebar {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .side-item {
        margin-bottom: 0;
        justify-content: center;
      }

      .side-item span:not(.badge) {
        display: none;
      }

      .chat-head {
        align-items: flex-start;
      }

      .flow {
        grid-template-columns: 1fr;
      }

      .flow-arrow {
        transform: rotate(90deg);
      }

      .section,
      .cta {
        padding: 64px 0;
      }

      .social {
        padding-top: 24px;
      }
    }
