:root {
  color-scheme: dark;
  --bg: #05060a;
  --panel: #0d0f18;
  --panel-2: #121521;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f7fb;
  --muted: #8d92a3;
  --blue: #2b7cff;
  --cyan: #19d3ff;
  --violet: #a855f7;
  --green: #05c98a;
  --yellow: #f6c81d;
  --pink: #f02c8f;
  --orange: #ff8a1d;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --font-body: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Syne, "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 78% 8%, rgba(43, 124, 255, 0.12), transparent 32rem),
    radial-gradient(circle at 18% 26%, rgba(168, 85, 247, 0.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

::selection {
  background: rgba(43, 124, 255, 0.35);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1560px);
  min-height: 88px;
  margin: 0 auto;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(18px);
  animation: headerDrop 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.brand:hover {
  transform: translateY(-1px) scale(1.015);
}

.brand img {
  height: 52px;
  width: auto;
  max-width: 40vw;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15)) contrast(1.15) brightness(1.1);
}

.footer img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 16px rgba(43, 124, 255, 0.1)) contrast(1.15) brightness(1.1);
  margin-bottom: 16px;
}

.main-nav {
  display: flex;
  gap: 34px;
  color: #c8ccda;
  font-size: 14px;
}

.main-nav a,
.header-actions > a:not(.btn),
.footer a {
  transition: color 220ms ease, opacity 220ms ease;
}

.main-nav a:hover,
.header-actions > a:not(.btn):hover,
.footer a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  color: #d8dce8;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -60% -35%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.34), transparent 65%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

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

.btn:hover::after {
  transform: translateX(120%) rotate(8deg);
}

.btn.small {
  min-height: 42px;
  padding: 0 18px;
}

.btn.primary {
  border-color: rgba(43, 124, 255, 0.88);
  background: linear-gradient(180deg, #3489ff, #1664f4);
  box-shadow: 0 0 26px rgba(43, 124, 255, 0.45);
}

.btn.primary:hover {
  box-shadow: 0 16px 42px rgba(43, 124, 255, 0.38), 0 0 32px rgba(43, 124, 255, 0.38);
}

.btn.ghost { background: rgba(255, 255, 255, 0.06); }
.btn.purple { background: linear-gradient(180deg, #b02cff, #7e20ff); border-color: rgba(168, 85, 247, 0.7); }

.section {
  width: min(100% - 64px, 1560px);
  margin: 0 auto;
  padding: 104px 0;
  scroll-margin-top: 88px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(650px, 1fr) minmax(520px, 0.82fr);
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.blue { color: #4aa2ff; }
.red { color: #ff514f; }
.violet { color: #c586ff; }
.cyan { color: #00d7ef; }
.yellow { color: var(--yellow); }
.green { color: var(--green); }

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

h1 {
  max-width: 850px;
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(58px, 5.45vw, 98px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.gradient-text,
.muted-heading {
  display: inline;
}

.gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 180% 100%;
  animation: gradientDrift 7s ease-in-out infinite alternate;
}

.blue-cyan { background-image: linear-gradient(100deg, #4f98ff, #55e7ff); }
.violet-blue { background-image: linear-gradient(100deg, #b96cff, #408eff); }
.cyan-blue { background-image: linear-gradient(100deg, #00d7ef, #3489ff); }
.green-cyan { background-image: linear-gradient(100deg, #05c98a, #00d7ef); }
.muted-heading { color: rgba(255, 255, 255, 0.34); }

h2 {
  max-width: 980px;
  margin: 22px auto 22px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.65vw, 74px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3,
.hero-stats strong,
.price-card h3,
.dash-stats b {
  font-family: var(--font-display);
}

.hero-copy p,
.section-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-copy .eyebrow {
  animation: fadeRise 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy h1 {
  animation: fadeRise 850ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > p {
  animation: fadeRise 850ms 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy .button-row {
  animation: fadeRise 850ms 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-stats {
  animation: fadeRise 850ms 580ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-lead {
  margin: 0 auto 64px;
  text-align: center;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button-row.center { justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 14px;
}

.stat-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(43, 124, 255, 0.15);
  color: #57a9ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.hero-stats strong {
  display: block;
  font-size: 24px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.browser-card,
.conversion-card,
.review-card,
.stack-card,
.dashboard-card,
.problem,
.service-grid article,
.process-grid article,
.case,
.mini-case,
.testimonial-grid article,
.price-card,
.subscription,
.footer-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.problem,
.service-grid article,
.process-grid article,
.case,
.mini-case,
.testimonial-grid article,
.price-card {
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.problem::after,
.service-grid article::after,
.process-grid article::after,
.case::after,
.mini-case::after,
.testimonial-grid article::after,
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(255, 255, 255, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.problem:hover,
.service-grid article:hover,
.process-grid article:hover,
.case:hover,
.mini-case:hover,
.testimonial-grid article:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(83, 158, 255, 0.34);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.52), 0 0 36px rgba(43, 124, 255, 0.1);
}

.problem:hover::after,
.service-grid article:hover::after,
.process-grid article:hover::after,
.case:hover::after,
.mini-case:hover::after,
.testimonial-grid article:hover::after,
.price-card:hover::after {
  opacity: 1;
}

.browser-card {
  width: min(100%, 520px);
  margin: 130px 90px 0 auto;
  padding: 20px;
  position: relative;
  animation: floatIn 1000ms 460ms cubic-bezier(0.22, 1, 0.36, 1) both, softFloat 6s 1.4s ease-in-out infinite;
}

.browser-pin {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #62a6ff 34%, #1d5ec9 36%, #0f1b34 68%);
  animation: pulsePin 2.8s ease-in-out infinite;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.browser-top i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ef4444;
}

.browser-top i:nth-child(2) { background: #f59e0b; }
.browser-top i:nth-child(3) { background: #22c55e; }
.browser-top span {
  width: 210px;
  height: 18px;
  margin-left: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.status-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-line b {
  width: 148px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.status-line span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 201, 138, 0.16);
  color: var(--green);
  font-size: 12px;
}

.chart {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 12px;
  height: 120px;
  margin-top: 26px;
}

.chart i {
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #4593ff, #1d5ec9);
  transform-origin: bottom;
  animation: growBar 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(700ms + var(--bar-index, 0) * 70ms);
}

.chart i:nth-child(1) { --bar-index: 1; }
.chart i:nth-child(2) { --bar-index: 2; }
.chart i:nth-child(3) { --bar-index: 3; }
.chart i:nth-child(4) { --bar-index: 4; }
.chart i:nth-child(5) { --bar-index: 5; }
.chart i:nth-child(6) { --bar-index: 6; }
.chart i:nth-child(7) { --bar-index: 7; }
.chart i:nth-child(8) { --bar-index: 8; }
.chart i:nth-child(9) { --bar-index: 9; }
.chart i:nth-child(10) { --bar-index: 10; }

.chips,
.service-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chips span,
.service-grid b,
.case span,
.price-card li::before {
  color: #aeb5c7;
}

.chips span,
.service-grid b {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 500;
}

.conversion-card {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 200px;
  padding: 22px;
  animation: floatIn 850ms 650ms cubic-bezier(0.22, 1, 0.36, 1) both, softFloatSmall 5.5s 1.6s ease-in-out infinite;
}

.conversion-card span,
.stack-card span {
  color: var(--muted);
  font-size: 12px;
}

.conversion-card strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.mini-progress {
  height: 5px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2b7cff, #19d3ff);
}

.conversion-card small { color: var(--green); }

.review-card {
  position: absolute;
  left: 96px;
  bottom: 50px;
  width: 245px;
  padding: 22px;
  animation: floatIn 850ms 760ms cubic-bezier(0.22, 1, 0.36, 1) both, softFloatSmall 6.4s 1.8s ease-in-out infinite reverse;
}

.review-card strong,
.testimonial-grid strong { color: var(--yellow); }

.review-card p { margin: 8px 0 4px; }
.review-card small { color: var(--muted); }

.stack-card {
  position: absolute;
  right: 0;
  bottom: 116px;
  width: 225px;
  padding: 22px;
  animation: floatIn 850ms 850ms cubic-bezier(0.22, 1, 0.36, 1) both, softFloatSmall 5.8s 2s ease-in-out infinite;
}

.stack-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.stack-card b {
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(43, 124, 255, 0.18);
  color: #76b5ff;
  font-size: 12px;
}

.pain,
.testimonials,
.pricing,
.cta { text-align: center; }

.pricing,
.cta {
  max-width: 1180px;
}

.cta {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 160px;
}

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

.problem,
.service-grid article,
.process-grid article,
.testimonial-grid article,
.price-card {
  padding: 28px;
  text-align: left;
}

.problem span,
.service-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  font-weight: 800;
}

.problem h3,
.service-grid h3,
.process-grid h3,
.case h3,
.mini-case h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.problem p,
.service-grid p,
.process-grid p,
.testimonial-grid p,
.price-card p,
.footer p,
.footer a,
.subscription p,
.sub-features p {
  color: var(--muted);
  line-height: 1.7;
}

.red-card { background: linear-gradient(145deg, rgba(239, 68, 68, 0.22), rgba(239, 68, 68, 0.05)); }
.orange-card { background: linear-gradient(145deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05)); }
.yellow-card { background: linear-gradient(145deg, rgba(234, 179, 8, 0.18), rgba(234, 179, 8, 0.04)); }
.violet-card { background: linear-gradient(145deg, rgba(168, 85, 247, 0.22), rgba(168, 85, 247, 0.05)); }

.split {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(640px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.split h2 {
  margin-left: 0;
  text-align: left;
}

.feature-list {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.feature-list p {
  position: relative;
  padding-left: 68px;
  margin: 0;
}

.feature-list i {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(43, 124, 255, 0.18);
  color: #55a7ff;
  font-style: normal;
  font-weight: 800;
}

.feature-list b,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-wrap {
  position: relative;
}

.floating-label {
  position: absolute;
  right: -28px;
  top: -34px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(43, 124, 255, 0.45);
  border-radius: 999px;
  background: rgba(7, 16, 32, 0.92);
  color: #4aa2ff;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.dashboard-card {
  padding: 26px;
  background: #10131d;
}

.dash-header,
.dash-stats,
.activity p,
.bars p,
.footer-bottom,
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-header { color: var(--muted); }
.dash-header span { color: #aab2c5; }
.dash-header span::first-letter { color: #2b7cff; }

.dash-stats {
  gap: 16px;
  margin-top: 28px;
}

.dash-stats div {
  flex: 1;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.dash-stats span,
.dash-stats small,
.bars span,
.bars b { color: var(--muted); }

.dash-stats b {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.dash-stats small { color: var(--green); }

.activity {
  margin: 20px 0;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.activity p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd1df;
}

.activity p:last-child { border-bottom: 0; }

.activity i {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--green);
}

.bars i {
  display: block;
  height: 8px;
  margin: 8px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.bars em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), #3b82f6, var(--cyan), #3b82f6, var(--violet));
  background-size: 220% 100%;
  transform-origin: left;
  animation:
    growLine 1100ms cubic-bezier(0.22, 1, 0.36, 1) both,
    progressShimmer 3.8s ease-in-out infinite alternate;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-grid article {
  min-height: 245px;
  background:
    radial-gradient(circle at 100% 0, rgba(43, 124, 255, 0.13), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.service-grid a { color: #64a6ff; font-weight: 700; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid article {
  position: relative;
  min-height: 260px;
}

.process-grid small {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.process-grid strong {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 82px;
}

.process-grid h3 { margin-top: 50px; }

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}

.section-title-row h2 {
  margin-left: 0;
  margin-bottom: 0;
  text-align: left;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.75fr;
  gap: 18px;
}

.case {
  overflow: hidden;
  min-height: 330px;
}

.case.large {
  grid-row: span 2;
  min-height: 560px;
}

.case-image {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin: -28px -28px 26px;
  transition: transform 360ms ease, filter 360ms ease;
}

.case:hover .case-image {
  transform: scale(1.035);
  filter: saturate(1.08) brightness(1.04);
}

.case.large .case-image { min-height: 320px; }

.gradient-one { background: linear-gradient(135deg, #22d3ee, #ef4444); }
.gradient-two { background: linear-gradient(135deg, #e0f2fe, #fca5a5); color: #111827; }

.phone {
  background:
    radial-gradient(circle at 58% 52%, rgba(91, 108, 255, 0.8), transparent 8rem),
    linear-gradient(135deg, #f8fafc, #5b5f6b 45%, #0f172a);
}

.mock-browser {
  width: 72%;
  min-height: 145px;
  padding: 46px 24px;
  border-radius: 8px;
  background: #201327;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  transition: transform 360ms ease;
}

.case:hover .mock-browser {
  transform: translateY(-5px);
}

.mock-browser b { color: #fb7185; }
.mock-browser.light { background: #f8fafc; color: #111827; }

.case p,
.case span,
.mini-case p {
  color: var(--muted);
}

.mini-case {
  min-height: 140px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(91, 33, 182, 0.32), rgba(91, 33, 182, 0.1));
}

.mini-case.pink { background: linear-gradient(145deg, rgba(219, 39, 119, 0.26), rgba(219, 39, 119, 0.08)); }
.mini-case.blue { background: linear-gradient(145deg, rgba(37, 99, 235, 0.26), rgba(37, 99, 235, 0.08)); }

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

.testimonial-grid article {
  min-height: 300px;
}

.testimonial-grid b,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span { color: var(--muted); }

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 44px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-toggle button,
.pricing-toggle span {
  min-width: 150px;
  padding: 12px 18px;
  border: 0;
  border-radius: 7px;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.pricing-toggle button {
  background: var(--blue);
  box-shadow: 0 0 22px rgba(43, 124, 255, 0.55);
}

.pricing-toggle span { color: var(--muted); }

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

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(43, 124, 255, 0.74);
  background: linear-gradient(145deg, rgba(43, 124, 255, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 40px rgba(43, 124, 255, 0.22);
}

.price-card small {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(43, 124, 255, 0.6);
}

.price-card h3 {
  margin: 12px 0;
  font-size: 42px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: #b8becc;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: #57a9ff;
}

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

.subscription {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  margin-top: 34px;
  padding: 36px;
  text-align: left;
  background: linear-gradient(135deg, rgba(126, 32, 255, 0.3), rgba(43, 124, 255, 0.08));
}

.subscription h3 {
  margin: 20px 0 16px;
  font-size: 30px;
}

.subscription h3 b {
  display: block;
  color: #c586ff;
}

.sub-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: center;
}

.sub-features p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.cta h2 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 76px);
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 48px;
  color: var(--muted);
}

.trust-row span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: middle;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 28px;
}

.footer-main,
.footer-cta,
.footer-bottom {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 76px;
}

.footer h4 {
  margin: 0 0 22px;
  color: #c7ccda;
  font-size: 13px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 12px;
}

.footer-cta .btn {
  display: inline-flex;
  min-width: 170px;
  margin-bottom: 0;
  color: #fff;
  line-height: 1;
}

.footer-cta .btn span {
  display: inline;
  margin: 0;
  color: inherit;
}

.footer-cta {
  margin-top: 44px;
  min-height: 82px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(43, 124, 255, 0.16), rgba(43, 124, 255, 0.06));
}

.footer-cta span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #666b77;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

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

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

@keyframes pulsePin {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(43, 124, 255, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(43, 124, 255, 0);
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0.12);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes growLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes progressShimmer {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes gradientDrift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes growLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav { display: none; }

  .hero,
  .split,
  .subscription {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 40px;
  }

  .hero-visual { min-height: 500px; }

  .problem-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .process-grid,
  .work-grid,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .case.large { grid-row: auto; }
}

@media (max-width: 680px) {
  .section {
    width: 100%;
    padding: 64px 20px;
  }

  .site-header {
    width: 100%;
    padding: 0 20px;
    min-height: 64px;
  }

  .header-actions > a:first-child { display: none; }

  .brand img,
  .footer img {
    width: auto;
    height: 32px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-copy p,
  .section-lead {
    font-size: 16px;
  }

  .button-row,
  .hero-stats,
  .trust-row,
  .footer-cta,
  .footer-bottom {
    flex-direction: column;
  }

  .hero-stats,
  .problem-grid,
  .service-grid,
  .process-grid,
  .work-grid,
  .testimonial-grid,
  .pricing-grid,
  .sub-features,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    align-items: flex-start;
    gap: 24px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .browser-card {
    margin: 70px 0 0 0;
    width: 100%;
  }

  .conversion-card {
    top: -20px;
    right: 0;
    width: 180px;
  }

  .review-card {
    left: 0;
    bottom: -20px;
    width: 200px;
  }

  .stack-card {
    right: 0;
    bottom: 40px;
    width: 180px;
  }

  .dash-stats,
  .section-title-row {
    display: grid;
    gap: 16px;
  }

  .floating-label {
    right: auto;
    left: 10px;
    top: -20px;
  }

  .pricing-toggle {
    width: 100%;
  }

  .pricing-toggle button,
  .pricing-toggle span {
    min-width: 0;
    flex: 1;
  }
}
