:root {
  --ink: #182033;
  --muted: #667085;
  --line: #e7eaf0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --coral: #f24d6f;
  --blue: #2c8cff;
  --amber: #ffad0f;
  --mint: #13bfa6;
  --shadow: 0 18px 48px rgba(24, 32, 51, 0.1);
  --radius: 8px;
  --header-height: 76px;
  --scroll-progress: 0;
  --cursor-x: 50%;
  --cursor-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(44, 140, 255, 0.08), transparent 22% 78%, rgba(242, 77, 111, 0.08)),
    repeating-linear-gradient(90deg, rgba(24, 32, 51, 0.035) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(24, 32, 51, 0.025) 0 1px, transparent 1px 82px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 70%);
  content: "";
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.section {
  padding: 104px 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(231, 234, 240, 0.9);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral), var(--blue), var(--mint));
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(24, 32, 51, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: logoPulse 4s ease-in-out infinite;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
  color: #4c5568;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 26px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 3px;
  background: var(--amber);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.45) 45%, transparent 58% 100%);
  content: "";
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:hover::after {
  transform: translateX(130%);
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn svg,
.icon-button svg,
.feature-strip svg,
.feature-card svg,
.check-list svg,
.final-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.btn-primary {
  color: #151515;
  background: var(--amber);
  box-shadow: 0 14px 28px rgba(255, 173, 15, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(24, 32, 51, 0.08);
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, 0.98) 0 36%, rgba(255, 255, 255, 0.76) 52%, rgba(246, 248, 251, 0.22) 100%),
    #fff;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(36vw, 460px);
  background:
    linear-gradient(153deg, transparent 0 18%, var(--coral) 18% 43%, transparent 43%),
    linear-gradient(26deg, var(--blue) 0 72%, transparent 72%);
  clip-path: polygon(0 0, 92% 12%, 78% 100%, 0 100%);
  opacity: 0.88;
  content: "";
  z-index: -2;
  animation: blobWave 9s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(48vw, 620px);
  background:
    linear-gradient(95deg, transparent 0 42%, rgba(255, 173, 15, 0.9) 42% 48%, transparent 48%),
    linear-gradient(95deg, transparent 0 50%, rgba(242, 77, 111, 0.9) 50% 56%, transparent 56%),
    linear-gradient(95deg, transparent 0 58%, rgba(44, 140, 255, 0.9) 58% 64%, transparent 64%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 12% 100%);
  opacity: 0.28;
  content: "";
  z-index: -2;
  animation: stripeDrift 7s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 84px 0 76px;
  animation: revealUp 0.85s ease both;
}

.hero-content > * {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.faq-layout h2,
.contact-copy h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(40px, 5vw, 62px);
  background: linear-gradient(94deg, #111827 0%, #182033 42%, #f24d6f 58%, #2c8cff 76%, #111827 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleFlow 9s ease-in-out infinite;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 0;
  color: #2f394b;
  font-size: 18px;
  font-weight: 600;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 46px 0 0;
}

.hero-stats div {
  position: relative;
  padding: 18px 18px 16px;
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(24, 32, 51, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-stats div::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 173, 15, 0.14), transparent);
  content: "";
  transform: translateX(-110%);
}

.hero-stats div:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(24, 32, 51, 0.14);
}

.hero-stats div:hover::after {
  animation: cardShine 0.85s ease;
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-art::before {
  position: absolute;
  inset: 12% 0 0 40%;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(255, 173, 15, 0.22) 18% 20%, transparent 20% 38%, rgba(44, 140, 255, 0.2) 38% 40%, transparent 40% 100%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  filter: blur(0.2px);
  translate: var(--parallax-art-x, 0) 0;
  animation: lightSweep 6.5s ease-in-out infinite;
}

.hero-phone {
  position: absolute;
  right: max(42px, calc((100vw - 1160px) / 2));
  bottom: 38px;
  width: min(29vw, 330px);
  min-width: 246px;
  filter: drop-shadow(0 30px 40px rgba(24, 32, 51, 0.22));
  translate: var(--parallax-phone-x, 0) var(--parallax-phone-y, 0);
  animation: phoneFloat 5.5s ease-in-out infinite;
}

.hero-panel {
  position: absolute;
  right: min(36vw, 420px);
  bottom: 128px;
  width: 150px;
  opacity: 0.78;
  filter: drop-shadow(0 22px 28px rgba(44, 140, 255, 0.18));
  animation: smallFloat 4.8s ease-in-out infinite;
}

.hero-shot {
  position: absolute;
  width: 148px;
  height: 320px;
  object-fit: cover;
  border: 8px solid #151515;
  border-radius: 32px;
  box-shadow: var(--shadow);
  opacity: 0.82;
  transition: transform 0.25s ease;
}

.hero-shot-left {
  right: min(34vw, 400px);
  top: 116px;
  transform: rotate(-7deg);
  animation: cardFloatLeft 5.8s ease-in-out infinite;
}

.hero-shot-right {
  right: max(32px, calc((100vw - 1180px) / 2));
  top: 96px;
  transform: rotate(6deg);
  animation: cardFloatRight 6.2s ease-in-out infinite;
}

.feature-strip {
  position: relative;
  z-index: 3;
  padding: 22px 0;
  background: var(--ink);
  color: #fff;
}

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

.strip-grid div {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.strip-grid div:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.strip-grid div:nth-child(1) svg {
  color: var(--amber);
}

.strip-grid div:nth-child(2) svg {
  color: var(--mint);
}

.strip-grid div:nth-child(3) svg {
  color: var(--coral);
}

.strip-grid div:nth-child(4) svg {
  color: #78b8ff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2,
.split-copy h2,
.faq-layout h2,
.contact-copy h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.section-heading p:not(.eyebrow),
.split-copy p,
.faq-layout p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.price-card,
.testimonial-grid figure,
.plugin-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 32, 51, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card::before,
.price-card::before,
.testimonial-grid figure::before,
.plugin-card::before,
.contact-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(130deg, transparent 0 34%, rgba(255, 255, 255, 0.72) 45%, transparent 56%),
    linear-gradient(120deg, rgba(44, 140, 255, 0.09), transparent 42%, rgba(242, 77, 111, 0.08));
  content: "";
  opacity: 0;
  transform: translateX(-60%);
  transition:
    opacity 0.25s ease,
    transform 0.55s ease;
}

.feature-card > *,
.price-card > *,
.testimonial-grid figure > *,
.plugin-card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover,
.price-card:hover,
.testimonial-grid figure:hover,
.plugin-card:hover,
.contact-card:hover {
  border-color: rgba(44, 140, 255, 0.28);
  box-shadow: 0 24px 58px rgba(24, 32, 51, 0.14);
  transform: translateY(-8px);
}

.feature-card:hover::before,
.price-card:hover::before,
.testimonial-grid figure:hover::before,
.plugin-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
  transform: translateX(40%);
}

.feature-card {
  padding: 28px;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--blue);
  filter: drop-shadow(0 10px 18px rgba(44, 140, 255, 0.22));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.feature-card:hover svg {
  transform: rotate(-6deg) scale(1.12);
  filter: drop-shadow(0 16px 26px rgba(44, 140, 255, 0.34));
}

.feature-card:nth-child(2) svg {
  color: var(--mint);
}

.feature-card:nth-child(3) svg {
  color: var(--coral);
}

.feature-card:nth-child(4) svg {
  color: var(--amber);
}

.feature-card h3,
.price-card h3,
.plugin-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.feature-card p,
.plugin-card p {
  margin: 0;
  color: var(--muted);
}

.use-cases,
.pricing-section,
.faq {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.split-layout.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.split-copy {
  max-width: 570px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: #fff;
  color: #364153;
  font-weight: 800;
}

.visual-stack {
  position: relative;
}

.visual-stack::before {
  position: absolute;
  inset: 8% -4% auto auto;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(44, 140, 255, 0.18);
  background: rgba(44, 140, 255, 0.06);
  content: "";
  z-index: 0;
  animation: framePulse 4.5s ease-in-out infinite;
}

.visual-stack img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 44px rgba(24, 32, 51, 0.14));
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.visual-stack:hover img {
  transform: translateY(-8px) scale(1.015);
  filter: drop-shadow(0 34px 58px rgba(24, 32, 51, 0.18));
}

.capability-band {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.message-visual::before {
  background: rgba(19, 191, 166, 0.08);
  border-color: rgba(19, 191, 166, 0.2);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #354052;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--mint);
}

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

.price-card {
  position: relative;
  padding: 34px;
}

.price-card.featured {
  border-color: rgba(242, 77, 111, 0.45);
  box-shadow: 0 22px 60px rgba(242, 77, 111, 0.12);
  transform: translateY(-10px);
  animation: featuredPulse 4s ease-in-out infinite;
}

.badge,
.plan-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: var(--coral);
  font-size: 12px;
  font-weight: 900;
  animation: badgePop 2.8s ease-in-out infinite;
}

.plan-index {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(44, 140, 255, 0.1);
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 24px;
}

.price strong {
  font-size: 48px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: #4d586b;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: #344054;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-grid figcaption {
  margin-top: 24px;
  color: var(--coral);
  font-weight: 900;
}

.gallery {
  overflow: hidden;
}

.app-slider {
  --visible-slides: 5;
  --slide-gap: 24px;
  position: relative;
  width: min(100vw, 1320px);
  margin: 0 auto;
  padding: 8px 58px 52px;
}

.slider-viewport {
  overflow: hidden;
  cursor: grab;
}

.slider-viewport.is-dragging {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: var(--slide-gap);
  will-change: transform;
  transition: transform 0.55s ease;
}

.slider-viewport.is-dragging .slider-track {
  transition: none;
}

.slider-track figure {
  flex: 0 0 calc((100% - (var(--visible-slides) - 1) * var(--slide-gap)) / var(--visible-slides));
  aspect-ratio: 9 / 19;
  margin: 0;
  overflow: hidden;
  border: 10px solid #151515;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(24, 32, 51, 0.11);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    opacity 0.45s ease;
}

.slider-track figure:hover {
  box-shadow: 0 28px 68px rgba(24, 32, 51, 0.22);
  transform: translateY(-8px) scale(1.01);
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  user-select: none;
  -webkit-user-drag: none;
}

.slider-button {
  position: absolute;
  top: 43%;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(24, 32, 51, 0.12);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.slider-button:hover {
  color: #151515;
  border-color: rgba(255, 173, 15, 0.65);
  background: var(--amber);
  transform: translateY(-2px) scale(1.08);
}

.slider-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

.slider-button-prev {
  left: 2px;
}

.slider-button-next {
  right: 2px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  max-width: min(88vw, 760px);
  transform: translateX(-50%);
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #d3d9e5;
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.slider-dots button.is-active {
  width: 26px;
  background: var(--amber);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 80px);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 32, 51, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

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

.plugin-card {
  overflow: hidden;
}

.plugin-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.plugin-card:hover img {
  transform: scale(1.055);
}

.plugin-card div {
  padding: 24px;
}

.plugin-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.94)),
    repeating-linear-gradient(120deg, rgba(44, 140, 255, 0.06) 0 1px, transparent 1px 28px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.contact-copy {
  max-width: 560px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 42px 58px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: #fbfcff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.contact-list div:hover {
  border-color: rgba(44, 140, 255, 0.3);
  background: #fff;
  transform: translateX(6px);
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.contact-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-list strong {
  color: var(--ink);
  font-size: 18px;
}

.qr-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
}

.qr-card img {
  width: 148px;
  height: 148px;
  object-fit: contain;
  animation: qrBreathe 3.8s ease-in-out infinite;
}

.qr-card figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(242, 77, 111, 0.92), rgba(44, 140, 255, 0.86), rgba(19, 191, 166, 0.74)),
    url("assets/hero-phone.png") right 14% center / auto 112% no-repeat;
  background-size: 100% 100%, auto 112%;
  animation: ctaFlow 8s ease-in-out infinite alternate;
}

.final-cta .eyebrow {
  color: #fff2c7;
}

.final-contact {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 28px 0;
  color: #667085;
  background: #111827;
}

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

.footer-brand {
  color: #fff;
}

.footer-inner p {
  margin: 0;
}

.footer-contact {
  color: #cbd5e1;
}

.footer-inner a {
  color: #d9e4ff;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-item.is-visible.price-card.featured {
  transform: translateY(-10px);
}

.reveal-item.is-visible.price-card.featured:hover {
  transform: translateY(-18px);
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 82px 0, 0 82px;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 77, 111, 0));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(242, 77, 111, 0.24));
  }
}

@keyframes blobWave {
  0% {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  100% {
    transform: translate3d(-12px, 8px, 0) scaleX(1.04);
  }
}

@keyframes stripeDrift {
  0% {
    transform: translateX(0) skewX(0deg);
  }
  100% {
    transform: translateX(18px) skewX(-2deg);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes lightSweep {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-24px);
  }
  50% {
    opacity: 0.78;
    transform: translateX(34px);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.1deg);
  }
}

@keyframes smallFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes cardFloatLeft {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}

@keyframes cardFloatRight {
  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(10px) rotate(3deg);
  }
}

@keyframes cardShine {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(110%);
  }
}

@keyframes framePulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50% {
    transform: translate3d(10px, -10px, 0);
    opacity: 0.72;
  }
}

@keyframes featuredPulse {
  0%,
  100% {
    box-shadow: 0 22px 60px rgba(242, 77, 111, 0.12);
  }
  50% {
    box-shadow: 0 28px 76px rgba(242, 77, 111, 0.2);
  }
}

@keyframes badgePop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes qrBreathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(44, 140, 255, 0));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 12px 22px rgba(44, 140, 255, 0.18));
    transform: scale(1.025);
  }
}

@keyframes ctaFlow {
  0% {
    background-position: 0 50%, right 14% center;
  }
  100% {
    background-position: 100% 50%, right 11% center;
  }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
  }

  .hero-content > * {
    max-width: 610px;
  }

  .hero-phone {
    opacity: 0.42;
  }

  .hero-shot,
  .hero-panel {
    display: none;
  }

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

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .split-copy {
    max-width: 760px;
  }

  .app-slider {
    --visible-slides: 3;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 20px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .site-nav a::after {
    bottom: 7px;
    right: auto;
    width: 30px;
  }

  .icon-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    width: 58vw;
    opacity: 0.26;
  }

  .hero::after {
    width: 78vw;
  }

  .hero-content {
    padding: 70px 0 48px;
  }

  .hero-phone {
    right: -116px;
    bottom: 20px;
    min-width: 240px;
    width: 46vw;
    opacity: 0.18;
  }

  .hero h1 {
    max-width: 620px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .section {
    padding: 76px 0;
  }

  .pricing-grid,
  .testimonial-grid,
  .plugin-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .reveal-item.is-visible.price-card.featured,
  .reveal-item.is-visible.price-card.featured:hover {
    transform: none;
  }

  .final-cta {
    background:
      linear-gradient(120deg, rgba(242, 77, 111, 0.95), rgba(44, 140, 255, 0.9)),
      url("assets/hero-phone.png") right -80px center / auto 100% no-repeat;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .qr-card img {
    width: 176px;
    height: 176px;
  }

  .app-slider {
    --visible-slides: 2;
    --slide-gap: 18px;
    padding-inline: 44px;
  }
}

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

  .brand span {
    display: none;
  }

  .header-actions .btn-small {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .hero-phone {
    right: -154px;
    opacity: 0.12;
  }

  .feature-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .price-card,
  .testimonial-grid figure {
    padding: 24px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-copy h2,
  .faq-layout h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .visual-stack::before {
    inset: 10% 0 auto;
    width: 100%;
  }

  .price strong {
    font-size: 42px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-list div {
    grid-template-columns: 34px 48px 1fr;
    gap: 10px;
    padding-inline: 12px;
  }

  .contact-list strong {
    font-size: 16px;
  }

  .app-slider {
    --visible-slides: 1;
    width: min(100%, 360px);
    padding-inline: 36px;
  }

  .slider-track figure {
    border-width: 8px;
    border-radius: 28px;
  }

  .slider-button {
    width: 38px;
    height: 38px;
  }
}

@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;
  }

  .reveal-item,
  .reveal-item.is-visible,
  .reveal-item.is-visible.price-card.featured {
    opacity: 1;
    transform: none;
  }
}
