:root {
  --blue-980: #020a12;
  --blue-950: #061a2e;
  --blue-900: #0b2f4f;
  --blue-800: #0b4167;
  --blue-650: #0b6e99;
  --blue-500: #128bb5;
  --cyan-400: #29b6d8;
  --cyan-300: #7de6f4;
  --silver-25: #fbfcff;
  --silver-50: #f5f7fa;
  --silver-100: #e8edf4;
  --silver-250: #d7dde8;
  --silver-500: #5f6b7a;
  --ink: #111827;
  --white: #ffffff;
  --radius: 8px;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(11, 47, 79, 0.12);
  --shadow-soft: 0 18px 60px rgba(6, 26, 46, 0.12);
  --shadow-strong: 0 30px 95px rgba(2, 10, 18, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 72% -18%, rgba(41, 182, 216, 0.15), transparent 60%),
    linear-gradient(180deg, #eef3f8 0%, var(--silver-50) 42%, #edf2f8 100%);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 12px clamp(18px, 5vw, 72px);
  overflow: visible;
  background: rgba(245, 247, 250, 0.91);
  border-bottom: 1px solid rgba(11, 47, 79, 0.10);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 42px rgba(6, 26, 46, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 6px 0;
  overflow: visible;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(42px, 5vw, 72px);
  max-width: 260px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #243044;
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-900);
  background: rgba(41, 182, 216, 0.10);
  outline: none;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 47, 79, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(8, 27, 69, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(30px, 4vw, 52px);
  min-height: calc(90vh - 88px);
  padding: clamp(54px, 6vw, 86px) clamp(18px, 5vw, 72px) clamp(50px, 5vw, 70px);
  overflow: visible;
  color: var(--white);
  background:
    radial-gradient(780px 420px at 75% 22%, rgba(41, 182, 216, 0.24), transparent 65%),
    radial-gradient(760px 360px at 8% 80%, rgba(11, 110, 153, 0.30), transparent 68%),
    linear-gradient(135deg, #020a12 0%, var(--blue-950) 42%, var(--blue-900) 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px clamp(18px, 5vw, 72px) auto auto;
  width: min(540px, 42vw);
  height: 74%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(41, 182, 216, 0.08), transparent);
  transform: skewX(-8deg);
  pointer-events: none;
  z-index: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.040) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.040) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.55));
}

.beam {
  position: absolute;
  border: 1px solid rgba(41, 182, 216, 0.24);
  transform: rotate(-13deg);
}

.beam-one {
  right: 26px;
  top: 118px;
  width: 360px;
  height: 210px;
}

.beam-two {
  right: 20vw;
  bottom: 72px;
  width: 260px;
  height: 130px;
  border-color: rgba(255, 255, 255, 0.13);
}

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

.hero-content {
  align-self: center;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.72rem, 4.75vw, 4.65rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #0b6e99 0%, #29b6d8 100%);
  box-shadow: 0 14px 34px rgba(41, 182, 216, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(41, 182, 216, 0.32);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(41, 182, 216, 0.54);
  background: rgba(41, 182, 216, 0.13);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(41, 182, 216, 0.20);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 410px;
  padding: 26px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.065)),
    rgba(6, 26, 46, 0.66);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.panel-logo {
  display: flex;
  align-items: center;
  padding: 6px 2px 24px;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-logo img {
  display: block;
  width: auto;
  height: clamp(54px, 6vw, 78px);
  max-width: 320px;
  object-fit: contain;
  opacity: 0.99;
}

.panel-status {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(41, 182, 216, 0.22);
  border-radius: 10px;
  background: rgba(2, 10, 18, 0.50);
}

.panel-status span {
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-status strong {
  color: var(--white);
  font-family: "Sora", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
}

.control-flow {
  display: grid;
  gap: 12px;
}

.control-flow div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(41, 182, 216, 0.08), transparent 45%),
    rgba(3, 14, 28, 0.58);
}

.control-flow div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-500));
}

.control-flow span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.control-flow strong {
  color: #ecfbff;
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: right;
}

.section {
  padding: clamp(70px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.section-heading.narrow {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.audience-content h2,
.final-cta h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #536174;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.pain-grid article,
.solution-grid article,
.trust-grid article,
.process-steps article {
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.pain-grid article {
  min-height: 238px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.92));
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 10px;
  color: var(--blue-650);
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(41, 182, 216, 0.18), 0 12px 26px rgba(11, 110, 153, 0.10);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-grid h3,
.solution-grid h3,
.trust-grid h3,
.comparison h3,
.process-steps h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.26;
}

.pain-grid p,
.solution-grid p,
.trust-grid p,
.process-steps p {
  margin: 12px 0 0;
  color: #59677a;
}

.transformation-section {
  color: var(--white);
  background:
    radial-gradient(780px 360px at 12% 18%, rgba(41, 182, 216, 0.18), transparent 62%),
    linear-gradient(135deg, #061a2e 0%, #0b2f4f 100%);
}

.transformation-section .section-heading h2 {
  color: var(--white);
}

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

.comparison article {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 14px;
}

.before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.after {
  border: 1px solid rgba(41, 182, 216, 0.36);
  background:
    linear-gradient(180deg, rgba(55, 214, 255, 0.15), rgba(255, 255, 255, 0.07));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.comparison .label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.25vw, 2rem);
}

.comparison ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.comparison li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 18px rgba(55, 214, 255, 0.75);
}

.solutions-section {
  background:
    radial-gradient(900px 380px at 86% 8%, rgba(41, 182, 216, 0.10), transparent 62%),
    linear-gradient(180deg, #ffffff, #f5f7fa);
}

.solution-grid article {
  min-height: 198px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #f5f7fa);
}

.solution-grid article::before,
.trust-grid article::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-650), var(--cyan-400));
}

.process-section {
  background:
    radial-gradient(800px 360px at 88% 14%, rgba(41, 182, 216, 0.11), transparent 62%),
    var(--silver-100);
}

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

.process-steps article {
  position: relative;
  min-height: 226px;
  padding: 24px;
  overflow: hidden;
}

.process-steps article::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(17, 120, 255, 0.12);
  border-radius: 50%;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #0b6e99, #29b6d8);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 71, 217, 0.25);
}

.audience-section {
  background:
    radial-gradient(780px 360px at 15% 20%, rgba(41, 182, 216, 0.18), transparent 62%),
    linear-gradient(135deg, var(--blue-950), #020a12);
}

.audience-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.audience-content h2 {
  color: var(--white);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.trust-section {
  background: var(--silver-50);
}

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

.trust-grid article {
  min-height: 242px;
  padding: 24px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: clamp(24px, 5vw, 72px) auto;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(41, 182, 216, 0.20);
  border-radius: 16px;
  color: var(--white);
  background:
    radial-gradient(720px 320px at 96% 0%, rgba(41, 182, 216, 0.24), transparent 62%),
    linear-gradient(135deg, var(--blue-900), var(--blue-980));
  box-shadow: var(--shadow-strong);
}

.final-cta h2 {
  max-width: 900px;
  color: var(--white);
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.email-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--white);
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  overflow: visible;
  color: rgba(255, 255, 255, 0.78);
  background: #020713;
}

.site-footer img {
  display: block;
  width: auto;
  height: clamp(42px, 5vw, 60px);
  max-width: 260px;
  object-fit: contain;
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-weight: 700;
}

.site-footer a {
  color: var(--cyan-300);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .brand img {
    width: auto;
    height: clamp(42px, 5vw, 64px);
    max-width: 240px;
  }

  .site-nav a {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1100px) {
  .hero,
  .audience-content,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 590px;
    justify-self: start;
  }

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

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

@media (max-width: 860px) {
  .site-header {
    min-height: 88px;
    padding: 10px 18px;
    overflow: visible;
  }

  .brand img {
    width: auto;
    height: 44px;
    max-width: 170px;
    object-fit: contain;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(8, 42, 114, 0.12);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(8, 27, 69, 0.16);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero::before,
  .beam {
    display: none;
  }

  h1 {
    font-size: clamp(1.98rem, 9.5vw, 2.72rem);
    line-height: 1.04;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 24px;
  }

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

  .button {
    min-height: 56px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 0.96rem;
  }

  .hero-proof {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading.narrow {
    text-align: left;
  }

  .pain-grid,
  .solution-grid,
  .comparison,
  .process-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article,
  .solution-grid article,
  .trust-grid article,
  .process-steps article {
    min-height: auto;
  }

  .audience-content {
    gap: 24px;
  }

  .final-cta {
    width: calc(100% - 36px);
    padding: 30px 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    overflow: visible;
  }

  .site-footer img {
    width: auto;
    height: 44px;
    max-width: 170px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand img {
    width: auto;
    height: 44px;
    max-width: 170px;
    object-fit: contain;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading h2,
  .audience-content h2,
  .final-cta h2 {
    font-size: clamp(1.74rem, 8.2vw, 2.2rem);
  }
}
