html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(64, 187, 255, 0.12) 0, transparent 30%),
    linear-gradient(180deg, #f5f9fc 0%, #edf4f9 100%);
  color: #0f172a;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
}

#root {
  min-height: 100vh;
}

.boot-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.boot-shell__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(164, 181, 200, 0.42);
  background: rgba(249, 252, 255, 0.82);
}

.boot-shell__brand {
  width: 122px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.08));
}

.boot-shell__actions {
  display: flex;
  gap: 10px;
}

.boot-shell__chip,
.boot-shell__button {
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.08);
}

.boot-shell__chip {
  width: 74px;
}

.boot-shell__button {
  width: 92px;
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.74), rgba(21, 92, 214, 0.92));
}

.boot-shell__hero {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 32px;
}

.boot-shell__tag,
.boot-shell__headline,
.boot-shell__subhead,
.boot-shell__cta,
.boot-shell__frame {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.boot-shell__tag {
  width: 220px;
  height: 14px;
  margin-bottom: 24px;
}

.boot-shell__headline {
  width: min(560px, 78%);
  height: 62px;
  margin-bottom: 16px;
}

.boot-shell__subhead {
  width: min(680px, 92%);
  height: 22px;
  margin-bottom: 24px;
}

.boot-shell__cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
}

.boot-shell__cta {
  width: 190px;
  height: 48px;
}

.boot-shell__cta--secondary {
  width: 170px;
  background: rgba(15, 23, 42, 0.06);
}

.boot-shell__frame {
  width: 100%;
  height: min(640px, 52vw);
  min-height: 320px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.52)),
    rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(164, 181, 200, 0.42);
  box-shadow: 0 28px 80px rgba(76, 95, 128, 0.12);
}

@media (max-width: 720px) {
  .boot-shell__nav {
    padding: 14px 18px;
  }

  .boot-shell__actions {
    display: none;
  }

  .boot-shell__hero {
    width: calc(100% - 32px);
    padding-top: 48px;
  }

  .boot-shell__headline {
    width: 100%;
    height: 54px;
  }

  .boot-shell__subhead {
    width: 100%;
    height: 42px;
    border-radius: 16px;
  }

  .boot-shell__cta-row {
    flex-wrap: wrap;
  }

  .boot-shell__cta,
  .boot-shell__cta--secondary {
    width: min(220px, 100%);
  }
}
