:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b667a;
  --subtle: #8792a5;
  --line: #e3e8f0;
  --paper: #f5f7fb;
  --soft: #eef5ff;
  --white: #ffffff;
  --blue: #155eef;
  --blue-dark: #0f3d99;
  --teal: #0e9384;
  --mint: #dff8ef;
  --gold: #f5b544;
  --navy: #10233d;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  --soft-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

* {
  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;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(21, 94, 239, 0.1), transparent 28%),
    linear-gradient(315deg, rgba(14, 147, 132, 0.08), transparent 28%),
    var(--paper);
}

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

.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);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(227, 232, 240, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-badge,
.hero-stats,
.panel-top,
.case-progress div,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark,
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(21, 94, 239, 0.22);
}

.nav {
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 247, 251, 0.78);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  padding: 8px 12px;
  border-radius: 7px;
}

.nav a:hover {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action {
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(46px, 7vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0b1624 0%, #173a67 58%, #255783 100%);
  background-size: 78px 78px, 78px 78px, auto;
  color: var(--white);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.hero-badge {
  width: fit-content;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(14, 147, 132, 0.15);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 850px;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(21, 94, 239, 0.28);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-stats div {
  min-width: 170px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-stats strong {
  font-size: 1rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(227, 232, 240, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.browser-bar span:first-child {
  background: #ef4444;
}

.browser-bar span:nth-child(2) {
  background: #f59e0b;
}

.browser-bar span:nth-child(3) {
  background: #10b981;
}

.dashboard-shell {
  padding: clamp(20px, 3vw, 30px);
}

.panel-top {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-top span,
.metric-grid span,
.case-list span {
  display: block;
  color: var(--subtle);
  font-size: 0.84rem;
}

.panel-top strong {
  display: block;
  font-size: 1.25rem;
}

.panel-top em {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: #067647;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 850;
}

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

.metric-grid div,
.case-progress,
.case-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-grid div {
  padding: 18px;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.75rem;
  line-height: 1;
}

.case-progress {
  margin-top: 14px;
  padding: 16px;
}

.case-progress div {
  justify-content: space-between;
  gap: 12px;
}

.case-progress strong {
  color: var(--blue);
}

.progress-track {
  display: block;
  height: 9px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf5;
}

.progress-track span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.case-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.case-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.case-list strong {
  color: var(--teal);
  font-size: 0.9rem;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-block: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(58px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.showcase-card {
  position: relative;
  min-height: 410px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.showcase-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(21, 94, 239, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(21, 94, 239, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.showcase-card h2,
.showcase-card p,
.showcase-icon,
.otp-preview,
.phone-preview {
  position: relative;
  z-index: 1;
}

.showcase-card h2 {
  max-width: 560px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.showcase-card p {
  max-width: 560px;
  color: var(--muted);
}

.showcase-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 18px 34px rgba(16, 35, 61, 0.2);
}

.auth-card {
  background: #f8fbff;
}

.otp-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.otp-preview span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid #12b886;
  border-radius: 8px;
  background: #f1fbf7;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
}

.mobile-card {
  background:
    linear-gradient(135deg, rgba(16, 35, 61, 0.94), rgba(21, 94, 239, 0.82)),
    var(--navy);
  color: var(--white);
}

.mobile-card p {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
}

.phone-preview {
  width: min(260px, 100%);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-preview div {
  width: 46px;
  height: 5px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-preview strong,
.phone-preview span {
  display: block;
}

.phone-preview span {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
}

.phone-preview button {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  background: #12b886;
  color: var(--white);
  font: inherit;
  font-weight: 850;
}

.trust-band span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.section-heading p,
.platform-copy p,
.contact p,
.card p,
.feature-list p,
.steps p {
  color: var(--muted);
}

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

.card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::after {
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 94, 239, 0.28);
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.11);
}

.card:hover::after {
  opacity: 1;
}

.card-icon {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #eef5ff, #e7fbf5);
  color: var(--blue-dark);
  box-shadow: none;
}

.card a {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--blue);
  font-weight: 850;
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  background: #0f172a;
  color: var(--white);
}

.platform .eyebrow {
  color: #7dd3fc;
}

.platform-copy p,
.platform .feature-list p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(125, 211, 252, 0.14);
  color: #7dd3fc;
  font-weight: 850;
}

.feature-list h3 {
  margin-bottom: 6px;
}

.portfolio {
  background: var(--white);
}

.analytics {
  background: var(--paper);
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.analytics-panel,
.insight-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.analytics-panel {
  padding: clamp(22px, 3vw, 32px);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 260px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(21, 94, 239, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 94, 239, 0.07) 1px, transparent 1px),
    #f8fbff;
  background-size: 40px 40px;
}

.chart-bars span {
  flex: 1;
  min-width: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

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

.analytics-kpis div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.analytics-kpis strong,
.analytics-kpis span {
  display: block;
}

.analytics-kpis strong {
  font-size: 1.4rem;
}

.analytics-kpis span {
  color: var(--muted);
  font-size: 0.86rem;
}

.insight-list {
  display: grid;
  gap: 14px;
}

.insight-list article {
  padding: 22px;
}

.insight-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 850;
}

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

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

.logo-grid span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.04);
}

.workflow {
  background: #eef8f5;
}

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

.steps li {
  padding: 26px;
  border: 1px solid #cce9df;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--mint);
  color: #067647;
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, 0.92), rgba(15, 23, 42, 0.96)),
    #0f172a;
  color: var(--white);
}

.contact .eyebrow {
  color: #7dd3fc;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.contact-phone {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 1;
}

.contact-email {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 850;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #0b1120;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: #7dd3fc;
}

@media (max-width: 1080px) {
  .solution-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero,
  .app-showcase,
  .platform,
  .analytics-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .brand {
    width: 100%;
  }

  .header-action {
    width: 100%;
  }

  .hero,
  .section {
    padding-inline: 18px;
  }

  .hero-panel {
    margin-inline: -2px;
  }

  .metric-grid,
  .analytics-kpis,
  .solution-grid,
  .logo-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .case-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats div,
  .button {
    width: 100%;
  }
}
