:root {
  color-scheme: light;
  --ink: #171b22;
  --muted: #5f6673;
  --line: #e5e9f0;
  --paper: #fbfcff;
  --soft: #f3f6fa;
  --brand: #0a3877;
  --brand-strong: #062b5f;
  --brand-soft: #e9f1ff;
  --cyan: #20c7d8;
  --teal: #00a98f;
  --orange: #f29900;
  --red: #d94336;
  --indigo: #4c63c7;
  --violet: #7257d6;
  --brown: #8a604d;
  --shadow: 0 28px 80px rgba(30, 42, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 7%, rgba(43, 111, 214, 0.18), transparent 24%),
    radial-gradient(
      circle at 84% 16%,
      rgba(32, 199, 216, 0.16),
      transparent 25%
    ),
    radial-gradient(circle at 18% 72%, rgba(10, 56, 119, 0.1), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(10, 56, 119, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 56, 119, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 72%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: auto -120px 8% auto;
  z-index: -1;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(43, 111, 214, 0.15), transparent 68%);
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(229, 233, 240, 0.82);
  background: rgba(251, 252, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
}

.header-action {
  padding: 0 16px;
  border: 1px solid rgba(10, 56, 119, 0.14);
  color: var(--brand);
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.primary-action {
  padding: 0 18px;
  color: #f5f8ff;
  background: linear-gradient(135deg, var(--brand), #2b6fd6 58%, var(--cyan));
  box-shadow: 0 16px 30px rgba(10, 56, 119, 0.24);
}

.primary-action:hover {
  background: var(--brand-strong);
}

.secondary-action {
  padding: 0 18px;
  border: 1px solid rgba(10, 56, 119, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: calc(100svh - 68px);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 6vw, 86px) 32px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 18%, rgba(43, 111, 214, 0.28), transparent 20%),
    radial-gradient(circle at 88% 70%, rgba(32, 199, 216, 0.2), transparent 23%),
    radial-gradient(circle at 12% 82%, rgba(10, 56, 119, 0.12), transparent 22%),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(233, 241, 255, 0.9) 52%,
      rgba(234, 251, 247, 0.72) 100%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  right: -210px;
  top: -170px;
  border: 1px solid rgba(43, 111, 214, 0.14);
  box-shadow:
    inset 0 0 0 42px rgba(255, 255, 255, 0.2),
    inset 0 0 0 86px rgba(43, 111, 214, 0.06);
}

.hero::after {
  width: 240px;
  height: 240px;
  left: 42%;
  bottom: 34px;
  border: 1px solid rgba(32, 199, 216, 0.18);
  box-shadow: inset 0 0 0 26px rgba(32, 199, 216, 0.06);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-shape {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.74;
  pointer-events: none;
}

.hero-shape-one {
  width: 320px;
  height: 320px;
  right: 34%;
  top: 12%;
  background: radial-gradient(
    circle,
    rgba(43, 111, 214, 0.28),
    transparent 68%
  );
}

.hero-shape-two {
  width: 360px;
  height: 360px;
  right: -92px;
  bottom: 24px;
  background: radial-gradient(circle, rgba(32, 199, 216, 0.22), transparent 68%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(110deg, var(--brand), #2b6fd6 50%, #00a98f);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(4.2rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: #344052;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(10, 56, 119, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #344052;
  font-size: 0.88rem;
  font-weight: 760;
  box-shadow: 0 10px 30px rgba(30, 42, 62, 0.08);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  min-height: 640px;
  justify-self: center;
  padding: 22px;
  border: 1px solid #d9e1ec;
  border-radius: 32px;
  background: linear-gradient(145deg, #10151d, #1c2635), #10151d;
  box-shadow:
    0 34px 90px rgba(10, 56, 119, 0.2),
    0 0 0 10px rgba(255, 255, 255, 0.48),
    var(--shadow);
  overflow: hidden;
}

.phone-shell::before {
  position: absolute;
  inset: 10px;
  content: "";
  border-radius: 24px;
  background: #f8f9fb;
}

.phone-status,
.app-card,
.quick-grid,
.activity-list {
  position: relative;
}

.phone-status {
  width: 86px;
  height: 6px;
  margin: 0 auto 26px;
  border-radius: 99px;
  background: #222936;
}

.app-card-top {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 22px;
  border-radius: 18px;
  color: #f4f7fc;
  background: linear-gradient(135deg, var(--brand), #2b6fd6 58%, var(--cyan));
}

.app-card span,
.quick-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 650;
}

.app-card strong {
  font-size: 1.45rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.quick-grid div,
.activity-list div {
  border: 1px solid #e6eaf0;
  background: #ffffff;
}

.quick-grid div {
  display: grid;
  gap: 5px;
  min-height: 96px;
  align-content: center;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.quick-grid div:nth-child(1) {
  border-color: rgba(33, 150, 243, 0.25);
}

.quick-grid div:nth-child(2) {
  border-color: rgba(242, 153, 0, 0.28);
}

.quick-grid div:nth-child(3) {
  border-color: rgba(0, 191, 165, 0.28);
}

.quick-grid div:nth-child(4) {
  border-color: rgba(217, 67, 54, 0.25);
}

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

.quick-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.activity-list {
  display: grid;
  gap: 10px;
}

.activity-list div {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 12px;
  border-radius: 14px;
}

.activity-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.activity-list div:nth-child(2) span {
  background: var(--red);
}

.activity-list div:nth-child(3) span {
  background: var(--orange);
}

.activity-list p,
.activity-list b {
  margin: 0;
  font-size: 0.9rem;
}

.activity-list p {
  color: var(--muted);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) 0;
}

.section::before {
  position: absolute;
  inset: 22px auto auto -64px;
  z-index: -1;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(43, 111, 214, 0.08), transparent 70%);
  pointer-events: none;
}

.visual-section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(48px, 6vw, 74px);
}

.visual-section::before {
  position: absolute;
  inset: -36px -22px auto auto;
  z-index: -1;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(32, 199, 216, 0.14), transparent 70%);
}

.visual-section img,
.reports-layout img {
  width: 100%;
  border: 1px solid rgba(221, 231, 245, 0.9);
  border-radius: 18px;
  box-shadow:
    0 26px 80px rgba(30, 42, 62, 0.14),
    0 0 0 10px rgba(255, 255, 255, 0.5);
}

.intro-section,
.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

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

.feature-card,
.ops-grid article {
  position: relative;
  min-height: 246px;
  padding: 24px;
  border: 1px solid rgba(221, 231, 245, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.98)
    ),
    #ffffff;
  box-shadow: 0 16px 42px rgba(30, 42, 62, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  overflow: hidden;
}

.feature-card::after,
.ops-grid article::after {
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(43, 111, 214, 0.12), transparent 68%);
  pointer-events: none;
}

.feature-card:hover,
.ops-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 56, 119, 0.18);
  box-shadow: 0 24px 58px rgba(30, 42, 62, 0.12);
}

.feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand);
  font-size: 0.96rem;
  font-weight: 900;
}

.feature-card h3,
.ops-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p,
.ops-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.accent-blue .feature-icon {
  background: #2196f3;
}

.accent-orange .feature-icon {
  background: var(--orange);
}

.accent-teal .feature-icon {
  background: var(--teal);
}

.accent-red .feature-icon {
  background: var(--red);
}

.accent-indigo .feature-icon {
  background: var(--indigo);
}

.accent-brown .feature-icon {
  background: var(--brown);
}

.workflow-band {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 12%, rgba(32, 199, 216, 0.24), transparent 22%),
    radial-gradient(circle at 18% 84%, rgba(43, 111, 214, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(15, 17, 21, 0.95), rgba(10, 56, 119, 0.94)),
    var(--soft);
  color: #f5f8ff;
  overflow: hidden;
}

.workflow-band::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -160px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 0 0 48px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.workflow-band .section-kicker {
  color: #8ee4ee;
}

.workflow-band p {
  color: #cbd8ec;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  counter-increment: workflow;
}

.workflow-list li::before {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0f172a;
  background: linear-gradient(135deg, #ffffff, #8ee4ee);
  content: counter(workflow);
  font-weight: 850;
}

.workflow-list strong,
.workflow-list span {
  grid-column: 2;
}

.workflow-list strong {
  margin-top: 2px;
}

.workflow-list span {
  color: #cbd8ec;
}

.reports-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

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

.report-grid div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(221, 231, 245, 0.94);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f8fbff), #ffffff;
  color: #2f3a4a;
  font-weight: 750;
  box-shadow: 0 14px 36px rgba(30, 42, 62, 0.07);
}

.platform-section {
  border-top: 1px solid var(--line);
}

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

.ops-grid article {
  min-height: 190px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(32px, 5vw, 48px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(221, 231, 245, 0.96);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 10%, rgba(43, 111, 214, 0.18), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(32, 199, 216, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbff 58%, #eef7ff);
  box-shadow: 0 28px 80px rgba(30, 42, 62, 0.12);
}

.contact-section::before {
  position: absolute;
  inset: auto auto -80px -80px;
  z-index: -1;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(10, 56, 119, 0.13), transparent 70%);
}

.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 20px;
}

.contact-card {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(10, 56, 119, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(30, 42, 62, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 56, 119, 0.24);
  box-shadow: 0 22px 48px rgba(30, 42, 62, 0.12);
}

.contact-card span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: clamp(0.94rem, 1.5vw, 1.08rem);
  overflow-wrap: anywhere;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(10, 56, 119, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 780;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(221, 231, 245, 0.98);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 64px rgba(10, 56, 119, 0.14);
}

.form-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 4px;
}

.form-heading img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.1;
}

.form-heading .section-kicker {
  margin-bottom: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #344052;
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  font-weight: 550;
  outline: none;
  padding: 11px 12px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(10, 56, 119, 0.58);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(32, 199, 216, 0.16);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(32px, 5vw, 48px);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  color: #f5f8ff;
  background:
    radial-gradient(circle at 88% 24%, rgba(32, 199, 216, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(15, 17, 21, 0.94), rgba(10, 56, 119, 0.92)),
    #0f1115;
  box-shadow: 0 28px 80px rgba(10, 56, 119, 0.22);
  overflow: hidden;
}

.cta-section::after {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -150px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 0 0 32px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
}

.cta-section .section-kicker {
  color: #8eb0e8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  gap: 20px;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(16px, -12px);
  }
  66% {
    transform: translate(-8px, 20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(10, 56, 119, 0.24);
  }
  50% {
    box-shadow: 0 16px 48px rgba(32, 199, 216, 0.32);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Animation Classes */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-in-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

.hero-copy {
  animation: fadeInLeft 0.7s ease-out;
}

.phone-shell {
  animation: fadeInRight 0.7s ease-out 0.2s both;
}

.hero-badges span {
  animation: fadeInUp 0.5s ease-out both;
}

.hero-badges span:nth-child(1) {
  animation-delay: 0.3s;
}
.hero-badges span:nth-child(2) {
  animation-delay: 0.35s;
}
.hero-badges span:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-badges span:nth-child(4) {
  animation-delay: 0.45s;
}

.hero-actions a {
  animation: slideInDown 0.6s ease-out both;
}

.hero-actions a:nth-child(1) {
  animation-delay: 0.5s;
}
.hero-actions a:nth-child(2) {
  animation-delay: 0.55s;
}

.hero-shape-one {
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-two {
  animation: floatShape 10s ease-in-out infinite 1s;
}

.primary-action {
  animation: glow 2s ease-in-out infinite;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-animate.in-view {
  animation: fadeInUp 0.7s ease-out forwards;
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-30px);
}

.scroll-animate-left.in-view {
  animation: fadeInLeft 0.7s ease-out forwards;
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(30px);
}

.scroll-animate-right.in-view {
  animation: fadeInRight 0.7s ease-out forwards;
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
}

.scroll-animate-scale.in-view {
  animation: scaleIn 0.7s ease-out forwards;
}

/* Staggered Card Animations */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.in-view {
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1).in-view {
  animation-delay: 0s;
}
.feature-card:nth-child(2).in-view {
  animation-delay: 0.1s;
}
.feature-card:nth-child(3).in-view {
  animation-delay: 0.2s;
}
.feature-card:nth-child(4).in-view {
  animation-delay: 0.1s;
}
.feature-card:nth-child(5).in-view {
  animation-delay: 0.2s;
}
.feature-card:nth-child(6).in-view {
  animation-delay: 0.3s;
}

.ops-grid article {
  opacity: 0;
  transform: translateY(30px);
}

.ops-grid article.in-view {
  animation: fadeInUp 0.6s ease-out forwards;
}

.ops-grid article:nth-child(1).in-view {
  animation-delay: 0s;
}
.ops-grid article:nth-child(2).in-view {
  animation-delay: 0.1s;
}
.ops-grid article:nth-child(3).in-view {
  animation-delay: 0.2s;
}

.workflow-list li {
  opacity: 0;
  transform: translateX(-20px);
}

.workflow-list li.in-view {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.workflow-list li:nth-child(1).in-view {
  animation-delay: 0.1s;
}
.workflow-list li:nth-child(2).in-view {
  animation-delay: 0.2s;
}
.workflow-list li:nth-child(3).in-view {
  animation-delay: 0.3s;
}

.report-grid div {
  opacity: 0;
  transform: scale(0.92);
}

.report-grid div.in-view {
  animation: scaleIn 0.6s ease-out forwards;
}

.report-grid div:nth-child(1).in-view {
  animation-delay: 0s;
}
.report-grid div:nth-child(2).in-view {
  animation-delay: 0.1s;
}
.report-grid div:nth-child(3).in-view {
  animation-delay: 0.2s;
}
.report-grid div:nth-child(4).in-view {
  animation-delay: 0.3s;
}

.visual-section img {
  opacity: 0;
  transform: scale(0.94);
}

.visual-section img.in-view {
  animation: scaleIn 0.8s ease-out forwards;
}

/* Enhanced Button Interactions */
.primary-action,
.secondary-action,
.header-action {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.primary-action::before,
.secondary-action::before,
.header-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.primary-action:hover::before,
.secondary-action:hover::before,
.header-action:hover::before {
  left: 100%;
}

/* Smooth Transitions */
.nav-links a,
.site-footer a {
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.eyebrow,
.section-kicker {
  position: relative;
  display: inline-block;
}

h2 {
  transition: color 0.4s ease;
}

.section.in-view h2 {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro-section,
  .workflow-layout,
  .platform-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-shell {
    min-height: 570px;
  }

  .feature-grid,
  .ops-grid,
  .report-grid,
  .reports-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reports-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-inline: 20px;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 6.4rem);
  }

  .hero-actions,
  .cta-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .phone-shell {
    width: 100%;
    min-height: 548px;
    padding: 18px;
    border-radius: 26px;
  }

  .section-heading {
    display: block;
  }

  .feature-grid,
  .ops-grid,
  .report-grid,
  .contact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    width: min(100% - 32px, 1180px);
    padding: 22px;
    border-radius: 14px;
  }

  .feature-card,
  .ops-grid article {
    min-height: auto;
  }

  .report-grid div {
    min-height: 70px;
  }

  /* Reduce animation delays on mobile */
  .hero-badges span {
    animation-delay: 0.1s !important;
  }

  .hero-actions a {
    animation-delay: 0.2s !important;
  }
}
