:root {
  --blue: #2eb7eb;
  --deep-blue: #335faa;
  --green: #4ab166;
  --pink: #e71f80;
  --cyan: #35bef0;
  --ink: #10213f;
  --muted: #5f6e87;
  --line: #dce8f5;
  --soft: #f4f9fd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 33, 63, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.narrow {
  width: min(100% - 40px, 880px);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep-blue);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 42, 93, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 33, 63, 0.18);
}

.header-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.main-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 12px 26px rgba(46, 183, 235, 0.24);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--deep-blue));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(46, 183, 235, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(46, 183, 235, 0.2), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(231, 31, 128, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mesh {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(51, 95, 170, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 95, 170, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.22;
  animation: floatBlob 9s ease-in-out infinite alternate;
}

.blob-blue {
  top: 120px;
  left: 4%;
  background: var(--blue);
}

.blob-green {
  right: 11%;
  top: 190px;
  background: var(--green);
  animation-delay: 1.5s;
}

.blob-pink {
  right: 30%;
  bottom: 90px;
  background: var(--pink);
  animation-delay: 0.8s;
}

@keyframes floatBlob {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3.25vw, 3.02rem);
  line-height: 1.03;
}

.hero-text,
.page-hero p,
.section-heading p,
.split-layout p,
.process-intro + article p,
.footer-brand p {
  color: var(--muted);
}

.hero-text {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: 1.12rem;
}

.hero-actions,
.cta-layout {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 16px 34px rgba(51, 95, 170, 0.22);
}

.btn-secondary {
  color: var(--deep-blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-light {
  color: var(--deep-blue);
  background: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 580px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(220, 232, 245, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics strong {
  display: block;
  color: var(--deep-blue);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-product {
  position: relative;
  border: 1px solid rgba(220, 232, 245, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(74, 177, 102, 0.22), transparent 68%);
}

.product-topbar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.product-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
}

.product-topbar span:nth-child(2) {
  background: var(--green);
}

.product-topbar span:nth-child(3) {
  background: var(--pink);
}

.product-panel {
  min-height: 460px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
  background: #f7fbff;
  border-right: 1px solid var(--line);
}

.sidebar-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(51, 95, 170, 0.18);
}

.sidebar-dot.active {
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
}

.inbox-preview {
  padding: 26px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.preview-header span {
  color: var(--muted);
}

.preview-header strong {
  color: var(--deep-blue);
}

.conversation {
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
}

.conversation span {
  display: block;
  margin-bottom: 4px;
  color: var(--deep-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.conversation p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.conversation.is-instagram {
  border-left-color: var(--pink);
}

.conversation.is-marketplace {
  border-left-color: var(--green);
}

.automation-preview {
  grid-column: 2;
  display: flex;
  align-items: center;
  padding: 0 26px 28px;
}

.flow-node {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--deep-blue);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.flow-node.green {
  background: var(--green);
}

.flow-node.pink {
  background: var(--pink);
}

.flow-line {
  width: 38px;
  height: 2px;
  background: var(--line);
}

.logo-carousel {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(220, 232, 245, 0.9);
  border-bottom: 1px solid rgba(220, 232, 245, 0.9);
  background: rgba(255, 255, 255, 0.72);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: scrollLogos 34s linear infinite;
}

.logo-track span,
.channel-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 136px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--deep-blue);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 33, 63, 0.06);
}

.logo-track img,
.channel-list img,
.channel-svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.channel-svg {
  display: block;
  overflow: visible;
}

.channel-svg-wide {
  width: 30px;
  flex-basis: 30px;
}

.logo-track i,
.channel-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding-inline: 3px;
  height: 22px;
  color: var(--deep-blue);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.logo-track b,
.channel-list b {
  font: inherit;
  white-space: nowrap;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 780px;
  text-align: center;
}

.section-heading h2,
.split-layout h2,
.process-intro h2,
.cta-layout h2,
.content-grid h2,
.legal-content h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.12;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-card,
.process-grid article,
.contact-panel,
.support-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 33, 63, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-blue);
  font-weight: 900;
}

.feature-icon.green {
  background: var(--green);
}

.feature-icon.pink {
  background: var(--pink);
}

.feature-icon.cyan {
  background: var(--cyan);
}

.feature-card h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p,
.process-grid p,
.content-grid p,
.legal-content p,
.contact-panel p {
  color: var(--muted);
}

.split-band,
.values-band {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--deep-blue);
  font-weight: 900;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.process-grid article {
  padding: 24px;
}

.process-grid article span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-blue);
  font-weight: 900;
}

.cta-section {
  padding: 70px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(53, 190, 240, 0.8), transparent 28%),
    linear-gradient(135deg, var(--deep-blue), #203f83);
}

.cta-section .eyebrow,
.cta-section h2 {
  color: var(--white);
}

.cta-layout {
  justify-content: space-between;
}

.cta-layout h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero {
  padding: 86px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 183, 235, 0.22), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(74, 177, 102, 0.16), transparent 32%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.support-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(231, 31, 128, 0.16), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(46, 183, 235, 0.24), transparent 34%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

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

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

.values-grid div {
  padding: 26px;
  border-left: 5px solid var(--blue);
  background: var(--white);
  border-radius: var(--radius);
}

.values-grid div:nth-child(2) {
  border-left-color: var(--green);
}

.values-grid div:nth-child(3) {
  border-left-color: var(--pink);
}

.values-grid span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.support-form {
  padding: 28px;
}

.contact-panel a,
.footer-column a {
  display: block;
  color: var(--deep-blue);
  font-weight: 800;
}

.contact-panel a + a,
.footer-column a + a,
.footer-column a + span {
  margin-top: 10px;
}

.support-form {
  display: grid;
  gap: 12px;
}

.support-form h2,
.contact-panel h2 {
  margin-bottom: 6px;
}

.support-form label {
  color: var(--ink);
  font-weight: 800;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 183, 235, 0.16);
}

.form-message {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-message p {
  margin: 0;
}

.form-message.success {
  color: #1d6b36;
  background: rgba(74, 177, 102, 0.14);
}

.form-message.error {
  color: #9f114e;
  background: rgba(231, 31, 128, 0.12);
}

.legal-section {
  padding: 72px 0 90px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-content a {
  color: var(--deep-blue);
  font-weight: 800;
}

.legal-update {
  margin-top: 40px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 26px;
  color: var(--white);
  background: #112a5d;
}

.footer-glow {
  position: absolute;
  inset: auto -80px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(46, 183, 235, 0.24);
  filter: blur(6px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 34px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column h2 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-layout,
  .split-layout,
  .support-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-intro {
    grid-column: 1 / -1;
  }

  .hero-product {
    max-width: 650px;
  }
}

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

  .header-shell {
    min-height: 72px;
  }

  .brand {
    width: 148px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--muted);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--deep-blue);
    background: rgba(46, 183, 235, 0.12);
  }

  .main-nav .nav-cta,
  .main-nav .nav-cta:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--pink));
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(1.4rem, 7.8vw, 2.18rem);
  }

  .hero-metrics,
  .feature-grid,
  .process-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-panel {
    grid-template-columns: 56px 1fr;
    min-height: 420px;
  }

  .product-sidebar {
    gap: 14px;
  }

  .sidebar-dot {
    width: 24px;
    height: 24px;
  }

  .inbox-preview {
    padding: 18px;
  }

  .automation-preview {
    padding: 0 18px 22px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .flow-line {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding: 64px 0;
  }

  .cta-layout,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .logo-track span,
  .channel-list span {
    min-width: 118px;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .support-form,
  .contact-panel {
    padding: 22px;
  }
}

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