/*
  BizOneSoft one-page website
  Edit the variables below to quickly adjust the theme, spacing, and typography.
*/

:root {
  --navy: #0f172a;
  --brand-teal: #66bec9;
  --navy-2: #111c35;
  --blue: #67bdc9;
  --indigo: #60d0df;
  --cyan: #38bdf8;
  --white: #ffffff;
  --gray-25: #fcfdff;
  --gray-50: #f8fafc;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100vh;
  color: var(--gray-900);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 108px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 15%, rgba(102, 190, 201, 0.1), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(79, 70, 229, 0.08), transparent 28%),
    var(--gray-50);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

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

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

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

.brand-logo {
  width: clamp(158px, 17vw, 160px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--gray-700);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.nav-links a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-links a.is-active {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 92px;
}

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

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(12px);
}

.hero-bg::before {
  top: -230px;
  right: -120px;
  background: radial-gradient(circle, rgba(102, 190, 201, 0.36), transparent 68%);
}

.hero-bg::after {
  bottom: -280px;
  left: 10%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.34), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal), var(--blue));
  box-shadow: 0 0 24px rgba(102, 190, 201, 0.85);
}

.eyebrow.light {
  color: var(--blue);
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.05rem, 7.4vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4.7vw, 2.7rem);
  font-weight: 800;
}


h3 {
  font-size: 1.16rem;
  font-weight: 750;
}

p {
  color: var(--gray-500);
}

.hero-text {
  max-width: 690px;
  margin-top: 26px;
  color: #cbd5e1;
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.42);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

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

.hero-metrics {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics strong {
  display: block;
  font-size: 1.72rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 30px;
}

.dashboard-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.dashboard-top,
.dashboard-grid,
.dashboard-chart {
  position: relative;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 800;
}

.dashboard-top div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
  animation: liveDot 1.35s ease-in-out infinite;
  isolation: isolate;
}

.status-dot::before,
.status-dot::after {
  position: absolute;
  inset: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.42);
  transform: translate(-50%, -50%) scale(1);
  z-index: -1;
}

.status-dot::before {
  animation: liveRing 1.35s ease-out infinite;
}

.status-dot::after {
  animation: liveRing 1.35s ease-out 0.45s infinite;
}

.badge {
  padding: 7px 10px;
  color: #dbeafe;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
}

.dashboard-chart {
  display: flex;
  align-items: end;
  height: 230px;
  gap: 14px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.32);
}

.dashboard-chart span {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #60a5fa, #4f46e5);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.28);
  animation: pulseBar 2.25s ease-in-out infinite;
}

.dashboard-chart span:nth-child(even) {
  animation-delay: 240ms;
}

.dashboard-chart span:nth-child(3n) {
  animation-delay: 420ms;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.dashboard-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-icon {
  display: inline-flex;
  margin-bottom: 16px;
  color: #4ade80;
  font-size: 0.74rem;
  font-weight: 900;
}

.dashboard-grid strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.dashboard-grid p {
  margin-top: 7px;
  color: #cbd5e1;
  font-size: 0.84rem;
  line-height: 1.48;
}

.trust-strip {
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.trust-grid {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-left: 14px;
  animation: trustMarquee 24s linear infinite;
  will-change: transform;
}

.trust-strip:hover .trust-grid {
  animation-play-state: paused;
}

.trust-grid span {
  display: grid;
  min-width: 220px;
  min-height: 58px;
  place-items: center;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--gray-25);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 680px;
  margin-top: 18px;
  font-size: 1.04rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pain-list article {
  min-height: 182px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.icon-circle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--brand-teal);
  border-radius: 14px;
  background: rgba(102, 190, 201, 0.12);
  font-weight: 900;
}

.pain-list p {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.product-card,
.proof-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.product-card:hover,
.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 190, 201, 0.32);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.feature-card {
  min-height: 318px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 64px;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.feature-card p,
.product-card p,
.proof-card p,
.process-line p {
  margin-top: 12px;
  font-size: 0.96rem;
}

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

.product-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    var(--white);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.product-top span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--brand-teal);
  border: 1px solid rgba(102, 190, 201, 0.28);
  border-radius: 16px;
  background: rgba(102, 190, 201, 0.12);
  font-weight: 900;
}

.product-top small {
  color: var(--gray-500);
  font-weight: 800;
}

.product-card h3 {
  margin-top: 62px;
}

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

.industries::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(102, 190, 201, 0.24), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

.industries .container {
  position: relative;
}

.industries p {
  color: #cbd5e1;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-tags span {
  padding: 14px 18px;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.proof-layout {
  align-items: start;
}

.proof-panel {
  position: sticky;
  top: 112px;
  padding: 34px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
}

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

.text-link:hover {
  color: var(--indigo);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.proof-card {
  min-height: 232px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.proof-card strong {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--blue);
  font-size: 0.84rem;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-line article {
  position: relative;
  min-height: 226px;
  padding: 26px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.process-line span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 58px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  font-weight: 900;
}

.contact-section {
  padding-top: 92px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 6vw, 58px);
  color: var(--white);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(37, 99, 235, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.cta-card p {
  max-width: 650px;
  color: #cbd5e1;
}

.cta-card h2 {
  margin-bottom: 18px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-grid p {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 700;
}

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

/* Reveal animation classes are activated by script.js when elements enter the viewport. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes liveDot {
  0%,
  100% {
    background: #22c55e;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.14), 0 0 18px rgba(34, 197, 94, 0.36);
    transform: scale(1);
  }
  50% {
    background: #4ade80;
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.2), 0 0 28px rgba(34, 197, 94, 0.58);
    transform: scale(1.12);
  }
}

@keyframes liveRing {
  0% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.8);
  }
}

@keyframes pulseBar {
  0%,
  100% {
    filter: saturate(1);
    transform: scaleY(1);
  }
  50% {
    filter: saturate(1.2);
    transform: scaleY(0.94);
  }
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .industries-grid,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .four-grid,
  .product-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-panel {
    position: static;
  }
}

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

  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

  .nav-links a:hover {
    background: var(--gray-50);
    transform: none;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    padding: 96px 0 66px;
  }

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

  .hero-metrics,
  .trust-grid,
  .pain-list,
  .proof-cards,
  .footer-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    min-height: 50px;
  }

  .dashboard-grid,
  .four-grid,
  .product-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .product-card {
    min-height: auto;
  }

  .feature-icon,
  .product-card h3,
  .proof-card strong,
  .process-line span {
    margin-bottom: 28px;
    margin-top: 0;
  }

  .footer-grid,
  .footer-links {
    align-items: start;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.72rem, 16vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.68rem);
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .dashboard-card {
    padding: 16px;
    border-radius: 24px;
  }

  .dashboard-chart {
    height: 180px;
    gap: 9px;
    padding: 14px;
  }

  .dashboard-chart span {
    min-width: 12px;
  }

  .dashboard-grid {
    gap: 10px;
  }

  .dashboard-grid article,
  .pain-list article,
  .feature-card,
  .product-card,
  .proof-card,
  .process-line article {
    padding: 20px;
  }
}

/* Respect visitors who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::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;
  }
}
