/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

:root {
  --ait-ink: #101827;
  --ait-muted: #667085;
  --ait-line: #d9e3f0;
  --ait-blue: #0b63ce;
  --ait-cyan: #00a6d6;
  --ait-red: #e8292f;
  --ait-green: #18a058;
  --ait-bg: #f5f8fc;
  --ait-panel: #ffffff;
}

.ait-page {
  background:
    linear-gradient(90deg, rgba(11, 99, 206, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 99, 206, 0.06) 1px, transparent 1px),
    var(--ait-bg);
  background-size: 36px 36px;
  color: var(--ait-ink);
  font-family: Inter, Arial, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

.ait-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ait-hero {
  position: relative;
  padding: 74px 0 54px;
}

.ait-hero:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.18), rgba(232, 41, 47, 0.08), rgba(24, 160, 88, 0.08));
  pointer-events: none;
}

.ait-hero-grid,
.ait-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.ait-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ait-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ait-kicker svg,
.ait-card svg,
.ait-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ait-hero h1 {
  max-width: 720px;
  margin: 16px 0;
  color: var(--ait-ink);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.ait-hero p,
.ait-flow p,
.ait-card p {
  color: var(--ait-muted);
  font-size: 18px;
  line-height: 1.65;
}

.ait-hero p {
  max-width: 660px;
}

.ait-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ait-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.ait-btn-primary {
  background: linear-gradient(135deg, var(--ait-blue), var(--ait-cyan));
  color: #fff;
  box-shadow: 0 16px 34px rgba(11, 99, 206, 0.24);
}

.ait-btn-primary:hover {
  color: #fff;
}

.ait-btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ait-line);
  color: var(--ait-ink);
}

.ait-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 32px;
}

.ait-metrics div,
.ait-console,
.ait-card,
.ait-steps li {
  border: 1px solid rgba(217, 227, 240, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.ait-metrics div {
  border-radius: 8px;
  padding: 16px;
}

.ait-metrics strong {
  display: block;
  color: var(--ait-blue);
  font-size: 28px;
  line-height: 1;
}

.ait-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--ait-muted);
  font-size: 13px;
}

.ait-console {
  border-radius: 8px;
  padding: 18px;
  min-height: 380px;
}

.ait-console-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ait-line);
}

.ait-console-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ait-line);
}

.ait-console-head span:first-child {
  background: var(--ait-red);
}

.ait-console-head span:nth-child(2) {
  background: #f5b941;
}

.ait-console-head span:nth-child(3) {
  background: var(--ait-green);
}

.ait-console-head strong {
  margin-left: auto;
  color: var(--ait-muted);
  font-size: 13px;
}

.ait-console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  border-radius: 8px;
  padding: 18px;
  background: #f8fbff;
}

.ait-console-row.active {
  border-left: 4px solid var(--ait-blue);
}

.ait-console-row span {
  font-weight: 800;
}

.ait-console-row em {
  border-radius: 999px;
  background: rgba(24, 160, 88, 0.12);
  color: var(--ait-green);
  padding: 6px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.ait-console-meter {
  height: 10px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf3fb;
}

.ait-console-meter i {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ait-blue), var(--ait-red));
  animation: ait-meter 4s ease-in-out infinite;
}

.ait-section {
  padding: 58px 0;
}

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

.ait-section h2 {
  max-width: 720px;
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.ait-card {
  border-radius: 8px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ait-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 99, 206, 0.36);
  box-shadow: 0 22px 58px rgba(16, 24, 39, 0.12);
}

.ait-card svg {
  width: 32px;
  height: 32px;
  color: var(--ait-blue);
}

.ait-card h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  letter-spacing: 0;
}

.ait-card p {
  margin: 0;
  font-size: 15px;
}

.ait-flow {
  background: #101827;
  color: #fff;
}

.ait-flow h2,
.ait-flow .ait-kicker {
  color: #fff;
}

.ait-flow p {
  color: #c9d4e5;
}

.ait-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ait-steps li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
}

.ait-steps strong {
  display: block;
  color: #74d7ff;
  font-size: 14px;
}

.ait-steps span {
  display: block;
  margin-top: 8px;
  font-size: 19px;
  font-weight: 800;
}

@keyframes ait-meter {
  0%, 100% { width: 45%; }
  50% { width: 92%; }
}

@media (max-width: 900px) {
  .ait-hero-grid,
  .ait-flow-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .ait-shell {
    width: min(100% - 24px, 1180px);
  }

  .ait-hero {
    padding: 48px 0 36px;
  }

  .ait-hero h1 {
    font-size: 42px;
  }

  .ait-hero p,
  .ait-flow p {
    font-size: 16px;
  }

  .ait-actions,
  .ait-btn {
    width: 100%;
  }

  .ait-metrics,
  .ait-card-grid,
  .ait-steps {
    grid-template-columns: 1fr;
  }

  .ait-console {
    min-height: auto;
  }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
