:root {
  --ink: #111827;
  --muted: #66758d;
  --line: #dce4ee;
  --soft-line: rgba(45, 70, 105, 0.09);
  --paper: #fbfcfd;
  --panel: #f3f7fb;
  --blue: #226ba5;
  --blue-dark: #164b78;
  --blue-soft: #e8f2fb;
  --green: #239b68;
  --green-soft: #dcf5e8;
  --amber: #e79427;
  --amber-soft: #fff0d0;
  --peach: #ffe4d7;
  --navy: #0e1f31;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 30px 80px rgba(39, 70, 105, 0.16), 0 8px 24px rgba(39, 70, 105, 0.08);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
.site-shell {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: relative;
  z-index: 20;
  width: min(1240px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand > span:last-child > span {
  color: var(--blue);
}
.brand-mark {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block;
  transform: rotate(30deg) skewY(-8deg);
  border-radius: 5px;
  background: linear-gradient(135deg, #164b78, #2f87c7);
  box-shadow: inset -5px -5px 10px rgba(10, 43, 70, 0.25);
}
.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
}
.brand-mark::before {
  width: 2px;
  height: 100%;
  left: 48%;
  top: 0;
}
.brand-mark::after {
  height: 2px;
  width: 100%;
  top: 48%;
  left: 0;
}
.brand-mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 8px;
  left: 8px;
}
.brand-mark.mini {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.brand-mark.mini i {
  width: 5px;
  height: 5px;
  top: 6px;
  left: 6px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: 110px;
}
.nav-links a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  color: #4b5568;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links sup {
  margin-left: 3px;
  color: #9aa7b8;
  font-size: 8px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--blue-dark);
  border-radius: 6px;
  padding: 0 22px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 5px 5px 0 rgba(22, 75, 120, 0.13);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(22, 75, 120, 0.16);
  background: var(--blue);
}
.button-small {
  min-height: 44px;
  padding-left: 7px;
  gap: 13px;
}
.button-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 4px;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 930px;
  padding: 112px 24px 56px;
  background:
    radial-gradient(circle at 50% 2%, rgba(255, 211, 192, 0.9), transparent 30%),
    linear-gradient(180deg, #fdf8f5 0%, #fbfcfd 39%, #fbfcfd 100%);
}
.grid-lines,
.cta-lines {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(58, 86, 118, 0.13) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(58, 86, 118, 0.08) 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.grid-lines::after {
  content: '';
  position: absolute;
  inset: 50px 10%;
  background: linear-gradient(
    120deg,
    transparent 49.8%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 50.2%
  );
  background-size: 245px 245px;
}
.hero-glow {
  position: absolute;
  width: 540px;
  height: 280px;
  left: calc(50% - 270px);
  top: 80px;
  background: rgba(255, 235, 224, 0.7);
  filter: blur(60px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  width: fit-content;
  margin: 0 auto 26px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 107, 165, 0.18);
  border-radius: 100px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.65);
  font:
    500 10px 'DM Mono',
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(35, 155, 104, 0.11);
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 26px;
  font-size: clamp(55px, 6.3vw, 90px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 700;
}
h1 em,
h2 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}
h1 em::after {
  content: '';
  position: absolute;
  height: 8px;
  left: 2%;
  right: 0;
  bottom: -2px;
  border-radius: 50%;
  border-top: 2px solid rgba(34, 107, 165, 0.38);
  transform: rotate(-1deg);
}
.hero-lede {
  max-width: 630px;
  margin: 0 auto 34px;
  color: #55647a;
  font-size: 17px;
  line-height: 1.65;
}
.hero-form {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(38, 65, 93, 0.08);
}
.hero-form .button {
  border: 0;
  box-shadow: none;
}
.form-note {
  margin: 14px 0 0;
  color: #8793a3;
  font-size: 10px;
}

.hero-product {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  margin: 70px auto 0;
}
.app-window {
  overflow: hidden;
  border: 1px solid #d7e1ec;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: var(--shadow);
  transform: perspective(1800px) rotateX(1.2deg);
}
.app-topbar {
  height: 61px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 23px;
  border-bottom: 1px solid #e0e7ef;
  background: rgba(255, 255, 255, 0.92);
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  font-size: 12px;
  font-weight: 800;
}
.app-search {
  width: 320px;
  margin-left: auto;
  padding: 9px 13px;
  border: 1px solid #d8e1eb;
  border-radius: 7px;
  color: #93a0b0;
  background: #fbfcfe;
  font-size: 9px;
}
.avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-dark);
  font-size: 8px;
  font-weight: 700;
}
.app-body {
  min-height: 435px;
  display: flex;
}
.app-sidebar {
  width: 190px;
  padding: 22px 14px;
  border-right: 1px solid #e0e7ef;
  background: #fff;
}
.sidebar-label {
  display: block;
  margin: 0 10px 8px;
  color: #98a3b2;
  font:
    500 7px 'DM Mono',
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sidebar-label.second {
  margin-top: 24px;
}
.app-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #67758a;
  font-size: 9px;
  font-weight: 600;
}
.app-sidebar a.active {
  color: var(--blue-dark);
  background: var(--blue-soft);
}
.app-sidebar a b {
  width: 13px;
  color: var(--blue);
  font-size: 13px;
}
.env-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.env-dot.staging {
  background: var(--amber);
}
.aws-connected {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid #e3e9f0;
  border-radius: 8px;
}
.aws-connected > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.aws-connected span {
  display: flex;
  flex-direction: column;
}
.aws-connected small {
  color: #8c98a7;
  font-size: 7px;
}
.aws-connected strong {
  margin-top: 2px;
  font-size: 8px;
}
.services-view {
  flex: 1;
  padding: 27px;
  background: #f7f9fc;
}
.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}
.services-header small {
  color: #8b99ab;
  font-size: 8px;
}
.services-header h3 {
  margin: 2px 0 0;
  font-size: 18px;
}
.services-header button {
  padding: 9px 13px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--blue-dark);
  font-size: 8px;
  font-weight: 700;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.service-card {
  padding: 15px;
  border: 1px solid #dce4ed;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 3px 9px rgba(40, 68, 98, 0.03);
}
.featured-card {
  border-color: rgba(34, 107, 165, 0.38);
  box-shadow: 0 0 0 2px rgba(34, 107, 165, 0.05);
}
.card-heading {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
}
.card-heading > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.card-heading small {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.status-dot.orange {
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}
.service-card > p {
  margin: 2px 0 12px;
  color: #8190a3;
  font-size: 7px;
}
.deploy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 8px 9px;
  border-radius: 7px;
  background: #f0f4f8;
  font-size: 8px;
}
.deploy-row strong {
  font-family: 'DM Mono', monospace;
}
.active-pill,
.deploying-pill {
  padding: 4px 7px;
  border: 1px solid #bce6ce;
  border-radius: 20px;
  color: #18794e;
  background: var(--green-soft);
  font:
    500 7px 'DM Mono',
    monospace;
}
.deploying-pill {
  border-color: #f0d292;
  color: #9d6313;
  background: var(--amber-soft);
}
.progress {
  position: relative;
  height: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 5px;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe7ee;
}
.progress i {
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.progress i:nth-child(2) {
  background: var(--amber);
}
.progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 69%;
  background: rgba(34, 107, 165, 0.1);
}
.progress.short span {
  width: 38%;
}
.card-actions {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}
.card-actions button {
  flex: 1;
  padding: 6px;
  border: 0;
  border-radius: 20px;
  color: #56657a;
  background: #edf2f7;
  font-size: 7px;
  font-weight: 700;
}
.card-actions .logs {
  color: #24613f;
  background: #e8f1e7;
}
.card-actions .rollback {
  color: #885c18;
  background: var(--amber-soft);
}
.rollout-line {
  height: 16px;
  padding: 4px;
  border-radius: 20px;
  background: #e4eaf0;
}
.rollout-line span {
  display: block;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--amber), #ffc764);
}
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #dce4ed;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(37, 63, 91, 0.18);
}
.float-card-success {
  top: -30px;
  right: -48px;
}
.float-card-rollback {
  left: -46px;
  bottom: 38px;
}
.float-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #18794e;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
}
.float-icon.amber {
  color: #9d6313;
  background: var(--amber-soft);
}
.float-card > span:last-child {
  display: flex;
  flex-direction: column;
}
.float-card strong {
  font-size: 9px;
}
.float-card small {
  margin-top: 2px;
  color: #8491a1;
  font-size: 7px;
}
.trust-row {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  margin: 56px auto 0;
  text-align: center;
}
.trust-row > span {
  color: #99a4b1;
  font:
    500 8px 'DM Mono',
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  margin-top: 22px;
  color: #657386;
}
.trust-items strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.trust-items i {
  font-style: normal;
  color: var(--blue);
}
.aws-symbol {
  padding: 2px 3px;
  border-radius: 3px;
  color: #fff !important;
  background: #f19a28;
  font: 600 8px sans-serif;
}
.slack-symbol {
  color: #7a4cac !important;
  font-size: 18px;
}

.statement,
.pricing {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0;
  text-align: center;
}
.section-number {
  margin-bottom: 25px;
  color: var(--blue);
  font:
    500 9px 'DM Mono',
    monospace;
  letter-spacing: 0.18em;
}
.statement h2,
.workflow h2,
.pricing h2,
.final-cta h2,
.security h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
.section-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.feature-showcase {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: left;
  background: #f6f9fc;
  box-shadow: 0 25px 70px rgba(38, 65, 93, 0.08);
}
.feature-copy {
  padding: 66px 58px;
  background: #fff;
}
.step-count {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--blue);
  font:
    500 10px 'DM Mono',
    monospace;
}
.feature-copy h3 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.feature-copy > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
.feature-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #3c4b60;
  font-size: 11px;
  font-weight: 600;
}
.feature-copy li span {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  margin-right: 9px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
}
.rollout-demo {
  margin: 44px;
  padding: 27px;
  border: 1px solid #d8e1eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(36, 64, 95, 0.08);
}
.demo-topline {
  display: flex;
  justify-content: space-between;
  color: #8090a2;
  font:
    500 8px 'DM Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}
.live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.rollout-demo h4 {
  margin: 13px 0 24px;
  font-size: 19px;
}
.version-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.version-flow > div {
  padding: 13px;
  border: 1px solid #e0e7ef;
  border-radius: 8px;
  background: #f9fbfc;
}
.version-flow small {
  display: block;
  margin-bottom: 4px;
  color: #9aa6b4;
  font:
    500 7px 'DM Mono',
    monospace;
}
.version-flow strong {
  font:
    500 10px 'DM Mono',
    monospace;
}
.version-flow > span {
  color: var(--blue);
}
.deployment-status {
  margin-top: 20px;
  padding: 17px;
  border-radius: 9px;
  background: #f0f5fa;
}
.status-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.status-head strong {
  color: var(--blue);
}
.big-progress {
  height: 7px;
  margin: 10px 0 11px;
  overflow: hidden;
  border-radius: 20px;
  background: #dbe4ec;
}
.big-progress span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue-dark), #50a5dc);
}
.tasks {
  display: flex;
  gap: 14px;
  color: #7e8b9d;
  font-size: 7px;
}
.tasks span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tasks i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b4c0cc;
}
.tasks i.green {
  background: var(--green);
}
.tasks i.orange {
  background: var(--amber);
}
.event-list {
  margin-top: 19px;
}
.event-list > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding-left: 3px;
}
.event-list > div:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 19px;
  left: 12px;
  bottom: -3px;
  background: #dce4ec;
}
.event-list i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #cad5e0;
  border-radius: 50%;
  background: #fff;
}
.event-list i.check {
  border-color: #bde3ce;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
  font-style: normal;
}
.event-list .current i {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 5px #fff;
  background: var(--blue);
}
.event-list .pending {
  opacity: 0.45;
}
.event-list > div > span {
  display: flex;
  flex-direction: column;
}
.event-list strong {
  font-size: 9px;
}
.event-list small {
  margin-top: 3px;
  color: #8a97a7;
  font-size: 7px;
}

.workflow {
  padding: 140px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: #fff;
}
.workflow-heading {
  text-align: center;
}
.workflow .section-number {
  color: #78b8e5;
}
.workflow h2 em {
  color: #82c4ef;
}
.workflow-heading > p:last-child {
  color: #94a8bb;
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 75px;
}
.steps article {
  position: relative;
  min-height: 500px;
  padding: 20px 28px 34px;
  border: 1px solid rgba(160, 190, 215, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}
.step-number {
  display: block;
  color: #78b8e5;
  font:
    500 9px 'DM Mono',
    monospace;
}
.step-visual {
  height: 260px;
  margin: 36px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}
.steps h3 {
  margin-bottom: 11px;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.steps article > p {
  color: #90a4b8;
  font-size: 11px;
  line-height: 1.65;
}
.connect-visual {
  gap: 8px;
}
.aws-tile,
.rollout-tile {
  width: 76px;
  height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(200, 220, 235, 0.18);
  border-radius: 10px;
  background: #142b40;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}
.aws-tile b {
  color: #ffae3e;
  font-size: 16px;
}
.aws-tile small,
.rollout-tile small {
  color: #a8b8c8;
  font-size: 8px;
}
.connection-line {
  width: 82px;
  height: 1px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(104, 177, 228, 0.5);
}
.connection-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #68b1e4;
  box-shadow: 0 0 9px #68b1e4;
}
.detect-visual {
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.detect-visual span {
  width: 65%;
  padding: 10px 13px;
  border: 1px solid rgba(152, 185, 210, 0.15);
  border-radius: 6px;
  color: #d2deea;
  background: rgba(21, 49, 73, 0.8);
  font:
    500 8px 'DM Mono',
    monospace;
}
.detect-visual small {
  margin-top: 8px;
  color: #6facd5;
  font-size: 7px;
}
.scan-line {
  position: absolute;
  width: 1px;
  height: 75%;
  top: 12%;
  left: 23%;
  background: linear-gradient(transparent, #5fb4e7, transparent);
  box-shadow: 0 0 15px #5fb4e7;
}
.ship-visual {
  flex-direction: column;
}
.ship-ring {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(49, 190, 130, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(49, 190, 130, 0.04),
    0 0 0 28px rgba(49, 190, 130, 0.025);
}
.ship-ring span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #baf0d8;
  background: rgba(38, 164, 107, 0.24);
}
.ship-visual strong {
  font-size: 11px;
}
.ship-visual small {
  margin-top: 5px;
  color: #7890a5;
  font-size: 7px;
}

.security {
  padding: 110px 24px;
  background: #edf4f8;
}
.security-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(130deg, #164b78, #10334f);
  box-shadow: 0 30px 80px rgba(23, 65, 98, 0.18);
}
.security-copy {
  padding: 78px 68px;
  background: radial-gradient(circle at 20% 20%, rgba(72, 153, 207, 0.22), transparent 48%);
}
.section-number.light {
  color: #8cc7ee;
}
.security h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}
.security h2 em {
  color: #93cff5;
}
.security-copy > p:not(.section-number) {
  max-width: 470px;
  color: #abc1d3;
  font-size: 12px;
  line-height: 1.75;
}
.inline-link {
  display: inline-flex;
  gap: 35px;
  margin-top: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.security-list {
  align-self: center;
  padding: 45px 55px;
}
.security-list > div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(194, 218, 235, 0.16);
}
.security-list > div > span {
  grid-row: 1 / 3;
  color: #79b7df;
  font:
    500 8px 'DM Mono',
    monospace;
}
.security-list strong {
  font-size: 12px;
}
.security-list small {
  grid-column: 2;
  margin-top: 4px;
  color: #89a4b9;
  font-size: 8px;
}
.security-list i {
  grid-column: 3;
  grid-row: 1 / 3;
  color: #87bddf;
  font-style: normal;
}

.pricing {
  padding-bottom: 160px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 70px;
  text-align: left;
}
.price-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.price-card.popular {
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(30, 92, 140, 0.13);
}
.popular-label {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 6px 10px;
  border-radius: 20px;
  color: #fff;
  background: var(--blue);
  font:
    500 7px 'DM Mono',
    monospace;
  letter-spacing: 0.08em;
}
.plan-tag {
  color: var(--blue);
  font:
    500 8px 'DM Mono',
    monospace;
  letter-spacing: 0.13em;
}
.price {
  min-height: 70px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 22px;
}
.price strong {
  font-size: 39px;
  letter-spacing: -0.05em;
}
.price small {
  color: #8794a4;
  font-size: 10px;
}
.price-card > p {
  min-height: 48px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.price-card .button {
  width: 100%;
  margin: 14px 0 30px;
  justify-content: space-between;
  box-shadow: none;
}
.button-outline {
  color: var(--blue-dark);
  background: #fff;
}
.button-outline:hover {
  color: #fff;
}
.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 25px 0 0;
  border-top: 1px solid #e6ebf1;
  list-style: none;
  color: #526176;
  font-size: 10px;
}

.final-cta {
  position: relative;
  padding: 125px 24px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #ffe0d2, transparent 48%), #fdf8f5;
}
.cta-lines {
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.cta-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
}
.cta-logo i {
  width: 13px;
  height: 13px;
  top: 14px;
  left: 14px;
}
.final-cta h2 {
  position: relative;
  z-index: 2;
}
.final-cta > p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 14px;
}
.button-large {
  position: relative;
  z-index: 2;
  min-height: 57px;
  margin-top: 19px;
  padding: 0 28px;
}
.final-cta > small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 17px;
  color: #9099a5;
  font-size: 8px;
}

footer {
  padding: 75px max(24px, calc((100vw - 1180px) / 2)) 25px;
  color: #dce6ee;
  background: #0b1927;
}
.footer-brand p {
  margin: 15px 0 0;
  color: #7e94a8;
  font-size: 10px;
}
.brand.inverted {
  color: #fff;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  justify-content: end;
  gap: 35px;
  margin-top: -37px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links strong {
  margin-bottom: 7px;
  color: #6e879c;
  font:
    500 8px 'DM Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.footer-links a {
  width: fit-content;
  color: #c2ced9;
  font-size: 9px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 205, 224, 0.12);
  color: #667f94;
  font-size: 8px;
}
.footer-bottom span:nth-child(2) {
  color: #8298a9;
}
.footer-bottom i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 90px;
  }
  .hero-product {
    width: min(760px, calc(100% - 10px));
  }
  .app-sidebar {
    display: none;
  }
  .float-card-success {
    right: -16px;
  }
  .float-card-rollback {
    left: -16px;
  }
  .feature-showcase {
    grid-template-columns: 1fr;
  }
  .feature-copy {
    padding: 50px;
  }
  .rollout-demo {
    margin: 40px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    min-height: 440px;
  }
  .security-card {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    margin-top: 55px;
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .topbar {
    width: calc(100% - 30px);
    height: 70px;
  }
  .nav-actions .text-link {
    display: none;
  }
  .button-small {
    min-height: 40px;
    padding-right: 12px;
  }
  .button-small .button-icon {
    width: 30px;
    height: 30px;
  }
  h1 {
    font-size: 50px;
  }
  .hero {
    padding: 72px 15px 45px;
  }
  .hero-lede {
    font-size: 14px;
  }
  .hero-form {
    flex-direction: column;
    padding: 8px;
  }
  .hero-form .button {
    width: 100%;
  }
  .hero-product {
    margin-top: 52px;
  }
  .app-window {
    border-radius: 12px;
  }
  .app-topbar {
    height: 50px;
    padding: 0 13px;
  }
  .mini-brand {
    width: auto;
  }
  .app-search {
    display: none;
  }
  .avatar {
    margin-left: auto;
  }
  .app-body {
    min-height: 530px;
  }
  .services-view {
    padding: 17px 13px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(n + 4) {
    display: none;
  }
  .float-card {
    display: none;
  }
  .trust-items {
    flex-wrap: wrap;
    gap: 22px 32px;
  }
  .statement,
  .pricing {
    width: calc(100% - 30px);
    padding: 105px 0;
  }
  .statement h2,
  .workflow h2,
  .pricing h2,
  .final-cta h2,
  .security h2 {
    font-size: 39px;
  }
  .feature-showcase {
    margin-top: 55px;
  }
  .feature-copy {
    padding: 36px 26px;
  }
  .step-count {
    margin-bottom: 30px;
  }
  .feature-copy h3 {
    font-size: 28px;
  }
  .rollout-demo {
    margin: 16px;
    padding: 17px;
  }
  .tasks {
    flex-wrap: wrap;
  }
  .workflow {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .steps {
    margin-top: 50px;
  }
  .security {
    padding: 65px 15px;
  }
  .security-copy {
    padding: 48px 30px;
  }
  .security-list {
    padding: 20px 30px 45px;
  }
  .security-list > div {
    grid-template-columns: 30px 1fr;
  }
  .security-list i {
    display: none;
  }
  .price-card {
    padding: 30px 25px;
  }
  .final-cta {
    padding: 100px 20px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: reveal 0.7s ease both;
  }
  .app-window {
    animation: rise 0.8s 0.15s ease both;
  }
  .float-card-success {
    animation: float 4s ease-in-out infinite;
  }
  .float-card-rollback {
    animation: float 4s 0.8s ease-in-out infinite;
  }
  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: perspective(1800px) rotateX(3deg) translateY(28px);
    }
    to {
      opacity: 1;
      transform: perspective(1800px) rotateX(1.2deg) translateY(0);
    }
  }
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-7px);
    }
  }
}
