:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-strong: #eef2ff;
  --text: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32rem),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.11), transparent 34rem),
    var(--bg);
  line-height: 1.6;
}

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

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

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

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #334155;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: #eff6ff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.65rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.15rem;
}

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

.hero-subtitle,
.section-lead {
  font-size: 1.12rem;
  max-width: 680px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.30);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: min(290px, 78vw);
  height: 540px;
  padding: 28px 22px;
  border-radius: 38px;
  background: linear-gradient(160deg, #111827, #312e81);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.phone-top {
  width: 72px;
  height: 7px;
  margin: 0 auto 34px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

.app-tile {
  width: 68px;
  height: 68px;
  margin: 0 10px 16px 0;
  display: inline-block;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
}

.tile-two {
  background: linear-gradient(135deg, #a855f7, #2563eb);
}

.tile-three {
  background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.app-panel {
  height: 210px;
  margin-top: 18px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 30%, rgba(255, 255, 255, 0.24) 30% 100%),
    rgba(255, 255, 255, 0.12);
}

.floating-card {
  position: absolute;
  padding: 14px 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.card-ai {
  top: 54px;
  left: 22px;
}

.card-saas {
  right: 0;
  bottom: 78px;
}

.section {
  padding: 78px 0;
}

.page-shell .section:first-child {
  padding-top: 70px;
}

.soft-section {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(238, 242, 255, 0.6));
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}

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

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

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

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

.feature-card,
.product-card,
.contact-card,
.contact-form,
.info-panel,
.service-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.feature-card,
.product-card,
.contact-card,
.contact-form,
.info-panel {
  padding: 26px;
}

.feature-card p,
.product-card p {
  margin-bottom: 0;
}

.icon-block,
.app-icon {
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

.icon-block {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.app-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  border-radius: 18px;
  font-size: 1.05rem;
}

.gradient-one {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.gradient-two {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.gradient-three {
  background: linear-gradient(135deg, #0f766e, #22c55e);
}

.gradient-four {
  background: linear-gradient(135deg, #db2777, #7c3aed);
}

.gradient-five {
  background: linear-gradient(135deg, #1e40af, #0f172a);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.store-row a {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.split-section,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  margin: 0;
  padding: 16px 18px 16px 46px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.cta-section {
  padding: 40px 0 88px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #1d4ed8, #6d28d9);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: #fff;
  max-width: 720px;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.page-hero {
  text-align: center;
}

.page-hero .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.content-block p {
  font-size: 1.05rem;
}

.info-panel h3,
.contact-card h2 {
  margin-bottom: 16px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 24px;
}

.service-item .icon-block {
  margin-bottom: 0;
}

.product-note {
  margin-top: 24px;
  font-weight: 700;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: #334155;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.18);
  border-color: var(--primary);
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-weight: 700;
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

.center-section {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0f172a;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 40px 0 28px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 24px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(203, 213, 225, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

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

  .hero {
    padding-top: 58px;
  }

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

  .phone-mockup {
    height: 430px;
  }

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

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

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

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero {
    padding: 46px 0 54px;
  }

  .hero-grid {
    gap: 34px;
  }

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

  .phone-mockup {
    width: 230px;
    height: 390px;
    border-radius: 30px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .row-heading,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid.four,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1180px) {
  :root {
    --container: 1360px;
  }

  .nav {
    min-height: 72px;
  }

  .premium-hero {
    min-height: auto;
    align-items: start;
    padding: 88px 0 72px;
  }

  .premium-hero .hero-grid {
    grid-template-columns: minmax(430px, 0.86fr) minmax(560px, 1.14fr);
    gap: 64px;
    align-items: center;
  }

  .premium-hero h1 {
    max-width: 720px;
    font-size: clamp(4rem, 4.45vw, 5.35rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 560px;
    font-size: 1.08rem;
  }

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

  .product-scene {
    justify-self: end;
    width: 100%;
    min-height: 500px;
  }

  .dashboard-mockup {
    width: min(100%, 680px);
    min-height: 410px;
  }

  .phone-primary {
    left: 4%;
  }

  .phone-secondary {
    right: 4%;
  }

  .trust-strip {
    margin-top: 0;
  }
}

/* Premium visual layer */
:root {
  --shadow-strong: 0 30px 80px rgba(37, 99, 235, 0.18);
}

body {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(37, 99, 235, 0.05) 18% 18.35%, transparent 18.35% 42%, rgba(124, 58, 237, 0.045) 42% 42.35%, transparent 42.35% 100%);
  opacity: 0.9;
}

.premium-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.premium-hero::before,
.premium-hero::after {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.32;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.premium-hero::before {
  right: -12rem;
  top: 2rem;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.36), transparent 68%);
}

.premium-hero::after {
  left: -15rem;
  bottom: -12rem;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 68%);
  animation-delay: -4s;
}

.premium-hero .hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}

.premium-hero h1 {
  font-size: clamp(2.65rem, 5vw, 5.15rem);
}

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

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--text);
  font-size: 1rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-image-wrap {
  min-height: 520px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 9% 4% 7%;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(124, 58, 237, 0.22));
  filter: blur(28px);
}

.hero-image {
  width: min(100%, 720px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: floatImage 6s ease-in-out infinite;
}

.product-scene {
  min-height: 560px;
  isolation: isolate;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease;
}

.product-scene::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(37, 99, 235, 0.28), transparent 38%),
    radial-gradient(circle at 70% 66%, rgba(124, 58, 237, 0.22), transparent 42%);
  filter: blur(10px);
  opacity: 0.86;
  z-index: -2;
  animation: drift 10s ease-in-out infinite alternate;
}

.product-scene::after {
  content: "";
  position: absolute;
  inset: 78% 10% auto;
  height: 42px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.16);
  filter: blur(22px);
  z-index: -1;
}

.dashboard-mockup {
  width: min(100%, 620px);
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92)),
    #fff;
  box-shadow: 0 34px 90px rgba(37, 99, 235, 0.18);
  animation: floatImage 6.5s ease-in-out infinite;
}

.mockup-topbar {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #93c5fd;
}

.mockup-topbar span:nth-child(2) {
  background: #c4b5fd;
}

.mockup-topbar span:nth-child(3) {
  background: #67e8f9;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
}

.mockup-sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
}

.mockup-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: #dbeafe;
}

.mockup-sidebar span:first-child {
  width: 72%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

.mockup-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.chart-card {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.large-chart {
  grid-row: span 2;
  min-height: 252px;
}

.large-chart > span {
  display: block;
  width: 46%;
  height: 12px;
  border-radius: 999px;
  background: #dbeafe;
}

.chart-bars {
  height: 174px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 30px;
}

.chart-bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #60a5fa, #7c3aed);
  animation: barRise 2.8s ease-in-out infinite;
}

.chart-bars i:nth-child(1) {
  height: 42%;
}

.chart-bars i:nth-child(2) {
  height: 72%;
  animation-delay: -0.5s;
}

.chart-bars i:nth-child(3) {
  height: 56%;
  animation-delay: -1s;
}

.chart-bars i:nth-child(4) {
  height: 88%;
  animation-delay: -1.5s;
}

.chart-bars i:nth-child(5) {
  height: 64%;
  animation-delay: -2s;
}

.ai-card b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

.ai-card span {
  display: block;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e0e7ff;
}

.ai-card span:last-child {
  width: 66%;
}

.mini-chart {
  background:
    radial-gradient(circle at 72% 28%, rgba(124, 58, 237, 0.18), transparent 36%),
    linear-gradient(135deg, #eff6ff, #fff);
}

.scene-phone {
  position: absolute;
  width: 150px;
  height: 304px;
  padding: 22px 16px;
  border: 7px solid #111827;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #eef2ff);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.24);
  animation: floatCard 5.8s ease-in-out infinite;
}

.phone-primary {
  left: 8%;
  bottom: 34px;
  transform: rotate(-8deg);
}

.phone-secondary {
  right: 7%;
  bottom: 58px;
  transform: rotate(7deg);
  animation-delay: -2s;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 52px;
  height: 12px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
}

.phone-app-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

.scene-phone span {
  display: block;
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: #c7d2fe;
}

.scene-phone span:nth-of-type(2) {
  width: 72%;
}

.phone-chart {
  height: 112px;
  margin-top: 24px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(37, 99, 235, 0.16) 22px 26px);
}

.phone-list {
  height: 122px;
  margin-top: 24px;
  border-radius: 18px;
  background:
    linear-gradient(#dbeafe 0 12px, transparent 12px 24px),
    linear-gradient(#ede9fe 0 12px, transparent 12px 24px),
    #f8fafc;
  background-size: 80% 24px, 58% 24px, auto;
  background-position: 14px 20px, 14px 74px, 0 0;
  background-repeat: no-repeat;
}

.premium-hero .floating-card {
  animation: floatCard 5.5s ease-in-out infinite;
}

.premium-hero .card-ai {
  top: 42px;
  left: -8px;
}

.premium-hero .card-saas {
  right: -6px;
  bottom: 74px;
  animation-delay: -2.4s;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  width: 18px;
  height: 18px;
  right: 10%;
  top: 14%;
  background: #38bdf8;
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.7);
  animation: pulseOrb 3s ease-in-out infinite;
}

.orb-two {
  width: 12px;
  height: 12px;
  left: 12%;
  bottom: 16%;
  background: #a78bfa;
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.7);
  animation: pulseOrb 3.7s ease-in-out infinite;
}

.trust-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.74);
  border-bottom: 1px solid rgba(226, 232, 240, 0.74);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

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

.trust-grid span {
  color: #475569;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

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

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: transform 600ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

.feature-card,
.product-card,
.contact-card,
.service-item {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.product-card:hover,
.contact-card:hover,
.service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.10);
}

.app-showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.app-showcase-card .app-icon,
.app-showcase-card h2,
.app-showcase-card h3,
.app-showcase-card p,
.app-showcase-card .store-row {
  position: relative;
  z-index: 1;
}

.app-showcase-card h2,
.app-showcase-card h3,
.app-showcase-card p {
  padding-right: 112px;
}

.app-showcase-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -24% 30%;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
}

.mini-screen {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 102px;
  height: 138px;
  padding: 16px 12px;
  border-radius: 22px;
  background: linear-gradient(160deg, #0f172a, #1e3a8a);
  box-shadow: 0 18px 42px rgba(30, 64, 175, 0.22);
  animation: floatCard 6s ease-in-out infinite;
}

.mini-screen span {
  display: block;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.mini-screen span:nth-child(2) {
  width: 70%;
}

.mini-screen span:nth-child(3) {
  width: 86%;
  height: 44px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.92), rgba(167, 139, 250, 0.88));
}

.ai-screen {
  background: linear-gradient(160deg, #312e81, #6d28d9);
  animation-delay: -1.5s;
}

.green-screen {
  background: linear-gradient(160deg, #064e3b, #0f766e);
  animation-delay: -2.6s;
}

.visual-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 44px;
}

.showcase-copy .btn {
  margin-top: 14px;
}

.workflow-board {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.86)),
    #fff;
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease;
}

.workflow-board::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--purple));
}

.workflow-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  padding: 18px 18px 18px 0;
  margin-left: 8px;
  border-radius: 8px;
}

.workflow-card span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px #fff;
}

.workflow-card strong {
  font-size: 1.04rem;
}

.workflow-card em {
  color: var(--muted);
  font-style: normal;
}

.workflow-card.active {
  background: rgba(37, 99, 235, 0.06);
}

.cta-box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 18rem),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.22), transparent 18rem),
    linear-gradient(135deg, #1d4ed8, #6d28d9);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -10%;
  width: 80%;
  height: 220%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: sheen 5.5s ease-in-out infinite;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease var(--reveal-delay, 0ms), transform 720ms ease var(--reveal-delay, 0ms);
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(26px, -18px, 0) scale(1.06);
  }
}

@keyframes floatImage {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.38;
  }
}

@keyframes sheen {
  0%,
  45% {
    transform: translateX(-120%) rotate(24deg);
  }
  100% {
    transform: translateX(220%) rotate(24deg);
  }
}

@keyframes barRise {
  0%,
  100% {
    transform: scaleY(0.92);
  }
  50% {
    transform: scaleY(1.06);
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .premium-hero {
    min-height: auto;
  }

  .premium-hero .hero-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 420px;
  }

  .product-scene {
    min-height: 520px;
  }

  .dashboard-mockup {
    width: min(100%, 640px);
  }

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

@media (max-width: 760px) {
  .premium-hero h1 {
    font-size: 2.45rem;
  }

  .hero-metrics,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: auto;
  }

  .product-scene {
    min-height: 520px;
    overflow: visible;
  }

  .dashboard-mockup {
    min-height: auto;
    padding: 14px;
  }

  .mockup-grid,
  .mockup-main {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }

  .large-chart {
    min-height: 188px;
  }

  .chart-bars {
    height: 116px;
  }

  .scene-phone {
    width: 118px;
    height: 240px;
    border-radius: 26px;
  }

  .phone-primary {
    left: 0;
    bottom: -20px;
  }

  .phone-secondary {
    right: 0;
    bottom: -6px;
  }

  .hero-image {
    width: 100%;
  }

  .mini-screen {
    position: relative;
    inset: auto;
    margin: 0 0 22px;
  }

  .app-showcase-card {
    min-height: auto;
  }

  .app-showcase-card h2,
  .app-showcase-card h3,
  .app-showcase-card p {
    padding-right: 0;
  }

  .workflow-board {
    padding: 20px;
  }

  .workflow-board::before {
    left: 44px;
  }
}
